Home
last modified time | relevance | path

Searched refs:set2 (Results 1 – 4 of 4) sorted by relevance

/PHP-8.1/Zend/
H A Dzend_bitset.h161 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 Dpcre2_auto_possess.c532 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local
742 set2 = (uint8_t *) in compare_opcodes()
757 set2 = (uint8_t *)(xclass_flags + 1); in compare_opcodes()
765 set2 = (uint8_t *)(cb->cbits + cbit_digit); in compare_opcodes()
772 set2 = (uint8_t *)(cb->cbits + cbit_space); in compare_opcodes()
779 set2 = (uint8_t *)(cb->cbits + cbit_word); in compare_opcodes()
794 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes()
802 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes()
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_internal.h60 #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))
/PHP-8.1/ext/opcache/jit/dynasm/
H A Dminilua.c6519 static void set2(lua_State*L,int i,int j){
6543 set2(L,l,u);
6551 set2(L,i,l);
6556 set2(L,i,u);
6564 set2(L,i,u-1);
6579 set2(L,i,j);
6583 set2(L,u-1,i);

Completed in 28 milliseconds