Home
last modified time | relevance | path

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

1234567

/PHP-8.3/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; \
57 zend_ulong line;
85 zend_ulong opline_num;
86 zend_ulong opline;
94 zend_ulong opline;
103 zend_ulong hash;
114 zend_ulong hash;
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, bool persistent) { 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.c303 zend_hash_index_add_empty_element(PHPDBG_G(watchlist_mem), (zend_ulong) page);
319 zend_hash_index_add_empty_element(globals->watchlist_mem, (zend_ulong) page);
342 phpdbg_btree_delete(&PHPDBG_G(watchpoint_tree), (zend_ulong) watch->addr.ptr);
395 zend_hash_index_del(&coll->parents, (zend_ulong) watch);
411 zend_hash_index_del(&PHPDBG_G(watch_collisions), (zend_ulong) watch->ref);
653 phpdbg_btree_insert(&PHPDBG_G(watch_HashTables), (zend_ulong) hti->ht, hti);
681 phpdbg_btree_delete(&PHPDBG_G(watch_HashTables), (zend_ulong) hti->ht);
1129 zend_ulong page;
1162 zend_ulong page;
1222 zend_ulong num = zend_hash_num_elements(&hti->watches);
[all …]
/PHP-8.3/ext/mysqlnd/
H A Dmysqlnd_charset.h25 PHPAPI zend_ulong mysqlnd_cset_escape_quotes(const MYSQLND_CHARSET * const charset, char * newstr,
28 PHPAPI zend_ulong mysqlnd_cset_escape_slashes(const MYSQLND_CHARSET * const cset, char * newstr,
38zend_ulong (*const escape_quotes)(const MYSQLND_CHARSET * const cset, char * newstr, const char…
39zend_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,
H A Dmysqlnd_wireprotocol.h24 #define MYSQLND_NULL_LENGTH (zend_ulong) ~0
178 zend_ulong field_count;
241 zend_ulong stmt_id;
300 zend_ulong php_mysqlnd_net_field_length(const zend_uchar **packet);
/PHP-8.3/ext/random/
H A Dengine_secure.c29 zend_ulong r = 0; in generate()
31 php_random_bytes_throw(&r, sizeof(zend_ulong)); in generate()
46 sizeof(zend_ulong),
H A Dcsprng.c214 zend_ulong umax; in php_random_int()
215 zend_ulong trial; in php_random_int()
222 umax = (zend_ulong) max - (zend_ulong) min; in php_random_int()
240 zend_ulong limit = ZEND_ULONG_MAX - (ZEND_ULONG_MAX % umax) - 1; in php_random_int()
/PHP-8.3/ext/opcache/
H A DZendAccelerator.h137 zend_ulong hits;
162 zend_ulong revalidate_freq;
163 zend_ulong file_update_protection;
217 zend_ulong root_hash;
241 zend_ulong hits;
242 zend_ulong misses;
243 zend_ulong blacklist_misses;
244 zend_ulong oom_restarts; /* number of restarts because of out of memory */
245 zend_ulong hash_restarts; /* number of restarts because of hash overflow */
246 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 zend_ulong index; in zend_accel_hash_find_ex()
145 zend_ulong hash_value; in zend_accel_hash_find_ex()
194 zend_ulong hash_value; in zend_accel_hash_unlink()
195 zend_ulong index; in zend_accel_hash_unlink()
H A Dzend_shared_alloc.c391 static zend_always_inline zend_ulong zend_rotr3(zend_ulong key) in zend_rotr3()
399 zend_ulong key = (zend_ulong)source; in zend_shared_memdup_size()
413 zend_ulong key; in _zend_shared_memdup()
416 key = (zend_ulong)source; in _zend_shared_memdup()
428 key = (zend_ulong)source; in _zend_shared_memdup()
571 zend_ulong key = (zend_ulong)key_pointer; in zend_shared_alloc_register_xlat_entry()
580 zend_ulong key = (zend_ulong)key_pointer; in zend_shared_alloc_get_xlat_entry()
/PHP-8.3/Zend/
H A Dzend_bitset.h29 typedef zend_ulong *zend_bitset;
31 #define ZEND_BITSET_ELM_SIZE sizeof(zend_ulong)
35 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x1f))
38 # define ZEND_BITSET_BIT_NUM(n) ((zend_ulong)(n) & Z_UL(0x3f))
48 static zend_always_inline int zend_ulong_ntz(zend_ulong num)
86 static zend_always_inline int zend_ulong_nlz(zend_ulong num)
107 zend_ulong x;
255 zend_ulong x = set[i];
270 zend_ulong _x = _set[_i]; \
279 zend_ulong _test = Z_UL(1) << (ZEND_BITSET_ELM_SIZE * 8 - 1); \
[all …]
H A Dzend_hash.h93 zend_ulong h;
464 zend_ulong idx; in zend_symtable_add_new()
475 zend_ulong idx; in zend_symtable_update()
487 zend_ulong idx; in zend_symtable_update_ind()
499 zend_ulong idx; in zend_symtable_del()
511 zend_ulong idx; in zend_symtable_del_ind()
523 zend_ulong idx; in zend_symtable_find()
535 zend_ulong idx; in zend_symtable_find_ind()
547 zend_ulong idx; in zend_symtable_exists()
559 zend_ulong idx; in zend_symtable_exists_ind()
[all …]
H A Dzend_string.c55 ZEND_API zend_ulong ZEND_FASTCALL zend_string_hash_func(zend_string *str) in zend_string_hash_func()
60 ZEND_API zend_ulong ZEND_FASTCALL zend_hash_func(const char *str, size_t len) in zend_hash_func()
137 static zend_always_inline zend_string *zend_interned_string_ht_lookup_ex(zend_ulong h, const char *… in zend_interned_string_ht_lookup_ex()
158 zend_ulong h = ZSTR_H(str); in zend_interned_string_ht_lookup()
201 zend_ulong h = ZSTR_H(str); in zend_init_string_for_interning()
275 zend_ulong h = zend_inline_hash_func(str, size); in zend_string_init_interned_permanent()
290 zend_ulong h = zend_inline_hash_func(str, size); in zend_string_init_existing_interned_permanent()
305 zend_ulong h = zend_inline_hash_func(str, size); in zend_string_init_interned_request()
334 zend_ulong h = zend_inline_hash_func(str, size); in zend_string_init_existing_interned_request()
407 zend_ulong ret; in zend_string_equal_val()
[all …]
H A Dzend_weakrefs.c100 zend_ulong obj_key = zend_object_to_weakref_key(object); in zend_weakref_register()
118 zend_hash_index_add_new_ptr(ht, (zend_ulong) payload, payload); in zend_weakref_register()
124 zend_ulong obj_key = zend_object_to_weakref_key(object); in zend_weakref_unregister()
151 zend_hash_index_del(ht, (zend_ulong) payload); in zend_weakref_unregister()
195 const zend_ulong obj_key = zend_object_to_weakref_key(object); in zend_weakrefs_notify()
313 zend_ulong obj_key; in zend_weakmap_free_obj()
371 zend_ulong obj_key = zend_object_to_weakref_key(obj_addr); in zend_weakmap_write_dimension()
446 zend_ulong obj_key; in zend_weakmap_get_properties_for()
480 zend_ulong h; in zend_weakmap_get_key_entry_gc()
578 zend_ulong obj_key; in zend_weakmap_clone_obj()
[all …]
H A Dzend_weakrefs.h54 static zend_always_inline zend_ulong zend_object_to_weakref_key(const zend_object *object) in zend_object_to_weakref_key()
60 static zend_always_inline zend_object *zend_weakref_key_to_object(zend_ulong key) in zend_weakref_key_to_object()
/PHP-8.3/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.c58 zend_ulong pdo_odbc_pool_on = SQL_CP_OFF;
59 zend_ulong pdo_odbc_pool_mode = SQL_CP_ONE_PER_HENV;
/PHP-8.3/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.3/ext/mysqli/
H A Dmysqli_prop.c229 …k_errno_read, mysql_errno, MYSQLI_GET_MYSQL(MYSQLI_STATUS_INITIALIZED), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG() argument
231 …d_count_read, mysql_field_count, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
235 …sion_read, mysql_get_proto_info, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
239 …thread_id_read, mysql_thread_id, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
240 …count_read, mysql_warning_count, MYSQLI_GET_MYSQL(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
272 zend_ulong i; in result_lengths_read()
285 …t_field_read, mysql_field_tell, MYSQLI_GET_RESULT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG() argument
286 …d_count_read, mysql_num_fields, MYSQLI_GET_RESULT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT) in MYSQLI_MAP_PROPERTY_FUNC_LONG()
370 …unt_read, mysql_stmt_param_count, MYSQLI_GET_STMT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT)
371 …unt_read, mysql_stmt_field_count, MYSQLI_GET_STMT(MYSQLI_STATUS_VALID), zend_ulong, ZEND_ULONG_FMT)
[all …]
/PHP-8.3/ext/intl/collator/
H A Dcollator_is_numeric.c116 zend_ulong acc; in collator_u_strtol()
118 zend_ulong cutoff; in collator_u_strtol()
169 cutoff = neg ? -(zend_ulong)ZEND_LONG_MIN : ZEND_LONG_MAX; in collator_u_strtol()
170 cutlim = cutoff % (zend_ulong)base; in collator_u_strtol()
171 cutoff /= (zend_ulong)base; in collator_u_strtol()
/PHP-8.3/ext/pgsql/
H A Dphp_pgsql.h78 …(PGconn *pg_link, const zend_string *table_name, const zval *values, zval *result, zend_ulong opt);
79 …_pgsql_insert(PGconn *pg_link, const zend_string *table, zval *values, zend_ulong opt, zend_string…
80 …te(PGconn *pg_link, const zend_string *table, zval *values, zval *ids, zend_ulong opt , zend_strin…
81 …php_pgsql_delete(PGconn *pg_link, const zend_string *table, zval *ids, zend_ulong opt, zend_string…
82 …PGconn *pg_link, const zend_string *table, zval *ids, zval *ret_array, zend_ulong opt, long fetch_…
/PHP-8.3/Zend/Optimizer/
H A Dzend_worklist.h73 …(w)->stack.buf = (int*)do_alloca(ZEND_MM_ALIGNED_SIZE(sizeof(int) * _len) + sizeof(zend_ulong) * z…
77 memset((w)->visited, 0, sizeof(zend_ulong) * zend_bitset_len(_len)); \
86 …worklist->visited = (zend_bitset)zend_arena_calloc(arena, sizeof(zend_ulong), zend_bitset_len(len)… in zend_worklist_prepare()
/PHP-8.3/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h109 zend_ulong max_buffer_size;
133 zend_ulong *in_length;
136 zend_ulong *out_length;

Completed in 80 milliseconds

1234567