Searched refs:set1 (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_bitset.h | 168 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-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_auto_possess.c | 549 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local 745 set1 = (uint8_t *)(base_end - base_list[2]); in compare_opcodes() 750 set1 = (uint8_t *)(code - list[2]); in compare_opcodes() 806 set_end = set1 + 32; in compare_opcodes() 811 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes() 813 while (set1 < set_end); in compare_opcodes() 819 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes() 821 while (set1 < set_end); in compare_opcodes()
|
/PHP-8.3/ext/opcache/jit/ |
H A D | zend_jit_internal.h | 60 #define ZEND_REGSET_UNION(set1, set2) \ argument 61 ((set1) | (set2)) 63 #define ZEND_REGSET_INTERSECTION(set1, set2) \ argument 64 ((set1) & (set2)) 66 #define ZEND_REGSET_DIFFERENCE(set1, set2) \ argument 67 ((set1) & ~(set2))
|
Completed in 18 milliseconds