Home
last modified time | relevance | path

Searched refs:uint32_t (Results 101 – 125 of 338) sorted by relevance

12345678910>>...14

/PHP-8.0/Zend/
H A Dzend_objects_API.h47 uint32_t top;
48 uint32_t size;
54 ZEND_API void ZEND_FASTCALL zend_objects_store_init(zend_objects_store *objects, uint32_t init_size…
H A Dzend_objects_API.c27 ZEND_API void ZEND_FASTCALL zend_objects_store_init(zend_objects_store *objects, uint32_t init_size) in zend_objects_store_init()
46 uint32_t i; in zend_objects_store_call_destructors()
129 uint32_t new_size = 2 * EG(objects_store).size; in zend_objects_store_put_cold()
184 uint32_t handle = object->handle; in zend_objects_store_del()
H A Dzend_hash.h285 ((((uint32_t)(size)) <= HT_MIN_SIZE) ? \
956 uint32_t _idx = __ht->nNumUsed; \
976 uint32_t i = HT_HASH(__ht, nIndex); \
1193 uint32_t idx = ht->nNumUsed++; in _zend_hash_append_ex()
1194 uint32_t nIndex; in _zend_hash_append_ex()
1205 nIndex = (uint32_t)p->h | ht->nTableMask; in _zend_hash_append_ex()
1219 uint32_t idx = ht->nNumUsed++; in _zend_hash_append_ptr_ex()
1220 uint32_t nIndex; in _zend_hash_append_ptr_ex()
1231 nIndex = (uint32_t)p->h | ht->nTableMask; in _zend_hash_append_ptr_ex()
1245 uint32_t idx = ht->nNumUsed++; in _zend_hash_append_ind()
[all …]
H A Dzend_ast.c154 uint32_t lineno; in zend_ast_create_1()
173 uint32_t lineno; in zend_ast_create_2()
195 uint32_t lineno; in zend_ast_create_3()
407 uint32_t i; in zend_ast_create_list()
692 uint32_t i; in zend_ast_evaluate()
771 uint32_t i; in zend_ast_tree_size()
810 uint32_t i; in zend_ast_tree_copy()
875 uint32_t i; in zend_ast_destroy()
912 uint32_t i; in zend_ast_apply()
1242 uint32_t i; in zend_ast_export_if_stmt()
[all …]
H A Dzend_execute.c964 uint32_t type_mask; in zend_check_type_slow()
1089 uint32_t i; in zend_verify_internal_arg_types()
1411 uint32_t var; in zend_wrong_string_offset()
3172 uint32_t type_mask; in i_zend_verify_type_assignable_zval()
3581 uint32_t count; in zend_copy_extra_args()
3582 uint32_t type_flags = 0; in zend_copy_extra_args()
3620 static zend_always_inline void zend_init_cvs(uint32_t first, uint32_t last EXECUTE_DATA_DC) in zend_init_cvs()
3623 uint32_t count = last - first; in zend_init_cvs()
3849 uint32_t num_args; in zend_unfinished_calls_gc()
4283 uint32_t call_info; in zend_init_dynamic_call_object()
[all …]
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_extuni.c60 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV()
92 PRIV(extuni)(uint32_t c, PCRE2_SPTR eptr, PCRE2_SPTR start_subject, in PRIV()
H A Dpcre2_substitute.c83 uint32_t nestlevel = 0; in find_text_end()
119 uint32_t ch; in find_text_end()
229 uint32_t ovector_count; in pcre2_substitute()
230 uint32_t goptions = 0; in pcre2_substitute()
231 uint32_t suboptions; in pcre2_substitute()
360 uint32_t ptrstackptr = 0; in pcre2_substitute()
486 uint32_t ch; in pcre2_substitute()
517 uint32_t special = 0; in pcre2_substitute()
679 uint32_t ng = GET2(entry, 0); in pcre2_substitute()
764 uint32_t type = UCD_CHARTYPE(ch); in pcre2_substitute()
[all …]
H A Dpcre2_match_data.c57 pcre2_match_data_create(uint32_t oveccount, pcre2_general_context *gcontext) in pcre2_match_data_create()
135 PCRE2_EXP_DEFN uint32_t PCRE2_CALL_CONVENTION
H A Dpcre2_internal.h1829 uint32_t magic;
1830 uint32_t version;
1831 uint32_t config;
1902 extern const uint32_t PRIV(hspace_list)[];
1903 extern const uint32_t PRIV(vspace_list)[];
1913 extern const uint32_t PRIV(ucp_gbtable)[];
1914 extern const uint32_t PRIV(ucp_gentype)[];
1969 int *, uint32_t, uint32_t, BOOL, compile_block *);
1974 uint32_t *, BOOL);
1980 extern unsigned int _pcre2_ord2utf(uint32_t, PCRE2_UCHAR *);
[all …]
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_dump.c81 static void zend_dump_class_fetch_type(uint32_t fetch_type) in zend_dump_class_fetch_type()
118 if (op.num != (uint32_t)-1) { in zend_dump_unused_op()
171 static void zend_dump_type_info(uint32_t info, zend_class_entry *ce, int is_instanceof, uint32_t du… in zend_dump_type_info()
411 uint32_t flags = zend_get_opcode_flags(opline->opcode); in zend_dump_op()
412 uint32_t n = 0; in zend_dump_op()
571 uint32_t obj_flags = opline->extended_value & ZEND_FETCH_OBJ_FLAGS; in zend_dump_op()
604 uint32_t op1_flags = ZEND_VM_OP1_FLAGS(flags); in zend_dump_op()
665 uint32_t op2_flags = ZEND_VM_OP2_FLAGS(flags); in zend_dump_op()
723 len = fprintf(stderr, "%04u", (uint32_t)(opline - op_array->opcodes)); in zend_dump_op_line()
890 uint32_t func_flags = 0; in zend_dump_op_array()
[all …]
H A Dzend_ssa.h52 uint32_t type_mask; /* Type mask to intersect with */
123 uint32_t type; /* inferred type (see zend_inference.h) */
148 …rena **arena, const zend_script *script, const zend_op_array *op_array, uint32_t build_flags, zend…
149 int zend_ssa_rename_op(const zend_op_array *op_array, const zend_op *opline, uint32_t k, uint32_t b…
319 uint32_t _end = _block->start + _block->len; \
/PHP-8.0/ext/fileinfo/libmagic/
H A Dfile.h168 uint32_t l;
315 uint32_t lineno; /* line number in magic file */
320 uint32_t _count; /* repeat/line count */
321 uint32_t _flags; /* modifier flags */
382 uint32_t nmagic; /* number of entries in array */
419 uint32_t offset; /* a copy of m->offset while we */
421 uint32_t eoffset; /* offset from end of file */
530 public zend_string* convert_libmagic_pattern(const char *val, size_t len, uint32_t options);
535 uint32_t offset;
H A Dapprentice.c113 uint32_t count;
114 uint32_t max;
149 private uint32_t swap4(uint32_t);
1229 private uint32_t
1265 uint32_t i; in set_last_default()
1312 uint32_t i; in magic_entry_free()
1324 uint32_t i, j; in apprentice_load()
3024 uint32_t *ptr; in apprentice_map()
3175 uint32_t i; in apprentice_compile()
3276 uint32_t i;
[all …]
/PHP-8.0/ext/session/
H A Dmod_mm.c43 uint32_t hv; /* hash value of key */
54 uint32_t hash_max;
55 uint32_t hash_cnt;
67 static inline uint32_t ps_sd_hash(const char *data, int len) in ps_sd_hash()
69 uint32_t h; in ps_sd_hash()
82 uint32_t nmax; in hash_split()
111 uint32_t hv, slot; in ps_sd_new()
152 uint32_t slot; in ps_sd_destroy()
177 uint32_t hv, slot; in ps_sd_lookup()
/PHP-8.0/ext/intl/msgformat/
H A Dmsgformat_data.c81 int msgformat_fix_quotes(UChar **spattern, uint32_t *spattern_len, UErrorCode *ec) in msgformat_fix_quotes()
85 uint32_t npattern_len; in msgformat_fix_quotes()
/PHP-8.0/ext/intl/collator/
H A Dcollator_sort.c339 uint32_t sortKeyBufSize = DEF_SORT_KEYS_BUF_SIZE; /* buffer size */ in PHP_FUNCTION()
341uint32_t sortKeyLen = 0; /* the length of currently processing… in PHP_FUNCTION()
342 uint32_t bufLeft = 0; in PHP_FUNCTION()
343 uint32_t bufIncrement = 0; in PHP_FUNCTION()
346 uint32_t sortKeyIndxBufSize = DEF_SORT_KEYS_INDX_BUF_SIZE; in PHP_FUNCTION()
347 uint32_t sortKeyIndxSize = sizeof( collator_sort_key_index_t ); in PHP_FUNCTION()
349 uint32_t sortKeyCount = 0; in PHP_FUNCTION()
350 uint32_t j = 0; in PHP_FUNCTION()
/PHP-8.0/ext/opcache/jit/
H A Dzend_jit_x86.h85 uint32_t r[8];
121 typedef uint32_t zend_regset;
192 uint32_t __inline __zend_jit_ctz( uint32_t value ) { in __zend_jit_ctz()
199 uint32_t __inline __zend_jit_clz(uint32_t value) { in __zend_jit_clz()
248 #define Z_OFFSET(addr) ((uint32_t)((addr)>>_ZEND_ADDR_OFFSET_SHIFT))
/PHP-8.0/ext/opcache/
H A Dzend_persist.h25 uint32_t zend_accel_script_persist_calc(zend_persistent_script *script, const char *key, unsigned i…
/PHP-8.0/ext/date/lib/
H A Dparse_tz.c57 static inline uint32_t timelib_conv_int_unsigned(uint32_t value) in timelib_conv_int_unsigned()
67 static inline uint32_t timelib_conv_int_unsigned(uint32_t value) in timelib_conv_int_unsigned()
95 uint32_t version; in read_php_preamble()
118 uint32_t version; in read_tzif_preamble()
164 uint32_t buffer[6]; in read_32bit_header()
196 uint32_t i; in read_64bit_transitions()
366 uint32_t buffer[3]; in read_location()
367 uint32_t comments_len; in read_location()
394 uint32_t i; in timelib_dump_tzinfo()
496 uint32_t buffer[6]; in read_64bit_header()
[all …]
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_atomic.h24 typedef uint32_t atomic_uint_t;
83 typedef uint32_t atomic_uint_t;
112 typedef uint32_t atomic_uint_t;
/PHP-8.0/ext/pcre/
H A Dphp_pcre.c48 uint32_t preg_options;
49 uint32_t capture_count;
50 uint32_t name_count;
51 uint32_t compile_options;
52 uint32_t refcount;
385 uint32_t flag = 0; in PHP_MINFO_FUNCTION()
544 uint32_t i; in free_subpats_table()
610 uint32_t coptions = 0; in pcre_get_compiled_regex_cache_ex()
621 uint32_t poptions = 0; in pcre_get_compiled_regex_cache_ex()
930 … pcre_get_compiled_regex_ex(zend_string *regex, uint32_t *capture_count, uint32_t *preg_options, u… in pcre_get_compiled_regex_ex()
[all …]
/PHP-8.0/ext/standard/
H A Dmd5.c166 typedef ZEND_SET_ALIGNED(1, uint32_t unaligned_uint32_t);
174 (uint32_t)ptr[(n) * 4] | \
175 ((uint32_t)ptr[(n) * 4 + 1] << 8) | \
176 ((uint32_t)ptr[(n) * 4 + 2] << 16) | \
177 ((uint32_t)ptr[(n) * 4 + 3] << 24))
189 uint32_t a, b, c, d; in body()
190 uint32_t saved_a, saved_b, saved_c, saved_d; in body()
306 uint32_t saved_lo; in PHP_MD5Update()
307 uint32_t used, free; in PHP_MD5Update()
341 uint32_t used, free; in PHP_MD5Final()
/PHP-8.0/ext/hash/
H A Dhash_tiger.c41 t2[(unsigned char)(((uint32_t)(c))>>(2*8))] ^ \
43 t4[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(2*8))] ; \
44 b += t4[(unsigned char)(((uint32_t)(c))>>(1*8))] ^ \
45 t3[(unsigned char)(((uint32_t)(c))>>(3*8))] ^ \
46 t2[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(1*8))] ^ \
47 t1[(unsigned char)(((uint32_t)((c)>>(4*8)))>>(3*8))]; \
H A Dhash_gost.c206 static inline void Gost(PHP_GOST_CTX *context, uint32_t data[8]) in Gost()
209 uint32_t l, r, t, key[8], u[8], v[8], w[8], s[8], *h = context->state, *m = data; in Gost()
226 uint32_t data[8], temp = 0; in GostTransform()
229 data[i] = ((uint32_t) input[j]) | (((uint32_t) input[j + 1]) << 8) | in GostTransform()
230 (((uint32_t) input[j + 2]) << 16) | (((uint32_t) input[j + 3]) << 24); in GostTransform()
250 static const uint32_t MAX32 = 0xffffffffLU;
286 uint32_t i, j, l[8] = {0}; in PHP_GOSTFinal()
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_opcode.c38 zend_op_array *ops, const zend_op *opline, const znode_op *op, uint32_t type) /* {{{ */ in phpdbg_decode_op()
66 uint32_t flags) { in phpdbg_decode_input_op()
75 if (op.num != (uint32_t)-1) { in phpdbg_decode_input_op()
93 uint32_t flags = zend_get_opcode_flags(opline->opcode); in phpdbg_decode_opline()

Completed in 110 milliseconds

12345678910>>...14