/PHP-8.3/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 | 41 (((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-8.3/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.3/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; 688 uint32_t *groupptr; 711 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.3/Zend/ |
H A D | zend_attributes.h | 56 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); 95 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in END_EXTERN_C() 105 …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 | 127 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 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 | 66 uint32_t var; 67 uint32_t num; 92 uint32_t lineno; 140 uint32_t lineno; 162 uint32_t try_op; 177 uint32_t start; 178 uint32_t end; 391 uint32_t flags; 827 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag); 828 uint32_t zend_add_anonymous_class_modifier(uint32_t flags, uint32_t new_flag); [all …]
|
/PHP-8.3/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.3/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.3/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.3/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.3/ext/standard/ |
H A D | crypt_freesec.h | 10 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 D | crypt_sha256.c | 54 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 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)(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.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_utf32.c | 259 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 D | mbfilter_ucs4.c | 327 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.3/ext/standard/libavifinfo/ |
H A D | avifinfo.c | 50 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.3/ext/fileinfo/libmagic/ |
H A D | cdf.h | 107 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 …]
|