/PHP-8.0/ext/mysqli/ |
H A D | mysqli_libmysql.h | 74 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 75 (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\ 76 (((uint32_t) (((unsigned char*) (A))[0])) << 16))) 80 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\ 87 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\ 95 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\ 99 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\ 105 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\ 109 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 116 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\ [all …]
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_portability.h | 78 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 81 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\ 125 (((uint32_t) 255L << 24) | \ 131 ((uint32_t) (zend_uchar) (A)[0]))) 135 #define uint3korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 178 (((uint32_t) 255L << 24) | \ 184 ((uint32_t) (zend_uchar) (A)[0]))) 193 #define uint3korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 196 #define uint4korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 211 #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.0/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.0/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.0/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; 121 uint32_t offset; 122 uint32_t len; 148 uint32_t lineno; 170 uint32_t try_op; 185 uint32_t start; 186 uint32_t end; 769 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag); [all …]
|
/PHP-8.0/ext/opcache/ |
H A D | zend_accelerator_hash.h | 52 uint32_t key_length; 59 uint32_t num_entries; 60 uint32_t max_num_entries; 61 uint32_t num_direct_entries; 64 void zend_accel_hash_init(zend_accel_hash *accel_hash, uint32_t hash_size); 70 uint32_t key_length, 85 uint32_t key_length); 90 uint32_t key_length); 95 uint32_t key_length);
|
/PHP-8.0/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_crc32_tables.h | 17 static const uint32_t crc32_table[] = { 0x0, 71 static const uint32_t crc32b_table[] = { 138 static const uint32_t crc32c_table[] = {
|
/PHP-8.0/ext/phar/ |
H A D | phar_internal.h | 175 uint32_t cwd_len; 181 uint32_t last_phar_name_len; 183 uint32_t last_alias_len; 232 uint32_t crc32; 233 uint32_t flags; 262 uint32_t is_dir:1; 269 uint32_t is_tar:1; 271 uint32_t is_zip:1; 313 uint32_t is_zip:1; 315 uint32_t is_tar:1; [all …]
|
/PHP-8.0/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 | mt_rand.c | 91 #define twist(m,u,v) (m ^ (mixBits(u,v)>>1) ^ ((uint32_t)(-(int32_t)(loBit(v))) & 0x9908b0dfU)) 95 static inline void php_mt_initialize(uint32_t seed, uint32_t *state) in php_mt_initialize() 102 register uint32_t *s = state; in php_mt_initialize() 103 register uint32_t *r = state; in php_mt_initialize() 120 register uint32_t *state = BG(state); in php_mt_reload() 121 register uint32_t *p = state; in php_mt_reload() 144 PHPAPI void php_mt_srand(uint32_t seed) in php_mt_srand() 156 PHPAPI uint32_t php_mt_rand(void) in php_mt_rand() 161 register uint32_t s1; in php_mt_rand() 207 static uint32_t rand_range32(uint32_t umax) { in rand_range32() [all …]
|
H A D | crc32.c | 57 static uint32_t crc32_aarch64(uint32_t crc, char *p, size_t nr) { in crc32_aarch64() 64 crc = __crc32w(crc, *(uint32_t *)p); in crc32_aarch64() 65 p += sizeof(uint32_t); in crc32_aarch64() 66 nr -= sizeof(uint32_t); in crc32_aarch64() 88 uint32_t crcinit = 0; in PHP_FUNCTION() 89 uint32_t crc; in PHP_FUNCTION()
|
/PHP-8.0/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;
|
H A D | zend_jit_internal.h | 293 uint32_t last; 312 uint32_t flags; /* set of ZEND_JIT_EXIT_... */ 313 uint32_t stack_size; 314 uint32_t stack_offset; 319 uint32_t info; 373 uint32_t id; /* trace id */ 377 uint32_t exit_count; /* number of side exits */ 379 uint32_t code_size; /* size of native code */ 381 uint32_t stack_map_size; 397 uint32_t call_level; [all …]
|
/PHP-8.0/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 …]
|
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg_list.h | 35 void phpdbg_list_file(zend_string *, uint32_t, int, uint32_t); 49 uint32_t lines; 50 uint32_t line[1];
|
/PHP-8.0/ext/opcache/Optimizer/ |
H A D | zend_cfg.h | 44 uint32_t flags; 45 uint32_t start; /* first opcode number */ 46 uint32_t len; /* number of opcodes */ 90 uint32_t *map; 91 uint32_t flags; 119 int zend_build_cfg(zend_arena **arena, const zend_op_array *op_array, uint32_t build_flags, zend_c…
|