Searched refs:set1 (Results 1 – 3 of 3) sorted by relevance
/PHP-8.1/Zend/ |
H A D | zend_bitset.h | 161 static inline bool zend_bitset_equal(zend_bitset set1, zend_bitset set2, uint32_t len) argument 163 return memcmp(set1, set2, len * ZEND_BITSET_ELM_SIZE) == 0; 166 static inline void zend_bitset_copy(zend_bitset set1, zend_bitset set2, uint32_t len) argument 168 memcpy(set1, set2, len * ZEND_BITSET_ELM_SIZE); 176 set1[i] &= set2[i]; 180 static inline void zend_bitset_union(zend_bitset set1, zend_bitset set2, uint32_t len) argument 185 set1[i] |= set2[i]; 194 set1[i] = set1[i] & ~set2[i]; 203 set1[i] = set2[i] | (set3[i] & set4[i]); 212 set1[i] = set2[i] | (set3[i] & ~set4[i]); [all …]
|
/PHP-8.1/ext/pcre/pcre2lib/ |
H A D | pcre2_auto_possess.c | 532 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local 728 set1 = (uint8_t *)(base_end - base_list[2]); in compare_opcodes() 733 set1 = (uint8_t *)(code - list[2]); in compare_opcodes() 789 set_end = set1 + 32; in compare_opcodes() 794 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes() 796 while (set1 < set_end); in compare_opcodes() 802 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes() 804 while (set1 < set_end); in compare_opcodes()
|
/PHP-8.1/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 14 milliseconds