Searched refs:Z_UL (Results 1 – 12 of 12) sorted by relevance
28 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f))31 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f))64 if (num == Z_UL(0)) return SIZEOF_ZEND_LONG * 8;68 if ((num & 0xffffffff) == 0) {n += 32; num = num >> Z_UL(32);}92 set[ZEND_BITSET_ELM_NUM(n)] |= Z_UL(1) << ZEND_BITSET_BIT_NUM(n);209 while (x != Z_UL(0)) {210 x = x >> Z_UL(1);226 for (; _x != 0; _x >>= Z_UL(1), (bit)++) { \227 if (!(_x & Z_UL(1))) continue;232 zend_ulong _test = Z_UL(1) << (ZEND_BITSET_ELM_SIZE * 8 - 1); \[all …]
38 # define Z_UL(i) UINT64_C(i) macro48 # define Z_UL(i) UINT32_C(i) macro
369 zend_ulong hash = Z_UL(5381); in zend_inline_hash_func()460 return hash | Z_UL(0x8000000000000000); in zend_inline_hash_func()462 return hash | Z_UL(0x80000000); in zend_inline_hash_func()
30 # define ZEND_MM_ALIGNMENT Z_UL(8)35 # define ZEND_MM_ALIGNMENT Z_UL(4)
337 for (h = Z_UL(2166136261); bucket_key < e;) { in realpath_cache_key()338 h *= Z_UL(16777619); in realpath_cache_key()353 for (h = Z_UL(2166136261); path < e;) { in realpath_cache_key()354 h *= Z_UL(16777619); in realpath_cache_key()
637 #define ZEND_SLIDE_TO_ALIGNED16(ptr) ZEND_SLIDE_TO_ALIGNED(Z_UL(16), ptr)
534 if ((bitset & 0xffffffff) == 0xffffffff) {n += 32; bitset = bitset >> Z_UL(32);}552 bitset[bit / ZEND_MM_BITSET_LEN] |= (Z_UL(1) << (bit & (ZEND_MM_BITSET_LEN-1)));557 bitset[bit / ZEND_MM_BITSET_LEN] &= ~(Z_UL(1) << (bit & (ZEND_MM_BITSET_LEN-1)));604 tmp = ~((Z_UL(1) << bit) - 1);
273 if (!(salt = php_password_get_salt(NULL, Z_UL(22), options))) { in php_password_bcrypt_hash()413 if (!(salt = php_password_get_salt(NULL, Z_UL(16), options))) { in php_password_argon2_hash()
3043 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));3044 …bitset[((unsigned char)ZSTR_VAL(str_key)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)…3068 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));3069 …bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char…3098 …if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % …3104 if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {
108 ((size_t)(ptr) & Z_UL(1))227 ret = (void*)(info->str_size | Z_UL(1));245 str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1)));
318 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in minOR()342 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in maxOR()365 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in minAND()388 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in maxAND()
1195 …if (Z_UL(8) != php_stream_write(entry.fp, sigbuf, 8) || signature_length != php_stream_write(entry… in phar_zip_applysignature()
Completed in 86 milliseconds