Home
last modified time | relevance | path

Searched refs:zend_ulong (Results 1 – 25 of 167) sorted by relevance

1234567

/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_btree.h25 zend_ulong idx;
36 zend_ulong count;
37 zend_ulong depth;
44 zend_ulong cur;
45 zend_ulong end;
48 void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth);
50 phpdbg_btree_result *phpdbg_btree_find(phpdbg_btree *tree, zend_ulong idx);
51 phpdbg_btree_result *phpdbg_btree_find_closest(phpdbg_btree *tree, zend_ulong idx);
52 …tree_position phpdbg_btree_find_between(phpdbg_btree *tree, zend_ulong lower_idx, zend_ulong highe…
54 int phpdbg_btree_delete(phpdbg_btree *tree, zend_ulong idx);
[all …]
H A Dphpdbg_bp.h43 zend_ulong hits; \
85 zend_ulong opline_num;
86 zend_ulong opline;
94 zend_ulong opline;
103 zend_ulong hash;
114 zend_ulong hash;
143 PHPDBG_API void phpdbg_print_breakpoints(zend_ulong type);
147 PHPDBG_API void phpdbg_delete_breakpoint(zend_ulong num);
149 PHPDBG_API void phpdbg_enable_breakpoint(zend_ulong id);
150 PHPDBG_API void phpdbg_disable_breakpoint(zend_ulong id);
[all …]
H A Dphpdbg_btree.c33 void phpdbg_btree_init(phpdbg_btree *tree, zend_ulong depth) { in phpdbg_btree_init()
40 phpdbg_btree_result *phpdbg_btree_find(phpdbg_btree *tree, zend_ulong idx) { in phpdbg_btree_find()
67 phpdbg_btree_result *phpdbg_btree_find_closest(phpdbg_btree *tree, zend_ulong idx) { in phpdbg_btree_find_closest()
122 …tree_position phpdbg_btree_find_between(phpdbg_btree *tree, zend_ulong lower_idx, zend_ulong highe… in phpdbg_btree_find_between()
144 int phpdbg_btree_insert_or_update(phpdbg_btree *tree, zend_ulong idx, void *ptr, int flags) { in phpdbg_btree_insert_or_update()
179 int phpdbg_btree_delete(phpdbg_btree *tree, zend_ulong idx) { in phpdbg_btree_delete()
227 void phpdbg_btree_clean_recursive(phpdbg_btree_branch *branch, zend_ulong depth, zend_bool persiste… in phpdbg_btree_clean_recursive()
247 void phpdbg_btree_branch_dump(phpdbg_btree_branch *branch, zend_ulong depth) { in phpdbg_btree_branch_dump()
H A Dphpdbg_watch.c275 zend_hash_index_add_empty_element(PHPDBG_G(watchlist_mem), (zend_ulong) page);
288 phpdbg_btree_delete(&PHPDBG_G(watchpoint_tree), (zend_ulong) watch->addr.ptr);
341 zend_hash_index_del(&coll->parents, (zend_ulong) watch);
357 zend_hash_index_del(&PHPDBG_G(watch_collisions), (zend_ulong) watch->ref);
597 phpdbg_btree_insert(&PHPDBG_G(watch_HashTables), (zend_ulong) hti->ht, hti);
625 phpdbg_btree_delete(&PHPDBG_G(watch_HashTables), (zend_ulong) hti->ht);
1070 zend_ulong page;
1089 zend_ulong page;
1139 if ((result = phpdbg_btree_find(&PHPDBG_G(watchpoint_tree), (zend_ulong) ptr))) {
1149 zend_ulong num = zend_hash_num_elements(&hti->watches);
[all …]
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_charset.h22 PHPAPI zend_ulong mysqlnd_cset_escape_quotes(const MYSQLND_CHARSET * const charset, char * newstr,
25 PHPAPI zend_ulong mysqlnd_cset_escape_slashes(const MYSQLND_CHARSET * const cset, char * newstr,
35zend_ulong (*const escape_quotes)(const MYSQLND_CHARSET * const cset, char * newstr, const char…
36zend_ulong (*const escape_slashes)(const MYSQLND_CHARSET * const cset, char * newstr, const char…
H A Dmysqlnd_auth.h28 const zend_ulong mysql_flags,
79 const zend_ulong mysql_flags
94 const zend_ulong mysql_flags,
/PHP-8.0/ext/opcache/
H A DZendAccelerator.h143 zend_ulong hits;
171 zend_ulong revalidate_freq;
172 zend_ulong file_update_protection;
227 zend_ulong root_hash;
257 zend_ulong hits;
258 zend_ulong misses;
259 zend_ulong blacklist_misses;
260 zend_ulong oom_restarts; /* number of restarts because of out of memory */
261 zend_ulong hash_restarts; /* number of restarts because of hash overflow */
262 zend_ulong manual_restarts; /* number of restarts scheduled by opcache_reset() */
H A Dzend_accelerator_hash.c76 zend_ulong hash_value; in zend_accel_hash_update()
77 zend_ulong index; in zend_accel_hash_update()
143 …_ex(zend_accel_hash *accel_hash, const char *key, uint32_t key_length, zend_ulong hash_value, int … in zend_accel_hash_find_ex()
145 zend_ulong index; in zend_accel_hash_find_ex()
231 zend_ulong hash_value; in zend_accel_hash_unlink()
232 zend_ulong index; in zend_accel_hash_unlink()
H A Dzend_shared_alloc.c367 zend_ulong key = (zend_ulong)source; in zend_shared_memdup_size()
381 zend_ulong key; in _zend_shared_memdup()
384 key = (zend_ulong)source; in _zend_shared_memdup()
401 key = (zend_ulong)source; in _zend_shared_memdup()
550 zend_ulong key = (zend_ulong)old; in zend_shared_alloc_register_xlat_entry()
559 zend_ulong key = (zend_ulong)old; in zend_shared_alloc_get_xlat_entry()
/PHP-8.0/Zend/
H A Dzend_weakrefs.c59 void *ptr, uintptr_t tag, zend_ulong obj_addr) in zend_weakref_unref_single()
89 zend_ulong obj_addr = (zend_ulong) object; in zend_weakref_register()
113 zend_ulong obj_addr = (zend_ulong) object; in zend_weakref_unregister()
133 zend_hash_index_del(ht, (zend_ulong) payload); in zend_weakref_unregister()
155 zval *zv = zend_hash_index_find(ht, (zend_ulong) key); in zend_weakrefs_hash_del()
170 zend_ulong obj_addr = (zend_ulong) object; in zend_weakrefs_notify()
182 zend_ulong obj_addr; in zend_weakrefs_shutdown()
297 zend_ulong obj_addr; in zend_weakmap_free_obj()
426 zend_ulong obj_addr; in zend_weakmap_get_properties_for()
459 zend_ulong obj_addr; in zend_weakmap_clone_obj()
[all …]
H A Dzend_bitset.h22 typedef zend_ulong *zend_bitset;
24 #define ZEND_BITSET_ELM_SIZE sizeof(zend_ulong)
28 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f))
31 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f))
41 static zend_always_inline int zend_ulong_ntz(zend_ulong num)
79 static zend_always_inline int zend_ulong_nlz(zend_ulong num)
100 zend_ulong x;
248 zend_ulong x = set[i];
263 zend_ulong _x = _set[_i]; \
272 zend_ulong _test = Z_UL(1) << (ZEND_BITSET_ELM_SIZE * 8 - 1); \
[all …]
H A Dzend_string.c47 ZEND_API zend_ulong ZEND_FASTCALL zend_string_hash_func(zend_string *str) in zend_string_hash_func()
52 ZEND_API zend_ulong ZEND_FASTCALL zend_hash_func(const char *str, size_t len) in zend_hash_func()
145 zend_ulong h = ZSTR_H(str); in zend_interned_string_ht_lookup()
202 zend_ulong h = ZSTR_H(str); in zend_new_interned_string_permanent()
243 zend_ulong h = ZSTR_H(str); in zend_new_interned_string_request()
257 zend_ulong h = zend_inline_hash_func(str, size); in zend_string_init_interned_permanent()
273 zend_ulong h = zend_inline_hash_func(str, size); in zend_string_init_interned_request()
333 zend_ulong ret; in zend_string_equal_val()
371 zend_ulong ret; in I_WRAP_SONAME_FNNAME_ZU()
401 zend_ulong ret; in zend_string_equal_val()
[all …]
H A Dzend_hash.h91 zend_ulong h;
430 zend_ulong idx; in zend_symtable_add_new()
441 zend_ulong idx; in zend_symtable_update()
453 zend_ulong idx; in zend_symtable_update_ind()
465 zend_ulong idx; in zend_symtable_del()
477 zend_ulong idx; in zend_symtable_del_ind()
489 zend_ulong idx; in zend_symtable_find()
501 zend_ulong idx; in zend_symtable_find_ind()
513 zend_ulong idx; in zend_symtable_exists()
525 zend_ulong idx; in zend_symtable_exists_ind()
[all …]
H A Dzend_ts_hash.h46 ZEND_API zval *zend_ts_hash_index_update(TsHashTable *ht, zend_ulong h, zval *pData);
60 ZEND_API zend_result zend_ts_hash_index_del(TsHashTable *ht, zend_ulong h);
64 ZEND_API zval *zend_ts_hash_index_find(TsHashTable *ht, zend_ulong);
120 static zend_always_inline bool zend_ts_hash_index_exists(TsHashTable *ht, zend_ulong h) in zend_ts_hash_index_exists()
/PHP-8.0/ext/pdo_odbc/
H A Dphp_pdo_odbc_int.h134 zend_ulong datalen;
149 zend_ulong convbufsize;
176 extern zend_ulong pdo_odbc_pool_on;
177 extern zend_ulong pdo_odbc_pool_mode;
H A Dpdo_odbc.c57 zend_ulong pdo_odbc_pool_on = SQL_CP_OFF;
58 zend_ulong pdo_odbc_pool_mode = SQL_CP_ONE_PER_HENV;
/PHP-8.0/ext/com_dotnet/
H A Dcom_iterator.c31 zend_ulong key;
74 if (I->key == (zend_ulong)-1) { in com_iter_get_key()
101 I->key = (zend_ulong)-1; in com_iter_move_forwards()
107 I->key = (zend_ulong)-1; in com_iter_move_forwards()
112 I->key = (zend_ulong)-1; in com_iter_move_forwards()
197 I->key = (zend_ulong)-1; in php_com_iter_get()
232 I->key = (zend_ulong)-1; in php_com_iter_get()
/PHP-8.0/ext/mysqli/
H A Dmysqli_prop.c230 …k_errno_read, mysql_errno, MYSQLI_GET_MYSQL(MYSQLI_STATUS_INITIALIZED), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG() argument
232 …d_count_read, mysql_field_count, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
240 …thread_id_read, mysql_thread_id, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
241 …count_read, mysql_warning_count, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
270 const zend_ulong *ret; in result_lengths_read()
280 zend_ulong i; in result_lengths_read()
293 …t_field_read, mysql_field_tell, MYSQLI_GET_RESULT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG() argument
294 …d_count_read, mysql_num_fields, MYSQLI_GET_RESULT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
395 …unt_read, mysql_stmt_param_count, MYSQLI_GET_STMT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT)
396 …unt_read, mysql_stmt_field_count, MYSQLI_GET_STMT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT)
[all …]
H A Dphp_mysqli_structs.h62 zend_ulong buflen;
63 zend_ulong output_len;
64 zend_ulong type;
278 zend_ulong default_port;
290 zend_ulong multi_query;
/PHP-8.0/ext/intl/collator/
H A Dcollator_is_numeric.c119 register zend_ulong acc;
121 register zend_ulong cutoff;
172 cutoff = neg ? -(zend_ulong)ZEND_LONG_MIN : ZEND_LONG_MAX;
173 cutlim = cutoff % (zend_ulong)base;
174 cutoff /= (zend_ulong)base;
/PHP-8.0/ext/standard/
H A Drandom.c244 zend_ulong umax; in php_random_int()
245 zend_ulong trial; in php_random_int()
252 umax = (zend_ulong) max - (zend_ulong) min; in php_random_int()
270 zend_ulong limit = ZEND_ULONG_MAX - (ZEND_ULONG_MAX % umax) - 1; in php_random_int()
/PHP-8.0/ext/opcache/Optimizer/
H A Dzend_worklist.h75 …(w)->stack.buf = (int*)do_alloca(ZEND_MM_ALIGNED_SIZE(sizeof(int) * _len) + sizeof(zend_ulong) * z…
79 memset((w)->visited, 0, sizeof(zend_ulong) * zend_bitset_len(_len)); \
88 …worklist->visited = (zend_bitset)zend_arena_calloc(arena, sizeof(zend_ulong), zend_bitset_len(len)… in zend_worklist_prepare()
/PHP-8.0/ext/pgsql/
H A Dphp_pgsql.h180 …convert(PGconn *pg_link, const char *table_name, const zval *values, zval *result, zend_ulong opt);
181 PHP_PGSQL_API int php_pgsql_insert(PGconn *pg_link, const char *table, zval *values, zend_ulong opt…
182 …ql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, zend_ulong opt , zend_strin…
183 PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, zend_ulong opt, z…
184 …select(PGconn *pg_link, const char *table, zval *ids, zval *ret_array, zend_ulong opt, long fetch_…
/PHP-8.0/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h109 zend_ulong max_buffer_size;
139 zend_ulong *in_length;
143 zend_ulong *out_length;
/PHP-8.0/ext/intl/msgformat/
H A Dmsgformat_data.h31 zend_ulong orig_format_len;

Completed in 57 milliseconds

1234567