Searched refs:set2 (Results 1 – 4 of 4) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_bitset.h | 168 static inline bool zend_bitset_equal(zend_bitset set1, zend_bitset set2, uint32_t len) argument 170 return memcmp(set1, set2, len * ZEND_BITSET_ELM_SIZE) == 0; 173 static inline void zend_bitset_copy(zend_bitset set1, zend_bitset set2, uint32_t len) argument 175 memcpy(set1, set2, len * ZEND_BITSET_ELM_SIZE); 183 set1[i] &= set2[i]; 187 static inline void zend_bitset_union(zend_bitset set1, zend_bitset set2, uint32_t len) argument 192 set1[i] |= set2[i]; 201 set1[i] = set1[i] & ~set2[i]; 210 set1[i] = set2[i] | (set3[i] & set4[i]); 219 set1[i] = set2[i] | (set3[i] & ~set4[i]); [all …]
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_auto_possess.c | 549 const uint8_t *set1, *set2, *set_end; in compare_opcodes() local 759 set2 = (uint8_t *) in compare_opcodes() 774 set2 = (uint8_t *)(xclass_flags + 1); in compare_opcodes() 782 set2 = (uint8_t *)(cb->cbits + cbit_digit); in compare_opcodes() 789 set2 = (uint8_t *)(cb->cbits + cbit_space); in compare_opcodes() 796 set2 = (uint8_t *)(cb->cbits + cbit_word); in compare_opcodes() 811 if ((*set1++ & ~(*set2++)) != 0) return FALSE; in compare_opcodes() 819 if ((*set1++ & *set2++) != 0) return FALSE; in compare_opcodes()
|
/PHP-8.3/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))
|
/PHP-8.3/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 6519 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 37 milliseconds