Home
last modified time | relevance | path

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

12345678910>>...17

/PHP-8.2/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.h67 (((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.2/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-8.2/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;
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 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-8.2/Zend/
H A Dzend_attributes.h55 uint32_t flags;
56 uint32_t lineno;
58 uint32_t offset;
59 uint32_t argc;
65 uint32_t flags;
77 ZEND_API zend_string *zend_get_attribute_target_names(uint32_t targets);
85 HashTable **attributes, zend_string *name, uint32_t argc,
86 uint32_t flags, uint32_t offset, uint32_t lineno);
94 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in END_EXTERN_C()
104 …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.h120 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 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.h68 uint32_t var;
69 uint32_t num;
94 uint32_t lineno;
142 uint32_t lineno;
160 uint32_t opline_num;
164 uint32_t try_op;
179 uint32_t start;
180 uint32_t end;
388 uint32_t flags;
812 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag);
[all …]
/PHP-8.2/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 …]
H A DPMurHash128.c72 #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.2/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-8.2/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) */
H A Dphp_hash_murmur.h21 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.2/ext/opcache/jit/
H A Dzend_elf.h39 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.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_utf32.c259 uint32_t c1 = *p++; in mb_utf32_to_wchar()
260 uint32_t c2 = *p++; in mb_utf32_to_wchar()
261 uint32_t c3 = *p++; in mb_utf32_to_wchar()
262 uint32_t c4 = *p++; in mb_utf32_to_wchar()
288 uint32_t c1 = *p++; in mb_utf32be_to_wchar()
289 uint32_t c2 = *p++; in mb_utf32be_to_wchar()
290 uint32_t c3 = *p++; in mb_utf32be_to_wchar()
291 uint32_t c4 = *p++; in mb_utf32be_to_wchar()
319 uint32_t w = *in++; in mb_wchar_to_utf32be()
337 uint32_t c1 = *p++; in mb_utf32le_to_wchar()
[all …]
H A Dmbfilter_ucs4.c327 uint32_t c1 = *p++; in mb_ucs4_to_wchar()
328 uint32_t c2 = *p++; in mb_ucs4_to_wchar()
329 uint32_t c3 = *p++; in mb_ucs4_to_wchar()
330 uint32_t c4 = *p++; in mb_ucs4_to_wchar()
356 uint32_t c1 = *p++; in mb_ucs4be_to_wchar()
357 uint32_t c2 = *p++; in mb_ucs4be_to_wchar()
358 uint32_t c3 = *p++; in mb_ucs4be_to_wchar()
359 uint32_t c4 = *p++; in mb_ucs4be_to_wchar()
382 uint32_t w = *in++; in mb_wchar_to_ucs4be()
400 uint32_t c1 = *p++; in mb_ucs4le_to_wchar()
[all …]
/PHP-8.2/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.c54 uint32_t H[8];
56 uint32_t total[2];
57 uint32_t buflen;
121 uint32_t W[64]; in sha256_process_block()
122 uint32_t a_save = a; in sha256_process_block()
123 uint32_t b_save = b; in sha256_process_block()
124 uint32_t c_save = c; in sha256_process_block()
125 uint32_t d_save = d; in sha256_process_block()
126 uint32_t e_save = e; in sha256_process_block()
127 uint32_t f_save = f; in sha256_process_block()
[all …]
H A Dcrypt_freesec.c157 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)(uint8_t)key[3] | in des_setkey()
382 (uint32_t)(uint8_t)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)(uint8_t)in[3] | in des_cipher()
[all …]
/PHP-8.2/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-8.2/ext/fileinfo/libmagic/
H A Dcdf.h109 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 …]

Completed in 94 milliseconds

12345678910>>...17