Home
last modified time | relevance | path

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

/PHP-7.3/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.3/ext/pcre/pcre2lib/
H A Dpcre2_auto_possess.c528 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local
708 set1 = (uint8_t *)(base_end - base_list[2]); in compare_opcodes()
713 set1 = (uint8_t *)(code - list[2]); in compare_opcodes()
769 set_end = set1 + 32; in compare_opcodes()
774 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes()
776 while (set1 < set_end); in compare_opcodes()
782 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes()
784 while (set1 < set_end); in compare_opcodes()

Completed in 9 milliseconds