Home
last modified time | relevance | path

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

/PHP-8.0/Zend/
H A Dzend_bitset.h28 # 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);}
132 set[ZEND_BITSET_ELM_NUM(n)] |= Z_UL(1) << ZEND_BITSET_BIT_NUM(n);
249 while (x != Z_UL(0)) {
250 x = x >> Z_UL(1);
266 for (; _x != 0; _x >>= Z_UL(1), (bit)++) { \
267 if (!(_x & Z_UL(1))) continue;
272 zend_ulong _test = Z_UL(1) << (ZEND_BITSET_ELM_SIZE * 8 - 1); \
[all …]
H A Dzend_long.h38 # define Z_UL(i) UINT64_C(i) macro
48 # define Z_UL(i) UINT32_C(i) macro
H A Dzend_string.h401 zend_ulong hash = Z_UL(5381); in zend_inline_hash_func()
492 return hash | Z_UL(0x8000000000000000); in zend_inline_hash_func()
494 return hash | Z_UL(0x80000000); in zend_inline_hash_func()
H A Dzend_alloc.h30 # define ZEND_MM_ALIGNMENT Z_UL(8)
35 # define ZEND_MM_ALIGNMENT Z_UL(4)
H A Dzend_virtual_cwd.c331 for (h = Z_UL(2166136261); bucket_key < e;) { in realpath_cache_key()
332 h *= Z_UL(16777619); in realpath_cache_key()
347 for (h = Z_UL(2166136261); path < e;) { in realpath_cache_key()
348 h *= Z_UL(16777619); in realpath_cache_key()
H A Dzend_portability.h640 #define ZEND_SLIDE_TO_ALIGNED16(ptr) ZEND_SLIDE_TO_ALIGNED(Z_UL(16), ptr)
H A Dzend_alloc.c534 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);
/PHP-8.0/ext/standard/
H A Dpassword.c197 if (!(salt = php_password_get_salt(NULL, Z_UL(22), options))) { in php_password_bcrypt_hash()
337 if (!(salt = php_password_get_salt(NULL, Z_UL(16), options))) { in php_password_argon2_hash()
H A Dstring.c2766 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2767 …bitset[((unsigned char)ZSTR_VAL(str_key)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)…
2791 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2792 …bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char…
2821 …if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % …
2827 if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {
/PHP-8.0/ext/opcache/
H A Dzend_file_cache.c114 ((size_t)(ptr) & Z_UL(1))
252 ret = (void*)(info->str_size | Z_UL(1));
270 str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1)));
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_inference.c318 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()
/PHP-8.0/ext/phar/
H A Dzip.c1177 …if (Z_UL(8) != php_stream_write(entry.fp, sigbuf, 8) || signature_length != php_stream_write(entry… in phar_zip_applysignature()

Completed in 68 milliseconds