Home
last modified time | relevance | path

Searched refs:IR_BITSET_BITS (Results 1 – 2 of 2) sorted by relevance

/php-src/ext/opcache/jit/ir/
H A Dir_private.h299 # define IR_BITSET_BITS 32 macro
304 # define IR_BITSET_BITS 64 macro
318 return (n + (IR_BITSET_BITS - 1)) / IR_BITSET_BITS; in ir_bitset_len()
328 set[n / IR_BITSET_BITS] |= IR_BITSET_ONE << (n % IR_BITSET_BITS); in ir_bitset_incl()
333 set[n / IR_BITSET_BITS] &= ~(IR_BITSET_ONE << (n % IR_BITSET_BITS)); in ir_bitset_excl()
338 return (set[(n / IR_BITSET_BITS)] & (IR_BITSET_ONE << (n % IR_BITSET_BITS))) != 0; in ir_bitset_in()
343 memset(set, 0, len * (IR_BITSET_BITS / 8)); in ir_bitset_clear()
348 memset(set, 0xff, len * (IR_BITSET_BITS / 8)); in ir_bitset_fill()
369 memcpy(set1, set2, len * (IR_BITSET_BITS / 8)); in ir_bitset_copy()
430 uint32_t j = IR_BITSET_BITS * i - 1; in ir_bitset_last()
[all …]
H A Dir_cfg.c73 ir_bitset bb_starts = ir_mem_calloc(len * 2, IR_BITSET_BITS / 8); in ir_build_cfg()

Completed in 15 milliseconds