Home
last modified time | relevance | path

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

/PHP-8.3/Zend/
H A Dzend_bitset.h35 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f))
38 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f))
71 if (num == Z_UL(0)) return SIZEOF_ZEND_LONG * 8;
75 if ((num & 0xffffffff) == 0) {n += 32; num = num >> Z_UL(32);}
139 set[ZEND_BITSET_ELM_NUM(n)] |= Z_UL(1) << ZEND_BITSET_BIT_NUM(n);
256 while (x != Z_UL(0)) {
257 x = x >> Z_UL(1);
273 for (; _x != 0; _x >>= Z_UL(1), (bit)++) { \
274 if (!(_x & Z_UL(1))) continue;
279 zend_ulong _test = Z_UL(1) << (ZEND_BITSET_ELM_SIZE * 8 - 1); \
[all …]
H A Dzend_long.h39 # define Z_UL(i) UINT64_C(i) macro
49 # define Z_UL(i) UINT32_C(i) macro
H A Dzend_string.h462 zend_ulong hash = Z_UL(5381); in zend_inline_hash_func()
553 return hash | Z_UL(0x8000000000000000); in zend_inline_hash_func()
555 return hash | Z_UL(0x80000000); in zend_inline_hash_func()
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.h705 #define ZEND_SLIDE_TO_ALIGNED16(ptr) ZEND_SLIDE_TO_ALIGNED(Z_UL(16), ptr)
H A Dzend_alloc.c575 if ((bitset & 0xffffffff) == 0xffffffff) {n += 32; bitset = bitset >> Z_UL(32);}
593 bitset[bit / ZEND_MM_BITSET_LEN] |= (Z_UL(1) << (bit & (ZEND_MM_BITSET_LEN-1)));
598 bitset[bit / ZEND_MM_BITSET_LEN] &= ~(Z_UL(1) << (bit & (ZEND_MM_BITSET_LEN-1)));
645 tmp = ~((Z_UL(1) << bit) - 1);
/PHP-8.3/ext/standard/
H A Dpassword.c198 if (!(salt = php_password_get_salt(NULL, Z_UL(22), options))) { in php_password_bcrypt_hash()
338 if (!(salt = php_password_get_salt(NULL, Z_UL(16), options))) { in php_password_argon2_hash()
H A Dstring.c2722 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2723 …bitset[((unsigned char)ZSTR_VAL(str_key)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)…
2747 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2748 …bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char…
2777 …if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % …
2783 if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {
/PHP-8.3/ext/opcache/
H A Dzend_file_cache.c115 ((size_t)(ptr) & Z_UL(1))
255 ret = (void*)(info->str_size | Z_UL(1));
278 str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1)));
/PHP-8.3/Zend/Optimizer/
H A Dzend_inference.c550 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in minOR()
574 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in maxOR()
597 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in minAND()
620 m = Z_UL(1) << (sizeof(zend_ulong) * 8 - 1); in maxAND()
/PHP-8.3/ext/phar/
H A Dzip.c1197 …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