Home
last modified time | relevance | path

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

/PHP-8.0/Zend/
H A Dzend_bitset.h161 static inline zend_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.0/ext/opcache/jit/
H A Dzend_jit_x86.h143 #define ZEND_REGSET_UNION(set1, set2) \ argument
144 ((set1) | (set2))
146 #define ZEND_REGSET_INTERSECTION(set1, set2) \ argument
147 ((set1) & (set2))
149 #define ZEND_REGSET_DIFFERENCE(set1, set2) \ argument
150 ((set1) & ~(set2))
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_auto_possess.c531 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local
741 set2 = (uint8_t *) in compare_opcodes()
756 set2 = (uint8_t *)(xclass_flags + 1); in compare_opcodes()
764 set2 = (uint8_t *)(cb->cbits + cbit_digit); in compare_opcodes()
771 set2 = (uint8_t *)(cb->cbits + cbit_space); in compare_opcodes()
778 set2 = (uint8_t *)(cb->cbits + cbit_word); in compare_opcodes()
793 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes()
801 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes()
/PHP-8.0/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 31 milliseconds