Home
last modified time | relevance | path

Searched refs:uint8_t (Results 1 – 25 of 166) sorted by relevance

1234567

/PHP-8.3/ext/opcache/jit/libudis86/
H A Dtypes.h135 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 Dextern.h49 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.3/ext/gd/libgd/
H A Dgd_tga.h10 uint8_t identsize; // size of ID field that follows 18 uint8_t header (0 usually)
11uint8_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
16uint8_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 Dgd_webp.c42 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.3/ext/opcache/jit/
H A Dzend_elf.h30 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 Dzend_jit.h96 uint8_t trigger;
97 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 Dzend_jit_gdb.c200 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.3/ext/standard/
H A Dcrypt_freesec.c72 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 …]
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_maketables.c76 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 Dpcre2_serialize.c73 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 Dpcre2_intmodedep.h569 const uint8_t *tables;
620 const uint8_t *tables; /* The character tables */
665 uint8_t flags; /* Various flags */
721 const uint8_t *lcc; /* Points to lower casing table */
722 const uint8_t *fcc; /* Points to case-flipping table */
724 const uint8_t *ctypes; /* Points to table of type maps */
800 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 Dpcre2_auto_possess.c150 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 …]
/PHP-8.3/Zend/
H A Dzend_generators.h90 uint8_t flags;
93 static const uint8_t ZEND_GENERATOR_CURRENTLY_RUNNING = 0x1;
94 static const uint8_t ZEND_GENERATOR_FORCED_CLOSE = 0x2;
95 static const uint8_t ZEND_GENERATOR_AT_FIRST_YIELD = 0x4;
96 static const uint8_t ZEND_GENERATOR_DO_INIT = 0x8;
97 static const uint8_t ZEND_GENERATOR_IN_FIBER = 0x10;
98 static const uint8_t ZEND_GENERATOR_DTOR_VISITED = 0x20;
H A Dzend_vm_opcodes.c439 ZEND_API const char* ZEND_FASTCALL zend_get_opcode_name(uint8_t opcode) { in zend_get_opcode_name()
445 ZEND_API uint32_t ZEND_FASTCALL zend_get_opcode_flags(uint8_t opcode) { in zend_get_opcode_flags()
451 ZEND_API uint8_t zend_get_opcode_id(const char *name, size_t length) { in zend_get_opcode_id()
452 uint8_t opcode; in zend_get_opcode_id()
/PHP-8.3/ext/fileinfo/libmagic/
H A Dder.c137 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()
241 const uint8_t *d = CAST(const uint8_t *, q); in der_data()
268 const uint8_t *b = RCAST(const uint8_t *, ms->search.s); in der_offs()
307 const uint8_t *b = RCAST(const uint8_t *, ms->search.s); in der_cmp()
390 const uint8_t *d = q; in printtag()
415 const uint8_t *q; in printdata()
[all …]
H A Dfile.h178 uint8_t b;
195 uint8_t flag;
206 uint8_t factor;
209 uint8_t reln; /* relation (0=eq, '>'=gt, etc) */
211 uint8_t type; /* comparison type (FILE_*) */
212 uint8_t in_type; /* type of indirection */
295 uint8_t in_op; /* operator for indirection */
296 uint8_t mask_op; /* operator for mask */
298 uint8_t cond; /* conditional type */
300 uint8_t dummy;
[all …]
/PHP-8.3/ext/standard/libavifinfo/
H A Davifinfo.c138 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 Davifinfo.h50 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.3/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h62 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.3/main/streams/
H A Dphp_stream_filter_api.h47 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.3/ext/ffi/tests/
H A Ddeprecations.phpt10 $p1 = FFI::new("uint8_t[2]");
16 FFI::new("uint8_t[2]");
36 $p = FFI::cast("uint8_t[2]", $p1);
41 FFI::cast("uint8_t[2]", $p1);
50 object(FFI\CData:uint8_t[2])#1 (2) {
H A D033.phpt11 $p1 = $ffi->new("uint8_t[2]");
32 object(FFI\CData:uint8_t[2])#%d (2) {
44 object(FFI\CType:uint8_t[2])#%d (0) {
46 object(FFI\CData:uint8_t[2])#%d (2) {
H A Dbug77768.phpt19 typedef unsigned int uint8_t;
35 var_dump(FFI::sizeof($x->new("uint8_t")));
36 var_dump(FFI::sizeof(FFI::cdef()->new("uint8_t")));
H A D022.phpt22 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.3/sapi/fuzzer/
H A Dfuzzer-mbstring.c23 zend_string* convert_encoding(const uint8_t *Data, size_t Size, const mbfl_encoding *FromEncoding, … in convert_encoding()
51 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { in LLVMFuzzerTestOneInput()
52 const uint8_t *Comma1 = memchr(Data, ',', Size); in LLVMFuzzerTestOneInput()
62 const uint8_t *Comma2 = memchr(Data, ',', Size); in LLVMFuzzerTestOneInput()

Completed in 93 milliseconds

1234567