Home
last modified time | relevance | path

Searched refs:uint16_t (Results 1 – 25 of 36) sorted by relevance

12

/PHP-7.3/ext/fileinfo/libmagic/
H A Dcdf.h63 uint16_t h_revision;
64 uint16_t h_version;
65 uint16_t h_byte_order;
93 uint16_t d_name[32];
94 uint16_t d_namelen;
138 uint16_t cl_word[2];
145 uint16_t si_zero;
147 uint16_t si_os;
168 uint16_t _pi_u16;
274 uint16_t ce_namlen;
[all …]
H A Dfile.h160 uint16_t h;
174 uint16_t cont_level; /* level of ">" */
428 uint16_t indir_max;
429 uint16_t name_max;
430 uint16_t elf_shnum_max;
431 uint16_t elf_phnum_max;
432 uint16_t elf_notes_max;
433 uint16_t regex_max;
473 uint16_t *, uint16_t *, int, int);
H A Dmagic.c365 ms->indir_max = (uint16_t)*(const size_t *)val; in magic_setparam()
368 ms->name_max = (uint16_t)*(const size_t *)val; in magic_setparam()
371 ms->elf_phnum_max = (uint16_t)*(const size_t *)val; in magic_setparam()
374 ms->elf_shnum_max = (uint16_t)*(const size_t *)val; in magic_setparam()
377 ms->elf_notes_max = (uint16_t)*(const size_t *)val; in magic_setparam()
380 ms->elf_notes_max = (uint16_t)*(const size_t *)val; in magic_setparam()
H A Dcdf.c85 #define CDF_TOLE2(x) ((uint16_t)(NEED_SWAP ? _cdf_tole2(x) : (uint16_t)(x)))
87 CDF_TOLE2(CAST(uint16_t, x)) : \
100 static uint16_t
101 _cdf_tole2(uint16_t sv) in _cdf_tole2()
103 uint16_t rv; in _cdf_tole2()
164 uint16_t
165 cdf_tole2(uint16_t sv) in cdf_tole2()
1135 uint16_t reclen; in cdf_unpack_catalog()
1136 const uint16_t *np; in cdf_unpack_catalog()
1159 uint16_t rlen; in cdf_unpack_catalog()
[all …]
H A Dsoftmagic.c51 const struct buffer *, size_t, int, int, int, uint16_t *,
52 uint16_t *, int *, int *, int *);
55 size_t, unsigned int, int, int, int, uint16_t *,
56 uint16_t *, int *, int *, int *);
91 #define BE16(p) (((uint16_t)(p)->hs[0]<<8)|((uint16_t)(p)->hs[1]))
92 #define LE16(p) (((uint16_t)(p)->hs[1]<<8)|((uint16_t)(p)->hs[0]))
102 uint16_t *indir_count, uint16_t *name_count, int mode, int text) in file_softmagic()
106 uint16_t nc, ic; in file_softmagic()
177 int flip, uint16_t *indir_count, uint16_t *name_count, in match()
1023 DO_CVT(h, (uint16_t)); in cvt_16()
[all …]
/PHP-7.3/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h72 uint16_t server_status;
108 uint16_t server_status;
109 uint16_t warning_count;
138 uint16_t server_status;
139 uint16_t warning_count;
161 uint16_t warning_count;
162 uint16_t server_status;
185 uint16_t warning_count;
186 uint16_t server_status;
218 uint16_t warning_count;
[all …]
H A Dmysqlnd_portability.h141 #define bit_uint2korr(A) ((uint16_t) (((uint16_t) (((unsigned char*) (A))[1])) +\
142 ((uint16_t) (((unsigned char*) (A))[0]) << 8)))
199 #define uint2korr(A) (*((uint16_t *) (A)))
209 #define int2store(T,A) *((uint16_t*) (T))= (uint16_t) (A)
265 #define uint2korr(A) (uint16_t) (((uint16_t) ((zend_uchar) (A)[0])) +\
266 ((uint16_t) ((zend_uchar) (A)[1]) << 8))
H A Dconfig-win.h76 #define uint2korr(A) (*((uint16_t *) (A)))
86 #define int2store(T,A) *((uint16_t*) (T))= (uint16_t) (A)
/PHP-7.3/ext/pcre/pcre2lib/
H A Dpcre2_ucd.c37 const uint16_t PRIV(ucd_stage1)[] = {0};
38 const uint16_t PRIV(ucd_stage2)[] = {0};
964 const uint16_t PRIV(ucd_stage1)[] = { /* 17408 bytes */
1511 const uint16_t PRIV(ucd_stage2)[] = { /* 68352 bytes, block = 128 */
H A Dpcre2_intmodedep.h572 uint16_t bsr_convention;
573 uint16_t newline_convention;
633 uint16_t bsr_convention; /* What \R matches */
634 uint16_t newline_convention; /* What is a newline? */
660 uint16_t oveccount; /* Number of pairs */
706 uint16_t length; /* Length of the name */
707 uint16_t isdup; /* TRUE if a duplicate */
728 uint16_t name_entry_size; /* Size of each entry */
859 uint16_t partial; /* PARTIAL options */
860 uint16_t bsr_convention; /* \R interpretation */
[all …]
H A Dpcre2_substring.c483 uint16_t bot = 0; in pcre2_substring_nametable_scan()
484 uint16_t top = code->name_count; in pcre2_substring_nametable_scan()
485 uint16_t entrysize = code->name_entry_size; in pcre2_substring_nametable_scan()
490 uint16_t mid = (top + bot) / 2; in pcre2_substring_nametable_scan()
H A Dpcre2_internal.h1726 uint16_t number; /* Capture number */
1727 uint16_t flag; /* Set TRUE if recursive back ref */
1728 uint16_t assert_depth; /* Assertion depth when opened */
1737 uint16_t name_offset;
1738 uint16_t type;
1739 uint16_t value;
1854 extern const uint16_t PRIV(ucd_stage1)[];
1855 extern const uint16_t PRIV(ucd_stage2)[];
H A Dpcre2_compile.c751 uint16_t length;
752 uint16_t type;
2283 uint16_t nest_depth;
2284 uint16_t reset_group;
2285 uint16_t max_group;
2286 uint16_t flags;
2336 uint16_t nest_depth = 0; in parse_regex()
2856 uint16_t ptype = 0, pdata = 0; in parse_regex()
3386 uint16_t ptype = 0, pdata = 0; in parse_regex()
3590 top_nest->max_group = (uint16_t)cb->bracount; in parse_regex()
[all …]
/PHP-7.3/main/
H A Dphp_stdint.h121 typedef uint16 uint16_t
123 typedef u_int16_t uint16_t;
125 typedef unsigned short uint16_t;
/PHP-7.3/ext/mysqli/
H A Dmysqli_libmysql.h71 #define bit_uint2korr(A) ((uint16_t) (((uint16_t) (((unsigned char*) (A))[1])) +\
72 ((uint16_t) (((unsigned char*) (A))[0]) << 8)))
/PHP-7.3/win32/
H A Dphp_stdint.h92 typedef unsigned __int16 uint16_t; typedef
104 typedef uint16_t uint_least16_t;
114 typedef uint16_t uint_fast16_t;
H A Dreaddir.h31 uint16_t offset; /* offset into directory */
/PHP-7.3/sapi/litespeed/
H A Dlsapidef.h166 uint16_t m_headerLen[H_TRANSFER_ENCODING+1];
/PHP-7.3/ext/zip/lib/
H A Dzipconf.h74 typedef uint16_t zip_uint16_t;
/PHP-7.3/Zend/
H A Dzend_ast.h154 typedef uint16_t zend_ast_kind;
155 typedef uint16_t zend_ast_attr;
H A Dzend_virtual_cwd.h190 uint16_t path_len;
191 uint16_t realpath_len;
H A Dzend_ini.h41 uint16_t name_length;
/PHP-7.3/ext/standard/
H A Dbrowscap.c41 uint16_t contains_start[BROWSCAP_NUM_CONTAINS];
107 uint16_t *contains_start, uint8_t *contains_len) { in browscap_compute_contains()
120 *contains_start = (uint16_t)i; in browscap_compute_contains()
/PHP-7.3/ext/phar/
H A Dzip.c21 #define PHAR_GET_16(var) ((uint16_t)((((uint16_t)var[0]) & 0xff) | \
22 (((uint16_t)var[1]) & 0xff) << 8))
40 # define PHAR_SET_16(var, value) phar_write_16(var, (uint16_t) (value));
42 static int phar_zip_process_extra(php_stream *fp, phar_entry_info *entry, uint16_t len) /* {{{ */ in phar_zip_process_extra()
146 uint16_t ctime, cdate; in phar_zip_u2d_time()
171 uint16_t i; in phar_parse_zipfile()
/PHP-7.3/ext/sockets/
H A Dconversions.c406 uint16_t ival; in from_zval_write_net_uint16()
419 ival = htons((uint16_t)lval); in from_zval_write_net_uint16()
505 uint16_t ival; in to_zval_read_net_uint16()

Completed in 130 milliseconds

12