Home
last modified time | relevance | path

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

/PHP-7.3/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);}
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 …]
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.h366 zend_ulong hash = Z_UL(5381); in zend_inline_hash_func()
393 return hash | Z_UL(0x8000000000000000); in zend_inline_hash_func()
395 return hash | Z_UL(0x80000000); in zend_inline_hash_func()
H A Dzend_virtual_cwd.c570 for (h = Z_UL(2166136261); bucket_key < e;) { in realpath_cache_key()
571 h *= Z_UL(16777619); in realpath_cache_key()
586 for (h = Z_UL(2166136261); path < e;) { in realpath_cache_key()
587 h *= Z_UL(16777619); in realpath_cache_key()
H A Dzend_portability.h633 #define ZEND_SLIDE_TO_ALIGNED16(ptr) ZEND_SLIDE_TO_ALIGNED(Z_UL(16), ptr)
H A Dzend_alloc.c533 if ((bitset & 0xffffffff) == 0xffffffff) {n += 32; bitset = bitset >> Z_UL(32);}
580 bitset[i] |= Z_UL(1) << n;
/PHP-7.3/ext/opcache/
H A Dzend_file_cache.c106 ((size_t)(ptr) & Z_UL(1))
225 ret = (void*)(info->str_size | Z_UL(1));
243 str = (zend_string*)((char*)ZCG(mem) + ((size_t)(str) & ~Z_UL(1)));
507 (Z_UL(1) << (sizeof(zend_type)*8-1)) | /* type is class */
508 (allow_null ? (Z_UL(1) << (sizeof(zend_type)*8-2)) : Z_UL(0)) | /* type allow null */
1130 if (p->type & (Z_UL(1) << (sizeof(zend_type)*8-1))) { /* type is class */
1131 …zend_bool allow_null = (p->type & (Z_UL(1) << (sizeof(zend_type)*8-2))) != 0; /* type allow null */
1132 …zend_string *type_name = (zend_string*)(p->type & ~(((Z_UL(1) << (sizeof(zend_type)*8-1))) | ((Z_U…
/PHP-7.3/ext/standard/
H A Dpassword.c476 if (!(salt = php_password_get_salt(return_value, Z_UL(22), options))) { in PHP_FUNCTION()
548 if (!(salt = php_password_get_salt(return_value, Z_UL(16), options))) { in PHP_FUNCTION()
H A Dstring.c3057 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
3058 …bitset[((unsigned char)ZSTR_VAL(str_key)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char)…
3082 num_bitset[len / sizeof(zend_ulong)] |= Z_UL(1) << (len % sizeof(zend_ulong));
3083 …bitset[((unsigned char)ZSTR_VAL(key_used)[0]) / sizeof(zend_ulong)] |= Z_UL(1) << (((unsigned char…
3112 …if (bitset[((unsigned char)key[0]) / sizeof(zend_ulong)] & (Z_UL(1) << (((unsigned char)key[0]) % …
3118 if ((num_bitset[len / sizeof(zend_ulong)] & (Z_UL(1) << (len % sizeof(zend_ulong))))) {
/PHP-7.3/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-7.3/ext/phar/
H A Dzip.c1156 …if (Z_UL(8) != php_stream_write(entry.fp, sigbuf, 8) || signature_length != php_stream_write(entry… in phar_zip_applysignature()

Completed in 64 milliseconds