Home
last modified time | relevance | path

Searched refs:Z_UL (Results 1 – 8 of 8) sorted by relevance

/PHP-7.0/Zend/
H A Dzend_bitset.h30 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f))
33 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f))
51 return (set[ZEND_BITSET_ELM_NUM(n)] & (Z_UL(1) << ZEND_BITSET_BIT_NUM(n))) != Z_UL(0); in zend_bitset_in()
56 set[ZEND_BITSET_ELM_NUM(n)] |= Z_UL(1) << ZEND_BITSET_BIT_NUM(n); in zend_bitset_incl()
61 set[ZEND_BITSET_ELM_NUM(n)] &= ~(Z_UL(1) << ZEND_BITSET_BIT_NUM(n)); in zend_bitset_excl()
148 while ((x & Z_UL(1)) == 0) { in zend_bitset_first()
149 x = x >> Z_UL(1); in zend_bitset_first()
167 while (x != Z_UL(0)) { in zend_bitset_last()
168 x = x >> Z_UL(1); in zend_bitset_last()
H A Dzend_long.h41 # define Z_UL(i) UINT64_C(i) macro
51 # define Z_UL(i) UINT32_C(i) macro
H A Dzend_string.h326 register zend_ulong hash = Z_UL(5381); in zend_inline_hash_func()
353 return hash | Z_UL(0x8000000000000000); in zend_inline_hash_func()
355 return hash | Z_UL(0x80000000); in zend_inline_hash_func()
H A Dzend_virtual_cwd.c620 for (h = Z_UL(2166136261); bucket_key < e;) { in realpath_cache_key()
621 h *= Z_UL(16777619); in realpath_cache_key()
634 for (h = Z_UL(2166136261); path < e;) { in realpath_cache_key()
635 h *= Z_UL(16777619); in realpath_cache_key()
H A Dzend_alloc.c540 if ((bitset & 0xffffffff) == 0xffffffff) {n += 32; bitset = bitset >> Z_UL(32);}
579 if ((bitset & 0xffffffff) == 0) {n += 32; bitset = bitset >> Z_UL(32);}
626 bitset[i] |= Z_UL(1) << n;
/PHP-7.0/ext/opcache/
H A Dzend_file_cache.c95 ((size_t)(ptr) & Z_UL(1))
208 ret = (void*)(info->str_size | Z_UL(1)); in zend_file_cache_serialize_interned()
226 str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1))); in zend_file_cache_unserialize_interned()
/PHP-7.0/ext/standard/
H A Dstring.c2953 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2954 …bitset[((unsigned char)ZSTR_VAL(str_key)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)…
2977 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2978 …bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char…
3007 …if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % …
3013 if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {
/PHP-7.0/
H A DUPGRADING.INTERNALS122 …- Z_UL casts an integral constant t…

Completed in 59 milliseconds