Z_UL 538 Zend/zend_alloc.c if ((bitset & 0xffffffff) == 0xffffffff) {n += 32; bitset = bitset >> Z_UL(32);} Z_UL 577 Zend/zend_alloc.c if ((bitset & 0xffffffff) == 0) {n += 32; bitset = bitset >> Z_UL(32);} Z_UL 624 Zend/zend_alloc.c bitset[i] |= Z_UL(1) << n; Z_UL 30 Zend/zend_bitset.h # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f)) Z_UL 33 Zend/zend_bitset.h # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f)) Z_UL 51 Zend/zend_bitset.h return (set[ZEND_BITSET_ELM_NUM(n)] & (Z_UL(1) << ZEND_BITSET_BIT_NUM(n))) != Z_UL(0); Z_UL 56 Zend/zend_bitset.h set[ZEND_BITSET_ELM_NUM(n)] |= Z_UL(1) << ZEND_BITSET_BIT_NUM(n); Z_UL 61 Zend/zend_bitset.h set[ZEND_BITSET_ELM_NUM(n)] &= ~(Z_UL(1) << ZEND_BITSET_BIT_NUM(n)); Z_UL 148 Zend/zend_bitset.h while ((x & Z_UL(1)) == 0) { Z_UL 149 Zend/zend_bitset.h x = x >> Z_UL(1); Z_UL 167 Zend/zend_bitset.h while (x != Z_UL(0)) { Z_UL 168 Zend/zend_bitset.h x = x >> Z_UL(1); Z_UL 326 Zend/zend_string.h register zend_ulong hash = Z_UL(5381); Z_UL 353 Zend/zend_string.h return hash | Z_UL(0x8000000000000000); Z_UL 355 Zend/zend_string.h return hash | Z_UL(0x80000000); Z_UL 607 Zend/zend_virtual_cwd.c for (h = Z_UL(2166136261); bucket_key < e;) { Z_UL 608 Zend/zend_virtual_cwd.c h *= Z_UL(16777619); Z_UL 621 Zend/zend_virtual_cwd.c for (h = Z_UL(2166136261); path < e;) { Z_UL 622 Zend/zend_virtual_cwd.c h *= Z_UL(16777619); Z_UL 95 ext/opcache/zend_file_cache.c ((size_t)(ptr) & Z_UL(1)) Z_UL 208 ext/opcache/zend_file_cache.c ret = (void*)(info->str_size | Z_UL(1)); Z_UL 226 ext/opcache/zend_file_cache.c str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1))); Z_UL 3034 ext/standard/string.c num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong)); Z_UL 3035 ext/standard/string.c bitset[((unsigned char)ZSTR_VAL(str_key)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)ZSTR_VAL(str_key)[0]) % sizeof(zend_ulong)); Z_UL 3058 ext/standard/string.c num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong)); Z_UL 3059 ext/standard/string.c bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)ZSTR_VAL(key_used)[0]) % sizeof(zend_ulong)); Z_UL 3088 ext/standard/string.c if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % sizeof(zend_ulong)))) { Z_UL 3094 ext/standard/string.c if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {