Home
last modified time | relevance | path

Searched refs:uint32_t (Results 1 – 25 of 436) sorted by relevance

12345678910>>...18

/php-src/ext/mysqlnd/
H A Dmysqlnd_portability.h67 #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 Dconfig-win.h41 (((uint32_t) 255L << 24) | \
42 (((uint32_t) (zend_uchar) (A)[2]) << 16) |\
43 (((uint32_t) (zend_uchar) (A)[1]) << 8) | \
44 ((uint32_t) (zend_uchar) (A)[0])) : \
45 (((uint32_t) (zend_uchar) (A)[2]) << 16) |\
46 (((uint32_t) (zend_uchar) (A)[1]) << 8) | \
47 ((uint32_t) (zend_uchar) (A)[0])))
51 #define uint4korr(A) (*((uint32_t *) (A)))
53 (((uint32_t) ((zend_uchar) (A)[1])) << 8) +\
54 (((uint32_t) ((zend_uchar) (A)[2])) << 16) +\
[all …]
/php-src/ext/ffi/tests/
H A D022.phpt21 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-src/ext/pcre/pcre2lib/
H A Dpcre2_config.c100 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 Dpcre2_intmodedep.h567 int (*stack_guard)(uint32_t, void *);
573 uint32_t parens_nest_limit;
574 uint32_t extra_options;
575 uint32_t max_varlookbehind;
591 uint32_t heap_limit;
592 uint32_t match_limit;
593 uint32_t depth_limit;
600 uint32_t glob_separator;
601 uint32_t glob_escape;
690 uint32_t *groupptr;
[all …]
H A Dpcre2_pattern_info.c95 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-src/ext/opcache/jit/ir/
H A Dir_strtab.c12 uint32_t h;
13 uint32_t len;
15 uint32_t next;
22 uint32_t h = 5381; in ir_str_hash()
31 static uint32_t ir_strtab_hash_size(uint32_t size) in ir_strtab_hash_size()
45 uint32_t old_hash_size = (uint32_t)(-(int32_t)strtab->mask); in ir_strtab_resize()
51 uint32_t pos, i; in ir_strtab_resize()
85 uint32_t i; in ir_strtab_grow_buf()
119 uint32_t pos = ((uint32_t*)data)[(int32_t)(h | strtab->mask)]; in ir_strtab_find()
218 uint32_t hash_size = (uint32_t)(-(int32_t)strtab->mask); in ir_strtab_free()
[all …]
H A Dir_private.h79 IR_ALWAYS_INLINE uint32_t ir_rol32(uint32_t op1, uint32_t op2) in ir_rol32()
99 IR_ALWAYS_INLINE uint32_t ir_ror32(uint32_t op1, uint32_t op2) in ir_ror32()
110 IR_ALWAYS_INLINE uint32_t ir_ntz(uint32_t num) in ir_ntz()
152 uint32_t n; in ir_ntzl()
181 uint32_t x; in ir_nlz()
182 uint32_t n; in ir_nlz()
209 uint32_t n; in ir_nlzl()
316 IR_ALWAYS_INLINE uint32_t ir_bitset_len(uint32_t n) in ir_bitset_len()
353 uint32_t i; in ir_bitset_empty()
383 uint32_t i; in ir_bitset_union()
[all …]
H A Dir_patch.c14 static uint32_t _asm_x86_inslen(const uint8_t* p) in _asm_x86_inslen()
60 uint32_t result = 0; in _asm_x86_inslen()
61 uint32_t prefixes = 0; in _asm_x86_inslen()
62 uint32_t x = map_op1[*p]; in _asm_x86_inslen()
183 uint32_t *ins_ptr; in ir_patch_code()
184 uint32_t ins; in ir_patch_code()
187 ins_ptr = (uint32_t*)p; in ir_patch_code()
191 delta = (uint32_t*)from_addr - ins_ptr; in ir_patch_code()
193 delta = (uint32_t*)to_addr - ins_ptr; in ir_patch_code()
208 delta = (uint32_t*)to_addr - ins_ptr; in ir_patch_code()
[all …]
H A Dir_elf.h27 uint32_t version;
31 uint32_t flags;
41 uint32_t name;
42 uint32_t type;
47 uint32_t link;
48 uint32_t info;
70 uint32_t name;
77 uint32_t name;
79 uint32_t size;
H A Dgen_ir_fold_hash.c24 void print_hash(uint32_t *mask, uint32_t count) in print_hash()
26 uint32_t i; in print_hash()
37 static uint32_t hash_shl2(uint32_t mask, uint32_t r1, uint32_t r2) in hash_shl2()
47 static uint32_t hash_rol2(uint32_t mask, uint32_t r1, uint32_t r2) in hash_rol2()
54 int find_hash(uint32_t *mask, uint32_t count) in find_hash()
56 uint32_t hash[MAX_SLOTS]; in find_hash()
57 uint32_t n, r1, r2, i, h; in find_hash()
67 memset(hash, 0, n * sizeof(uint32_t)); in find_hash()
95 memset(hash, 0, n * sizeof(uint32_t)); in find_hash()
248 uint32_t mask[MAX_RULES]; in main()
[all …]
/php-src/Zend/
H A Dzend_attributes.h56 uint32_t flags;
57 uint32_t lineno;
59 uint32_t offset;
60 uint32_t argc;
66 uint32_t flags;
78 ZEND_API zend_string *zend_get_attribute_target_names(uint32_t targets);
86 HashTable **attributes, zend_string *name, uint32_t argc,
87 uint32_t flags, uint32_t offset, uint32_t lineno);
93 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in END_EXTERN_C()
103 …te *zend_add_parameter_attribute(zend_function *func, uint32_t offset, zend_string *name, uint32_t in zend_add_parameter_attribute()
[all …]
H A Dzend_bitset.h127 static inline uint32_t zend_bitset_len(uint32_t n)
154 uint32_t i;
180 uint32_t i;
189 uint32_t i;
198 uint32_t i;
207 uint32_t i;
216 uint32_t i;
225 uint32_t i;
237 uint32_t i;
249 uint32_t i = len;
[all …]
H A Dzend_cpuinfo.c22 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 Dzend_compile.h69 uint32_t var;
70 uint32_t num;
94 uint32_t lineno;
142 uint32_t lineno;
172 uint32_t try_op;
187 uint32_t start;
188 uint32_t end;
402 uint32_t flags;
849 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag);
850 uint32_t zend_add_anonymous_class_modifier(uint32_t flags, uint32_t new_flag);
[all …]
/php-src/ext/hash/murmur/
H A DPMurHash128.h16 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 DPMurHash.h17 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 DPMurHash.c78 #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 …]
/php-src/ext/phar/
H A Dphar_internal.h177 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-src/ext/hash/
H A Dphp_hash_ripemd.h23 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) */
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf32.c262 uint32_t c1 = *p++; in mb_utf32_to_wchar()
263 uint32_t c2 = *p++; in mb_utf32_to_wchar()
264 uint32_t c3 = *p++; in mb_utf32_to_wchar()
265 uint32_t c4 = *p++; in mb_utf32_to_wchar()
291 uint32_t c1 = *p++; in mb_utf32be_to_wchar()
292 uint32_t c2 = *p++; in mb_utf32be_to_wchar()
293 uint32_t c3 = *p++; in mb_utf32be_to_wchar()
294 uint32_t c4 = *p++; in mb_utf32be_to_wchar()
322 uint32_t w = *in++; in mb_wchar_to_utf32be()
340 uint32_t c1 = *p++; in mb_utf32le_to_wchar()
[all …]
/php-src/ext/standard/libavifinfo/
H A Davifinfo.c50 uint32_t value = 0; in AvifInfoInternalReadBigEndian()
149 uint32_t width, height;
176 AvifInfoInternalFeatures* f, uint32_t target_item_id, uint32_t tile_depth) { in AvifInfoInternalGetItemFeatures()
300 uint32_t is_parsable = 1; in AvifInfoInternalParseBox()
450 uint32_t num_read_bytes = 4; in ParseIprp()
469 const uint32_t item_id = in ParseIprp()
474 uint32_t property; in ParseIprp()
485 const uint32_t value = in ParseIprp()
539 const uint32_t from_item_id = in ParseIref()
624 uint32_t num_parsed_boxes = 0; in ParseFtyp()
[all …]
/php-src/ext/standard/
H A Dcrypt_freesec.h10 uint32_t saltbits;
11 uint32_t old_salt;
12 uint32_t en_keysl[16], en_keysr[16];
13 uint32_t de_keysl[16], de_keysr[16];
14 uint32_t old_rawkey0, old_rawkey1;
H A Dcrypt_sha256.c49 uint32_t H[8];
51 uint32_t total[2];
52 uint32_t buflen;
116 uint32_t W[64]; in sha256_process_block()
117 uint32_t a_save = a; in sha256_process_block()
118 uint32_t b_save = b; in sha256_process_block()
119 uint32_t c_save = c; in sha256_process_block()
120 uint32_t d_save = d; in sha256_process_block()
121 uint32_t e_save = e; in sha256_process_block()
122 uint32_t f_save = f; in sha256_process_block()
[all …]
/php-src/ext/fileinfo/libmagic/
H A Dcdf.h107 uint32_t d_flags;
111 uint32_t d_size;
135 uint32_t cl_dword;
147 uint32_t si_count;
158 uint32_t sh_len;
163 uint32_t pi_id;
164 uint32_t pi_type;
168 uint32_t _pi_u32;
176 uint32_t s_len;
273 uint32_t ce_num;
[all …]

Completed in 187 milliseconds

12345678910>>...18