Home
last modified time | relevance | path

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

/PHP-7.4/Zend/
H A Dzend_bitset.h121 static inline zend_bool zend_bitset_equal(zend_bitset set1, zend_bitset set2, uint32_t len) argument
123 return memcmp(set1, set2, len * ZEND_BITSET_ELM_SIZE) == 0;
126 static inline void zend_bitset_copy(zend_bitset set1, zend_bitset set2, uint32_t len) argument
128 memcpy(set1, set2, len * ZEND_BITSET_ELM_SIZE);
136 set1[i] &= set2[i];
140 static inline void zend_bitset_union(zend_bitset set1, zend_bitset set2, uint32_t len) argument
145 set1[i] |= set2[i];
154 set1[i] = set1[i] & ~set2[i];
163 set1[i] = set2[i] | (set3[i] & set4[i]);
172 set1[i] = set2[i] | (set3[i] & ~set4[i]);
[all …]
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_auto_possess.c531 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local
727 set1 = (uint8_t *)(base_end - base_list[2]); in compare_opcodes()
732 set1 = (uint8_t *)(code - list[2]); in compare_opcodes()
788 set_end = set1 + 32; in compare_opcodes()
793 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes()
795 while (set1 < set_end); in compare_opcodes()
801 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes()
803 while (set1 < set_end); in compare_opcodes()

Completed in 7 milliseconds