/PHP-7.1/ext/mysqli/ |
H A D | mysqli_libmysql.h | 76 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 77 (((uint32_t) (((unsigned char*) (A))[1])) << 8) +\ 78 (((uint32_t) (((unsigned char*) (A))[0])) << 16))) 82 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\ 89 #define bit_uint5korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[4])) +\ 97 #define bit_uint6korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[5])) +\ 101 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[1])) +\ 107 #define bit_uint7korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[6])) +\ 111 (((uint64_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 118 #define bit_uint8korr(A) ((uint64_t)(((uint32_t) (((unsigned char*) (A))[7])) +\ [all …]
|
/PHP-7.1/ext/mysqlnd/ |
H A D | mysqlnd_portability.h | 143 #define bit_uint3korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[2])) +\ 146 #define bit_uint4korr(A) ((uint32_t) (((uint32_t) (((unsigned char*) (A))[3])) +\ 190 (((uint32_t) 255L << 24) | \ 200 #define uint3korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 252 (((uint32_t) 255L << 24) | \ 258 ((uint32_t) (zend_uchar) (A)[0]))) 267 #define uint3korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 270 #define uint4korr(A) (uint32_t) (((uint32_t) ((zend_uchar) (A)[0])) +\ 276 (((uint32_t) ((zend_uchar) (A)[1])) << 8) +\ 285 #define int2store(T,A) do { uint32_t def_temp= (uint32_t) (A) ;\ [all …]
|
H A D | config-win.h | 68 (((uint32_t) 255L << 24) | \ 69 (((uint32_t) (zend_uchar) (A)[2]) << 16) |\ 70 (((uint32_t) (zend_uchar) (A)[1]) << 8) | \ 71 ((uint32_t) (zend_uchar) (A)[0])) : \ 72 (((uint32_t) (zend_uchar) (A)[2]) << 16) |\ 73 (((uint32_t) (zend_uchar) (A)[1]) << 8) | \ 74 ((uint32_t) (zend_uchar) (A)[0]))) 78 #define uint4korr(A) (*((uint32_t *) (A))) 80 (((uint32_t) ((zend_uchar) (A)[1])) << 8) +\ 81 (((uint32_t) ((zend_uchar) (A)[2])) << 16) +\ [all …]
|
/PHP-7.1/Zend/ |
H A D | zend_bitset.h | 82 static inline uint32_t zend_bitset_len(uint32_t n) 109 uint32_t i; 135 uint32_t i; 144 uint32_t i; 153 uint32_t i; 162 uint32_t i; 171 uint32_t i; 180 uint32_t i; 192 uint32_t i; 204 uint32_t i = len; [all …]
|
H A D | zend_compile.h | 73 uint32_t var; 99 uint32_t lineno; 147 uint32_t lineno; 168 uint32_t try_op; 182 uint32_t start; 183 uint32_t end; 298 uint32_t flags; 368 uint32_t last; 372 uint32_t T; 733 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag); [all …]
|
H A D | zend_gc.h | 67 uint32_t refcount; 76 uint32_t used; 95 uint32_t gc_runs; 96 uint32_t collected; 99 uint32_t root_buf_length; 100 uint32_t root_buf_peak; 101 uint32_t zval_possible_root; 102 uint32_t zval_buffered; 103 uint32_t zval_remove_from_buffer; 104 uint32_t zval_marked_grey;
|
H A D | zend_ast.h | 156 uint32_t lineno; /* Line number */ 164 uint32_t lineno; 165 uint32_t children; 180 uint32_t start_lineno; 181 uint32_t end_lineno; 182 uint32_t flags; 199 zend_ast_kind kind, uint32_t flags, uint32_t start_lineno, zend_string *doc_comment, 203 ZEND_API zend_ast *zend_ast_create_list(uint32_t init_children, zend_ast_kind kind, ...); 234 static zend_always_inline uint32_t zend_ast_get_num_children(zend_ast *ast) { in zend_ast_get_num_children() 238 static zend_always_inline uint32_t zend_ast_get_lineno(zend_ast *ast) { in zend_ast_get_lineno() [all …]
|
H A D | zend_strtod_int.h | 61 typedef unsigned int uint32_t; typedef 63 typedef unsigned long int uint32_t; typedef 122 #ifndef uint32_t 123 #define uint32_t unsigned __int32 macro
|
H A D | zend_vm.h | 28 … void zend_vm_set_opcode_handler_ex(zend_op* opcode, uint32_t op1_info, uint32_t op2_info, uint32_…
|
H A D | zend_execute.h | 55 ZEND_API void ZEND_FASTCALL zend_check_internal_arg_type(zend_function *zf, uint32_t arg_num, zval … 166 …id zend_vm_init_call_frame(zend_execute_data *call, uint32_t call_info, zend_function *func, uint3… in zend_vm_init_call_frame() 179 …e_data *zend_vm_stack_push_call_frame_ex(uint32_t used_stack, uint32_t call_info, zend_function *f… in zend_vm_stack_push_call_frame_ex() 197 static zend_always_inline uint32_t zend_vm_calc_used_stack(uint32_t num_args, zend_function *func) in zend_vm_calc_used_stack() 199 uint32_t used_stack = ZEND_CALL_FRAME_SLOT + num_args; in zend_vm_calc_used_stack() 207 …ne zend_execute_data *zend_vm_stack_push_call_frame(uint32_t call_info, zend_function *func, uint3… in zend_vm_stack_push_call_frame() 209 uint32_t used_stack = zend_vm_calc_used_stack(num_args, func); in zend_vm_stack_push_call_frame() 215 static zend_always_inline void zend_vm_stack_free_extra_args_ex(uint32_t call_info, zend_execute_da… in zend_vm_stack_free_extra_args_ex() 242 uint32_t num_args = ZEND_CALL_NUM_ARGS(call); in zend_vm_stack_free_args() 305 ZEND_API zval* zend_get_compiled_variable_value(const zend_execute_data *execute_data_ptr, uint32_t… [all …]
|
/PHP-7.1/ext/hash/ |
H A D | php_hash_ripemd.h | 27 uint32_t state[4]; /* state (ABCD) */ 28 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 33 uint32_t state[5]; /* state (ABCD) */ 34 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 39 uint32_t state[8]; /* state (ABCD) */ 40 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 45 uint32_t state[10]; /* state (ABCD) */ 46 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */
|
H A D | php_hash_sha.h | 39 uint32_t state[5]; /* state (ABCD) */ 40 uint32_t count[2]; /* number of bits, modulo 2^64 */ 55 uint32_t state[8]; /* state */ 56 uint32_t count[2]; /* number of bits, modulo 2^64 */ 66 uint32_t state[8]; /* state */ 67 uint32_t count[2]; /* number of bits, modulo 2^64 */
|
H A D | php_hash_fnv.h | 24 #define PHP_FNV1_32_INIT ((uint32_t)0x811c9dc5) 27 #define PHP_FNV_32_PRIME ((uint32_t)0x01000193) 49 uint32_t state; 67 static uint32_t fnv_32_buf(void *buf, size_t len, uint32_t hval, int alternate);
|
H A D | php_hash_md.h | 63 uint32_t state[4]; /* state (ABCD) */ 64 uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 79 uint32_t state[4]; 80 uint32_t count[2];
|
H A D | php_hash_gost.h | 28 uint32_t state[16]; 29 uint32_t count[2]; 32 const uint32_t (*tables)[4][256];
|
H A D | php_hash_joaat.h | 25 uint32_t state; 32 static uint32_t joaat_buf(void *buf, size_t len, uint32_t hval);
|
/PHP-7.1/ext/opcache/ |
H A D | zend_accelerator_hash.h | 50 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-7.1/ext/standard/ |
H A D | crypt_freesec.h | 18 uint32_t saltbits; 19 uint32_t old_salt; 20 uint32_t en_keysl[16], en_keysr[16]; 21 uint32_t de_keysl[16], de_keysr[16]; 22 uint32_t old_rawkey0, old_rawkey1;
|
H A D | crypt_sha256.c | 64 uint32_t H[8]; 66 uint32_t total[2]; 67 uint32_t buflen; 131 uint32_t W[64]; in sha256_process_block() 132 uint32_t a_save = a; in sha256_process_block() 133 uint32_t b_save = b; in sha256_process_block() 134 uint32_t c_save = c; in sha256_process_block() 135 uint32_t d_save = d; in sha256_process_block() 136 uint32_t e_save = e; in sha256_process_block() 137 uint32_t f_save = f; in sha256_process_block() [all …]
|
H A D | crypt_freesec.c | 161 static uint32_t bits32[32] = 181 static uint32_t psbox[4][256]; 218 uint32_t *p, *il, *ir, *fl, *fr; in _crypt_extended_init() 219 uint32_t *bits28, *bits24; in _crypt_extended_init() 357 uint32_t obit, saltbit, saltbits; in setup_salt() 383 (uint32_t)(u_char)key[3] | in des_setkey() 388 (uint32_t)(u_char)key[7] | in des_setkey() 431 uint32_t t0, t1; in des_setkey() 462 do_des(uint32_t l_in, uint32_t r_in, uint32_t *l_out, uint32_t *r_out, in do_des() 589 (uint32_t)(u_char)in[3] | in des_cipher() [all …]
|
H A D | mt_rand.c | 94 #define twist(m,u,v) (m ^ (mixBits(u,v)>>1) ^ ((uint32_t)(-(int32_t)(loBit(v))) & 0x9908b0dfU)) 95 #define twist_php(m,u,v) (m ^ (mixBits(u,v)>>1) ^ ((uint32_t)(-(int32_t)(loBit(u))) & 0x9908b0dfU)) 99 static inline void php_mt_initialize(uint32_t seed, uint32_t *state) in php_mt_initialize() 106 register uint32_t *s = state; in php_mt_initialize() 107 register uint32_t *r = state; in php_mt_initialize() 125 register uint32_t *state = BG(state); in php_mt_reload() 126 register uint32_t *p = state; in php_mt_reload() 150 PHPAPI void php_mt_srand(uint32_t seed) in php_mt_srand() 163 PHPAPI uint32_t php_mt_rand(void) in php_mt_rand() 168 register uint32_t s1; in php_mt_rand()
|
H A D | md5.h | 45 uint32_t lo, hi; 46 uint32_t a, b, c, d; 48 uint32_t block[16];
|
/PHP-7.1/ext/fileinfo/libmagic/ |
H A D | cdf.h | 111 uint32_t d_flags; 115 uint32_t d_size; 138 uint32_t cl_dword; 150 uint32_t si_count; 161 uint32_t sh_len; 166 uint32_t pi_id; 167 uint32_t pi_type; 171 uint32_t _pi_u32; 179 uint32_t s_len; 276 uint32_t ce_num; [all …]
|
/PHP-7.1/ext/opcache/Optimizer/ |
H A D | zend_cfg.h | 45 uint32_t flags; 46 uint32_t start; /* first opcode number */ 47 uint32_t len; /* number of opcodes */ 89 uint32_t *map; 121 …fg(zend_arena **arena, const zend_op_array *op_array, uint32_t build_flags, zend_cfg *cfg, uint32_… 125 int zend_cfg_identify_loops(const zend_op_array *op_array, zend_cfg *cfg, uint32_t *flags);
|
/PHP-7.1/ext/date/lib/ |
H A D | timelib_structs.h | 54 typedef unsigned int uint32_t; typedef 56 typedef unsigned long int uint32_t; typedef 73 # ifndef uint32_t 74 typedef unsigned __int32 uint32_t; typedef 138 typedef uint32_t timelib_ulong; 184 uint32_t ttisgmtcnt; 185 uint32_t ttisstdcnt; 186 uint32_t leapcnt; 187 uint32_t timecnt; 188 uint32_t typecnt; [all …]
|