/PHP-8.1/ext/mysqli/ |
H A D | mysqli_libmysql.h | 72 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 73 (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\ 74 (((uint32_t) (((unsigned char*) (A))[0])) << 16))) 78 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\ 85 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\ 93 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\ 97 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\ 103 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\ 107 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 114 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\ [all …]
|
/PHP-8.1/ext/mysqlnd/ |
H A D | mysqlnd_portability.h | 67 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 70 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\ 114 (((uint32_t) 255L << 24) | \ 120 ((uint32_t) (zend_uchar) (A)[0]))) 124 #define uint3korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 167 (((uint32_t) 255L << 24) | \ 173 ((uint32_t) (zend_uchar) (A)[0]))) 182 #define uint3korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 185 #define uint4korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 200 #define int2store(T,A) do { uint32_t def_temp= (uint32_t) (A) ;\ [all …]
|
H A D | config-win.h | 67 (((uint32_t) 255L << 24) | \ 68 (((uint32_t) (zend_uchar) (A)[2]) << 16) |\ 69 (((uint32_t) (zend_uchar) (A)[1]) << 8) | \ 70 ((uint32_t) (zend_uchar) (A)[0])) : \ 71 (((uint32_t) (zend_uchar) (A)[2]) << 16) |\ 72 (((uint32_t) (zend_uchar) (A)[1]) << 8) | \ 73 ((uint32_t) (zend_uchar) (A)[0]))) 77 #define uint4korr(A) (*((uint32_t *) (A))) 79 (((uint32_t) ((zend_uchar) (A)[1])) << 8) +\ 80 (((uint32_t) ((zend_uchar) (A)[2])) << 16) +\ [all …]
|
/PHP-8.1/ext/ffi/tests/ |
H A D | 022.phpt | 21 test_size(8, "struct {uint32_t a; uint32_t b;}"); 23 test_size(8, "struct {char a; uint32_t b;}"); 24 test_size(8, "struct {uint32_t a; char b;}"); 25 test_size(5, "struct __attribute__((packed)) {char a; uint32_t b;}"); 26 test_size(5, "struct __attribute__((packed)) {uint32_t a; char b;}"); 28 test_size(16, "struct {uint32_t a; uint32_t b;}[2]"); 30 test_size(16, "struct {char a; uint32_t b;}[2]"); 31 test_size(16, "struct {uint32_t a; char b;}[2]"); 35 test_align(4, "union {uint32_t a; uint32_t b;}"); 37 test_align(4, "union {char a; uint32_t b;}"); [all …]
|
/PHP-8.1/ext/pcre/pcre2lib/ |
H A D | pcre2_config.c | 100 return sizeof(uint32_t); in pcre2_config() 125 *((uint32_t *)where) = 0 in pcre2_config() 143 *((uint32_t *)where) = HEAP_LIMIT; in pcre2_config() 148 *((uint32_t *)where) = 1; in pcre2_config() 150 *((uint32_t *)where) = 0; in pcre2_config() 166 *((uint32_t *)where) = (uint32_t)configured_link_size; in pcre2_config() 179 *((uint32_t *)where) = 1; in pcre2_config() 181 *((uint32_t *)where) = 0; in pcre2_config() 193 *((uint32_t *)where) = 0; in pcre2_config() 214 *((uint32_t *)where) = 1; in pcre2_config() [all …]
|
H A D | pcre2_intmodedep.h | 567 int (*stack_guard)(uint32_t, void *); 573 uint32_t parens_nest_limit; 574 uint32_t extra_options; 590 uint32_t heap_limit; 591 uint32_t match_limit; 592 uint32_t depth_limit; 599 uint32_t glob_separator; 600 uint32_t glob_escape; 684 uint32_t *groupptr; 707 uint32_t number; /* Group number */ [all …]
|
H A D | pcre2_pattern_info.c | 95 return sizeof(uint32_t); in pcre2_pattern_info() 132 *((uint32_t *)where) = re->top_backref; in pcre2_pattern_info() 136 *((uint32_t *)where) = re->bsr_convention; in pcre2_pattern_info() 140 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info() 144 *((uint32_t *)where) = re->limit_depth; in pcre2_pattern_info() 149 *((uint32_t *)where) = re->extra_options; in pcre2_pattern_info() 181 *((uint32_t *)where) = re->limit_heap; in pcre2_pattern_info() 212 *((uint32_t *)where) = re->limit_match; in pcre2_pattern_info() 217 *((uint32_t *)where) = re->max_lookbehind; in pcre2_pattern_info() 221 *((uint32_t *)where) = re->minlength; in pcre2_pattern_info() [all …]
|
/PHP-8.1/Zend/ |
H A D | zend_attributes.h | 52 uint32_t flags; 53 uint32_t lineno; 55 uint32_t offset; 56 uint32_t argc; 62 uint32_t flags; 74 ZEND_API zend_string *zend_get_attribute_target_names(uint32_t targets); 81 HashTable **attributes, zend_string *name, uint32_t argc, 82 uint32_t flags, uint32_t offset, uint32_t lineno); 88 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in END_EXTERN_C() 98 …te *zend_add_parameter_attribute(zend_function *func, uint32_t offset, zend_string *name, uint32_t… in zend_add_parameter_attribute() [all …]
|
H A D | zend_bitset.h | 120 static inline uint32_t zend_bitset_len(uint32_t n) 147 uint32_t i; 173 uint32_t i; 182 uint32_t i; 191 uint32_t i; 200 uint32_t i; 209 uint32_t i; 218 uint32_t i; 230 uint32_t i; 242 uint32_t i = len; [all …]
|
H A D | zend_cpuinfo.c | 22 uint32_t eax; 23 uint32_t ebx; 24 uint32_t ecx; 25 uint32_t edx; 26 uint32_t initialized; 34 static void __zend_cpuid(uint32_t func, uint32_t subfunc, zend_cpu_info *cpuinfo) { in __zend_cpuid() 38 static void __zend_cpuid(uint32_t func, uint32_t subfunc, zend_cpu_info *cpuinfo) { in __zend_cpuid() 60 static void __zend_cpuid(uint32_t func, uint32_t subfunc, zend_cpu_info *cpuinfo) { in __zend_cpuid() 71 static void __zend_cpuid(uint32_t func, uint32_t subfunc, zend_cpu_info *cpuinfo) { in __zend_cpuid()
|
H A D | zend_compile.h | 65 uint32_t var; 66 uint32_t num; 91 uint32_t lineno; 139 uint32_t lineno; 157 uint32_t opline_num; 161 uint32_t try_op; 176 uint32_t start; 177 uint32_t end; 374 uint32_t flags; 787 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag); [all …]
|
/PHP-8.1/ext/hash/murmur/ |
H A D | PMurHash128.h | 16 typedef unsigned int uint32_t; typedef 32 void PMurHash128x64_Result(const uint64_t ph[2], const uint64_t pcarry[2], uint32_t total_length, u… 33 void PMurHash128x64(const void * key, const int len, uint32_t seed, void * out); 36 void PMurHash128x86_Process(uint32_t ph[4], uint32_t pcarry[4], const void *key, int len); 37 void PMurHash128x86_Result(const uint32_t ph[4], const uint32_t pcarry[4], uint32_t total_length, u… 38 void PMurHash128x86(const void * key, const int len, uint32_t seed, void * out);
|
H A D | PMurHash.h | 17 typedef unsigned int uint32_t; typedef 30 void PMurHash32_Process(uint32_t *ph1, uint32_t *pcarry, const void *key, int len); 31 uint32_t PMurHash32_Result(uint32_t h1, uint32_t carry, uint32_t total_length);
|
H A D | PMurHash.c | 78 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) 110 c = c>>8 | (uint32_t)*ptr++<<24;\ 123 void PMurHash32_Process(uint32_t *ph1, uint32_t *pcarry, const void *key, int len) in PMurHash32_Process() 125 uint32_t h1 = *ph1; in PMurHash32_Process() 126 uint32_t c = *pcarry; in PMurHash32_Process() 146 uint32_t k1 = READ_UINT32(ptr); in PMurHash32_Process() 170 uint32_t k1 = c>>24; in PMurHash32_Process() 178 uint32_t k1 = c>>16; in PMurHash32_Process() 186 uint32_t k1 = c>>8; in PMurHash32_Process() 208 uint32_t PMurHash32_Result(uint32_t h, uint32_t carry, uint32_t total_length) in PMurHash32_Result() [all …]
|
H A D | PMurHash128.c | 72 #define ROTL32(x,r) (((uint32_t)x << r) | ((uint32_t)x >> (32 - r))) 85 FORCE_INLINE uint32_t fmix32 ( uint32_t h ) in fmix32() 173 void PMurHash128x86_Result(const uint32_t ph[4], const uint32_t pcarry[4], uint32_t total_length, u… in PMurHash128x86_Result() 175 uint32_t h1 = ph[0]; in PMurHash128x86_Result() 176 uint32_t h2 = ph[1]; in PMurHash128x86_Result() 177 uint32_t h3 = ph[2]; in PMurHash128x86_Result() 178 uint32_t h4 = ph[3]; in PMurHash128x86_Result() 245 uint32_t h1 = ph[0]; in PMurHash128x86_Process() 246 uint32_t h2 = ph[1]; in PMurHash128x86_Process() 247 uint32_t h3 = ph[2]; in PMurHash128x86_Process() [all …]
|
/PHP-8.1/ext/phar/ |
H A D | phar_internal.h | 177 uint32_t cwd_len; 183 uint32_t last_phar_name_len; 185 uint32_t last_alias_len; 234 uint32_t crc32; 235 uint32_t flags; 264 uint32_t is_dir:1; 271 uint32_t is_tar:1; 273 uint32_t is_zip:1; 315 uint32_t is_zip:1; 317 uint32_t is_tar:1; [all …]
|
/PHP-8.1/ext/hash/ |
H A D | php_hash_ripemd.h | 23 uint32_t state[4]; /* state (ABCD) */ 24 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 30 uint32_t state[5]; /* state (ABCD) */ 31 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 37 uint32_t state[8]; /* state (ABCD) */ 38 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 44 uint32_t state[10]; /* state (ABCD) */ 45 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
|
H A D | php_hash_murmur.h | 21 uint32_t h; 22 uint32_t carry; 23 uint32_t len; 33 uint32_t h[4]; 34 uint32_t carry[4]; 35 uint32_t len; 47 uint32_t len;
|
/PHP-8.1/ext/opcache/jit/ |
H A D | zend_elf.h | 39 uint32_t version; 43 uint32_t flags; 53 uint32_t name; 54 uint32_t type; 59 uint32_t link; 60 uint32_t info; 82 uint32_t name; 89 uint32_t name; 91 uint32_t size;
|
/PHP-8.1/ext/standard/ |
H A D | crypt_freesec.h | 16 uint32_t saltbits; 17 uint32_t old_salt; 18 uint32_t en_keysl[16], en_keysr[16]; 19 uint32_t de_keysl[16], de_keysr[16]; 20 uint32_t old_rawkey0, old_rawkey1;
|
H A D | crypt_sha256.c | 55 uint32_t H[8]; 57 uint32_t total[2]; 58 uint32_t buflen; 122 uint32_t W[64]; in sha256_process_block() 123 uint32_t a_save = a; in sha256_process_block() 124 uint32_t b_save = b; in sha256_process_block() 125 uint32_t c_save = c; in sha256_process_block() 126 uint32_t d_save = d; in sha256_process_block() 127 uint32_t e_save = e; in sha256_process_block() 128 uint32_t f_save = f; in sha256_process_block() [all …]
|
H A D | crypt_freesec.c | 157 static const uint32_t bits32[32] = 175 static uint32_t psbox[4][256]; 212 uint32_t *p, *il, *ir, *fl, *fr; in _crypt_extended_init() 213 const uint32_t *bits28, *bits24; in _crypt_extended_init() 351 uint32_t obit, saltbit, saltbits; in setup_salt() 377 (uint32_t)(u_char)key[3] | in des_setkey() 382 (uint32_t)(u_char)key[7] | in des_setkey() 425 uint32_t t0, t1; in des_setkey() 456 do_des(uint32_t l_in, uint32_t r_in, uint32_t *l_out, uint32_t *r_out, in do_des() 583 (uint32_t)(u_char)in[3] | in des_cipher() [all …]
|
H A D | crc32.c | 66 static uint32_t crc32_aarch64(uint32_t crc, const char *p, size_t nr) { in crc32_aarch64() 73 crc = __crc32w(crc, *(uint32_t *)p); in crc32_aarch64() 74 p += sizeof(uint32_t); in crc32_aarch64() 75 nr -= sizeof(uint32_t); in crc32_aarch64() 92 PHPAPI uint32_t php_crc32_bulk_update(uint32_t crc, const char *p, size_t nr) in php_crc32_bulk_update() 115 PHPAPI int php_crc32_stream_bulk_update(uint32_t *crc, php_stream *fp, size_t nr) in php_crc32_stream_bulk_update() 141 uint32_t crc = php_crc32_bulk_init(); in PHP_FUNCTION()
|
H A D | mt_rand.c | 92 #define twist(m,u,v) (m ^ (mixBits(u,v)>>1) ^ ((uint32_t)(-(int32_t)(loBit(v))) & 0x9908b0dfU)) 96 static inline void php_mt_initialize(uint32_t seed, uint32_t *state) in php_mt_initialize() 103 uint32_t *s = state; in php_mt_initialize() 104 uint32_t *r = state; in php_mt_initialize() 121 uint32_t *state = BG(state); in php_mt_reload() 122 uint32_t *p = state; in php_mt_reload() 145 PHPAPI void php_mt_srand(uint32_t seed) in php_mt_srand() 157 PHPAPI uint32_t php_mt_rand(void) in php_mt_rand() 162 uint32_t s1; in php_mt_rand() 215 static uint32_t rand_range32(uint32_t umax) { in rand_range32() [all …]
|
/PHP-8.1/ext/fileinfo/libmagic/ |
H A D | cdf.h | 109 uint32_t d_flags; 113 uint32_t d_size; 137 uint32_t cl_dword; 149 uint32_t si_count; 160 uint32_t sh_len; 165 uint32_t pi_id; 166 uint32_t pi_type; 170 uint32_t _pi_u32; 178 uint32_t s_len; 275 uint32_t ce_num; [all …]
|