/PHP-8.2/ext/opcache/jit/libudis86/ |
H A D | types.h | 135 uint8_t ubyte; 208 uint8_t vendor; 211 uint8_t error; 212 uint8_t _rex; 213 uint8_t pfx_rex; 214 uint8_t pfx_seg; 224 uint8_t br_far; 227 uint8_t modrm; 229 uint8_t vex_op; 230 uint8_t vex_b1; [all …]
|
H A D | extern.h | 49 extern LIBUDIS86_DLLEXTERN void ud_set_mode(struct ud*, uint8_t); 55 extern LIBUDIS86_DLLEXTERN void ud_set_input_buffer(struct ud*, const uint8_t*, size_t); 79 extern LIBUDIS86_DLLEXTERN const uint8_t* ud_insn_ptr(const struct ud* u);
|
/PHP-8.2/ext/gd/libgd/ |
H A D | gd_tga.h | 10 uint8_t identsize; // size of ID field that follows 18 uint8_t header (0 usually) 11 …uint8_t colormaptype; // type of colour map 0=none, 1=has palette [IGNORED] Adrian requested … 12 uint8_t imagetype; // type of image 0=none,1=indexed,2=rgb,3=grey,+8=rle packed 16 …uint8_t colormapbits; // number of bits per palette entry 15,16,24,32 [IGNORED] Adrian request… 22 uint8_t bits; // image bits per pixel 8,16,24,32 23 uint8_t alphabits; // alpha bits (low 4bits of header 17) 24 uint8_t fliph; // horizontal or vertical 25 uint8_t flipv; // flip
|
H A D | gd_webp.c | 42 uint8_t *filedata = NULL; in gdImageCreateFromWebpCtx() 43 uint8_t *argb = NULL; in gdImageCreateFromWebpCtx() 47 uint8_t *p; in gdImageCreateFromWebpCtx() 90 register uint8_t a = gdAlphaMax - (*(p++) >> 1); in gdImageCreateFromWebpCtx() 91 register uint8_t r = *(p++); in gdImageCreateFromWebpCtx() 92 register uint8_t g = *(p++); in gdImageCreateFromWebpCtx() 93 register uint8_t b = *(p++); in gdImageCreateFromWebpCtx() 106 uint8_t *argb; in gdImageWebpCtx() 108 uint8_t *p; in gdImageWebpCtx() 109 uint8_t *out; in gdImageWebpCtx() [all …]
|
/PHP-8.2/ext/opcache/jit/ |
H A D | zend_elf.h | 30 uint8_t emagic[4]; 31 uint8_t eclass; 32 uint8_t eendian; 33 uint8_t eversion; 34 uint8_t eosabi; 35 uint8_t eabiversion; 36 uint8_t epad[7]; 83 uint8_t info; 84 uint8_t other; 92 uint8_t info; [all …]
|
H A D | zend_jit.h | 97 uint8_t trigger; 98 uint8_t opt_level; 128 uint8_t bad_root_cache_count[ZEND_JIT_TRACE_BAD_ROOT_SLOTS]; 129 uint8_t bad_root_cache_stop[ZEND_JIT_TRACE_BAD_ROOT_SLOTS]; 132 uint8_t *exit_counters; 180 uint8_t flags,
|
H A D | zend_jit_gdb.c | 200 uint8_t *p = ctx->p; in zend_gdbjit_strz() 203 *p++ = (uint8_t)*str; in zend_gdbjit_strz() 212 uint8_t *p = ctx->p; in zend_gdbjit_uleb128() 215 *p++ = (uint8_t)v; in zend_gdbjit_uleb128() 222 uint8_t *p = ctx->p; in zend_gdbjit_sleb128() 225 *p++ = (uint8_t)(v & 0x7f); in zend_gdbjit_sleb128() 309 uint8_t *p = ctx->p; in zend_gdbjit_ehframe() 310 uint8_t *framep = p; in zend_gdbjit_ehframe() 365 uint8_t *p = ctx->p; in zend_gdbjit_debuginfo() 384 uint8_t *p = ctx->p; in zend_gdbjit_debugabbrev() [all …]
|
/PHP-8.2/ext/standard/ |
H A D | crypt_freesec.c | 72 static const uint8_t IP[64] = { 214 uint8_t inv_key_perm[64]; in _crypt_extended_init() 215 uint8_t inv_comp_perm[56]; in _crypt_extended_init() 217 uint8_t u_sbox[8][64]; in _crypt_extended_init() 218 uint8_t un_pbox[32]; in _crypt_extended_init() 377 (uint32_t)(uint8_t)key[3] | in des_setkey() 583 (uint32_t)(uint8_t)in[3] | in des_cipher() 588 (uint32_t)(uint8_t)in[7] | in des_cipher() 613 uint8_t *p, *q; in _crypt_extended_r() 622 q = (uint8_t *) keybuf; in _crypt_extended_r() [all …]
|
H A D | base64.c | 76 const uint8_t shift_LUT_[32] = {'a' - 26, '0' - 52, '0' - 52, '0' - 52, in neon_base64_encode() 88 const uint8x16x3_t x = vld3q_u8((const uint8_t *)(in)); in neon_base64_encode() 112 vst4q_u8((uint8_t *)out, result); in neon_base64_encode() 179 const uint8_t shiftLUT_[32] = { in neon_base64_decode() 180 0, 0, 19, 4, (uint8_t)-65, (uint8_t)-65, (uint8_t)-71, (uint8_t)-71, in neon_base64_decode() 182 0, 0, 19, 4, (uint8_t)-65, (uint8_t)-65, (uint8_t)-71, (uint8_t)-71, in neon_base64_decode() 184 const uint8_t maskLUT_[32] = { in neon_base64_decode() 199 const uint8_t bitposLUT_[32] = { in neon_base64_decode() 222 union {uint8_t mem[16]; uint64_t dw[2]; } error; in neon_base64_decode()
|
/PHP-8.2/ext/pcre/pcre2lib/ |
H A D | pcre2_maketables.c | 76 static const uint8_t *maketables(void) 78 uint8_t *yield = (uint8_t *)malloc(TABLES_LENGTH); 81 PCRE2_EXP_DEFN const uint8_t * PCRE2_CALL_CONVENTION 84 uint8_t *yield = (uint8_t *)((gcontext != NULL)? 90 uint8_t *p; 154 pcre2_maketables_free(pcre2_general_context *gcontext, const uint8_t *tables)
|
H A D | pcre2_serialize.c | 73 uint8_t **serialized_bytes, PCRE2_SIZE *serialized_size, in pcre2_serialize_encode() 76 uint8_t *bytes; in pcre2_serialize_encode() 77 uint8_t *dst_bytes; in pcre2_serialize_encode() 81 const uint8_t *tables; in pcre2_serialize_encode() 164 const uint8_t *bytes, pcre2_general_context *gcontext) in pcre2_serialize_decode() 170 const uint8_t *src_bytes; in pcre2_serialize_decode() 172 uint8_t *tables; in pcre2_serialize_decode() 230 memcpy(((uint8_t *)dst_re) + sizeof(pcre2_memctl), in pcre2_serialize_decode() 259 pcre2_serialize_get_number_of_codes(const uint8_t *bytes) in pcre2_serialize_get_number_of_codes() 277 pcre2_serialize_free(uint8_t *bytes) in pcre2_serialize_free()
|
H A D | pcre2_intmodedep.h | 569 const uint8_t *tables; 620 const uint8_t *tables; /* The character tables */ 661 uint8_t flags; /* Various flags */ 717 const uint8_t *lcc; /* Points to lower casing table */ 718 const uint8_t *fcc; /* Points to case-flipping table */ 720 const uint8_t *ctypes; /* Points to table of type maps */ 796 uint8_t op; /* Processing opcode */ 868 const uint8_t *lcc; /* Points to lower casing table */ 869 const uint8_t *fcc; /* Points to case-flipping table */ 870 const uint8_t *ctypes; /* Points to table of type maps */ [all …]
|
H A D | pcre2_auto_possess.c | 150 static const uint8_t catposstab[7][30] = { 172 static const uint8_t posspropstab[3][4] = { 548 const uint8_t *class_bitset; in compare_opcodes() 549 const uint8_t *set1, *set2, *set_end; in compare_opcodes() 750 set1 = (uint8_t *)(code - list[2]); in compare_opcodes() 759 set2 = (uint8_t *) in compare_opcodes() 774 set2 = (uint8_t *)(xclass_flags + 1); in compare_opcodes() 782 set2 = (uint8_t *)(cb->cbits + cbit_digit); in compare_opcodes() 796 set2 = (uint8_t *)(cb->cbits + cbit_word); in compare_opcodes() 848 const uint8_t *p; in compare_opcodes() [all …]
|
H A D | pcre2_chartables.c | 34 const uint8_t PRIV(default_tables)[] = {
|
/PHP-8.2/ext/fileinfo/libmagic/ |
H A D | der.c | 137 static uint8_t 138 getclass(uint8_t c) in getclass() 143 static uint8_t 144 gettype(uint8_t c) in gettype() 186 uint8_t digits, i; in getlength() 240 const uint8_t *d = CAST(const uint8_t *, q); in der_data() 267 const uint8_t *b = RCAST(const uint8_t *, ms->search.s); in der_offs() 305 const uint8_t *b = RCAST(const uint8_t *, ms->search.s); in der_cmp() 378 const uint8_t *d = q; in printtag() 403 const uint8_t *q; in printdata() [all …]
|
H A D | file.h | 175 uint8_t b; 192 uint8_t flag; 203 uint8_t factor; 206 uint8_t reln; /* relation (0=eq, '>'=gt, etc) */ 208 uint8_t type; /* comparison type (FILE_*) */ 209 uint8_t in_type; /* type of indirection */ 282 uint8_t in_op; /* operator for indirection */ 283 uint8_t mask_op; /* operator for mask */ 285 uint8_t cond; /* conditional type */ 287 uint8_t dummy; [all …]
|
/PHP-8.2/ext/standard/libavifinfo/ |
H A D | avifinfo.c | 138 uint8_t tile_item_id; 139 uint8_t parent_item_id; 143 uint8_t property_index; 144 uint8_t item_id; 148 uint8_t property_index; 153 uint8_t property_index; 164 uint8_t num_tiles; 166 uint8_t num_props; 168 uint8_t num_dim_props; 255 const uint8_t* data; in AvifInfoInternalParseBox() [all …]
|
H A D | avifinfo.h | 50 AvifInfoStatus AvifInfoIdentify(const uint8_t* data, size_t data_size); 56 AvifInfoStatus AvifInfoGetFeatures(const uint8_t* data, size_t data_size, 69 typedef const uint8_t* (*read_stream_t)(void* stream, size_t num_bytes);
|
/PHP-8.2/ext/mysqlnd/ |
H A D | mysqlnd_wireprotocol.h | 62 uint8_t protocol_version; 69 uint8_t charset_no; 91 uint8_t charset_no; 103 uint8_t response_code; 133 uint8_t field_count; /* always 0x0 */ 158 uint8_t field_count; /* 0xFE */ 282 uint8_t response_code; 283 uint8_t result; 284 uint8_t request;
|
/PHP-8.2/main/streams/ |
H A D | php_stream_filter_api.h | 47 uint8_t own_buf; 48 uint8_t is_persistent; 66 …stream_bucket_new(php_stream *stream, char *buf, size_t buflen, uint8_t own_buf, uint8_t buf_persi… 130 …p_stream_filter_alloc(const php_stream_filter_ops *fops, void *abstract, uint8_t persistent STREAM… 141 …php_stream_filter *(*create_filter)(const char *filtername, zval *filterparams, uint8_t persistent… 148 …m_filter *php_stream_filter_create(const char *filtername, zval *filterparams, uint8_t persistent);
|
/PHP-8.2/ext/ffi/tests/ |
H A D | 033.phpt | 9 $p1 = FFI::new("uint8_t[2]"); 30 object(FFI\CData:uint8_t[2])#%d (2) { 42 object(FFI\CType:uint8_t[2])#%d (0) { 44 object(FFI\CData:uint8_t[2])#%d (2) {
|
H A D | bug77768.phpt | 19 typedef unsigned int uint8_t; 35 var_dump(FFI::sizeof($x->new("uint8_t"))); 36 var_dump(FFI::sizeof(FFI::new("uint8_t")));
|
H A D | 022.phpt | 22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}"); 29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]"); 36 test_align(1, "union {char a; uint8_t b; uint8_t c;}");
|
/PHP-8.2/sapi/fuzzer/ |
H A D | fuzzer-mbstring.c | 23 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { in LLVMFuzzerTestOneInput() 24 const uint8_t *Comma1 = memchr(Data, ',', Size); in LLVMFuzzerTestOneInput() 34 const uint8_t *Comma2 = memchr(Data, ',', Size); in LLVMFuzzerTestOneInput()
|
H A D | fuzzer-unserializehash.c | 30 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t FullSize) { in LLVMFuzzerTestOneInput() 31 const uint8_t *Start = memchr(Data, '|', FullSize); in LLVMFuzzerTestOneInput()
|