Home
last modified time | relevance | path

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

/php-src/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.h464 zend_ulong hash = Z_UL(5381); in zend_inline_hash_func()
555 return hash | Z_UL(0x8000000000000000); in zend_inline_hash_func()
557 return hash | Z_UL(0x80000000); in zend_inline_hash_func()
H A Dzend_virtual_cwd.c329 for (h = Z_UL(2166136261); bucket_key < e;) { in realpath_cache_key()
330 h *= Z_UL(16777619); in realpath_cache_key()
345 for (h = Z_UL(2166136261); path < e;) { in realpath_cache_key()
346 h *= Z_UL(16777619); in realpath_cache_key()
H A Dzend_portability.h731 #define ZEND_SLIDE_TO_ALIGNED16(ptr) ZEND_SLIDE_TO_ALIGNED(Z_UL(16), ptr)
H A Dzend_alloc.c605 if ((bitset & 0xffffffff) == 0xffffffff) {n += 32; bitset = bitset >> Z_UL(32);}
623 bitset[bit / ZEND_MM_BITSET_LEN] |= (Z_UL(1) << (bit & (ZEND_MM_BITSET_LEN-1)));
628 bitset[bit / ZEND_MM_BITSET_LEN] &= ~(Z_UL(1) << (bit & (ZEND_MM_BITSET_LEN-1)));
675 tmp = ~((Z_UL(1) << bit) - 1);
/php-src/ext/standard/
H A Dpassword.c199 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.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)…
2978 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
2979 …bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char…
3008 …if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % …
3014 if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {
/php-src/ext/opcache/
H A Dzend_file_cache.c116 ((size_t)(ptr) & Z_UL(1))
258 ret = (void*)(info->str_size | Z_UL(1));
281 str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1)));
/php-src/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-src/ext/phar/
H A Dzip.c1228 …if (Z_UL(8) != php_stream_write(entry.fp, sigbuf, 8) || signature_length != php_stream_write(entry… in phar_zip_applysignature()

Completed in 104 milliseconds