Home
last modified time | relevance | path

Searched refs:set1 (Results 1 – 3 of 3) sorted by relevance

/php-src/Zend/
H A Dzend_bitset.h168 static inline bool zend_bitset_equal(zend_bitset set1, zend_bitset set2, uint32_t len) argument
170 return memcmp(set1, set2, len * ZEND_BITSET_ELM_SIZE) == 0;
173 static inline void zend_bitset_copy(zend_bitset set1, zend_bitset set2, uint32_t len) argument
175 memcpy(set1, set2, len * ZEND_BITSET_ELM_SIZE);
183 set1[i] &= set2[i];
187 static inline void zend_bitset_union(zend_bitset set1, zend_bitset set2, uint32_t len) argument
192 set1[i] |= set2[i];
201 set1[i] = set1[i] & ~set2[i];
210 set1[i] = set2[i] | (set3[i] & set4[i]);
219 set1[i] = set2[i] | (set3[i] & ~set4[i]);
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_private.h377 set1[i] &= set2[i]; in ir_bitset_intersection()
386 set1[i] |= set2[i]; in ir_bitset_union()
395 set1[i] = set1[i] & ~set2[i]; in ir_bitset_difference()
404 if (set1[i] & ~set2[i]) { in ir_bitset_is_subset()
468 ir_bitset _set1 = (set1); \
1276 #define IR_REGSET_UNION(set1, set2) \ argument
1277 ((set1) | (set2))
1279 #define IR_REGSET_INTERSECTION(set1, set2) \ argument
1280 ((set1) & (set2))
1282 #define IR_REGSET_DIFFERENCE(set1, set2) \ argument
[all …]
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_auto_possess.c549 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local
751 set1 = (uint8_t *)(base_end - base_list[2]); in compare_opcodes()
756 set1 = (uint8_t *)(code - list[2]); in compare_opcodes()
812 set_end = set1 + 32; in compare_opcodes()
817 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes()
819 while (set1 < set_end); in compare_opcodes()
825 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes()
827 while (set1 < set_end); in compare_opcodes()

Completed in 17 milliseconds