Home
last modified time | relevance | path

Searched defs:offset (Results 1 – 25 of 197) sorted by last modified time

12345678

/php-src/ext/spl/
H A Dspl_observer.c443 static int spl_object_storage_has_dimension(zend_object *object, zval *offset, int check_empty) in spl_object_storage_has_dimension()
462 static zval *spl_object_storage_read_dimension(zend_object *object, zval *offset, int type, zval *r… in spl_object_storage_read_dimension()
485 static void spl_object_storage_write_dimension(zend_object *object, zval *offset, zval *inf) in spl_object_storage_write_dimension()
495 static void spl_object_storage_unset_dimension(zend_object *object, zval *offset) in spl_object_storage_unset_dimension()
H A Dspl_observer.stub.php67 public function seek(int $offset): void {}
/php-src/ext/simplexml/
H A Dsimplexml.c103 static xmlNodePtr sxe_get_element_by_offset(php_sxe_object *sxe, zend_long offset, xmlNodePtr node,… in sxe_get_element_by_offset()
338 static zval *sxe_dimension_read(zend_object *object, zval *offset, int type, zval *rv) in sxe_dimension_read()
605 static void sxe_dimension_write(zend_object *object, zval *offset, zval *value) in sxe_dimension_write()
892 static void sxe_dimension_delete(zend_object *object, zval *offset) in sxe_dimension_delete()
/php-src/ext/dom/
H A Dphp_dom.c2166 static bool dom_nodemap_or_nodelist_process_offset_as_named(zval *offset, zend_long *lval) in dom_nodemap_or_nodelist_process_offset_as_named()
2183 static zval *dom_nodelist_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in dom_nodelist_read_dimension()
2210 zend_long offset; in dom_nodelist_has_dimension() local
2275 static zval *dom_nodemap_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in dom_nodemap_read_dimension()
2308 zend_long offset; in dom_nodemap_has_dimension() local
2317 static zval *dom_modern_nodemap_read_dimension(zend_object *object, zval *offset, int type, zval *r… in dom_modern_nodemap_read_dimension()
2363 zend_long offset = Z_LVAL_P(member); in dom_modern_nodemap_has_dimension() local
2366 zend_long offset = zend_dval_to_lval_safe(Z_DVAL_P(member)); in dom_modern_nodemap_has_dimension() local
H A Dnodelist.c253 dom_nodelist_dimension_index dom_modern_nodelist_get_index(const zval *offset) in dom_modern_nodelist_get_index()
281 zval *dom_modern_nodelist_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in dom_modern_nodelist_read_dimension()
/php-src/ext/standard/
H A Darray.c3321 static void php_splice(HashTable *in_hash, zend_long offset, zend_long length, HashTable *replace, …
3780 zend_long offset, local
3838 static inline Bucket* find_bucket_at_offset(HashTable* ht, zend_long offset)
3865 static inline zval* find_packed_val_at_offset(HashTable* ht, zend_long offset)
3895 zend_long offset; /* Offset to get elements from */ local
/php-src/ext/hash/
H A Dhash.c135 size_t offset = pos & (alignment - 1); in align_to() local
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c396 int64_t offset; in zend_jit_set_veneer() local
532 static ir_ref jit_ADD_OFFSET(zend_jit_ctx *jit, ir_ref addr, uintptr_t offset) in jit_ADD_OFFSET()
2295 static ir_ref _zend_jit_orig_opline_handler(zend_jit_ctx *jit, ir_ref offset) in _zend_jit_orig_opline_handler()
2310 ir_ref func, jit_extension, offset; in zend_jit_orig_opline_handler() local
2320 ir_ref func, jit_extension, offset, addr, ref, if_overflow, ret, if_halt; in _zend_jit_hybrid_trace_counter_stub() local
3193 size_t offset = 0; in zend_jit_setup() local
3216 size_t offset = 0; in zend_jit_setup() local
4305 …re_spill_slot(zend_jit_ctx *jit, uint32_t info, int var, int8_t reg, int32_t offset, bool set_type) in zend_jit_store_spill_slot()
10068 uint32_t offset = EX_NUM_TO_VAR(i); local
11228 uint32_t offset; local
[all …]
/php-src/ext/ffi/
H A Dffi.c139 size_t offset; member
1370 static zval *zend_ffi_cdata_read_dim(zend_object *obj, zval *offset, int read_type, zval *rv) /* {{… in zend_ffi_cdata_read_dim()
1428 static void zend_ffi_cdata_write_dim(zend_object *obj, zval *offset, zval *value) /* {{{ */ in zend_ffi_cdata_write_dim()
1851 zend_long offset; in zend_ffi_cdata_do_operation() local
5074 static ZEND_COLD zval *zend_fake_read_dimension(zend_object *obj, zval *offset, int type, zval *rv)… in zend_fake_read_dimension()
5081 static ZEND_COLD void zend_fake_write_dimension(zend_object *obj, zval *offset, zval *value) /* {{{… in zend_fake_write_dimension()
5087 static ZEND_COLD int zend_fake_has_dimension(zend_object *obj, zval *offset, int check_empty) /* {{… in zend_fake_has_dimension()
5094 static ZEND_COLD void zend_fake_unset_dimension(zend_object *obj, zval *offset) /* {{{ */ in zend_fake_unset_dimension()
5192 static ZEND_COLD void zend_ffi_free_write_dimension(zend_object *obj, zval *offset, zval *value) /*… in zend_ffi_free_write_dimension()
5198 static ZEND_COLD int zend_ffi_free_has_dimension(zend_object *obj, zval *offset, int check_empty) /… in zend_ffi_free_has_dimension()
[all …]
/php-src/ext/bcmath/libbcmath/src/
H A Dstr2num.c45 const __m128i offset = _mm_set1_epi8((signed char) (SCHAR_MIN - '0')); in bc_count_digits() local
/php-src/ext/sqlite3/
H A Dsqlite3.c1153 static int php_sqlite3_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *n… in php_sqlite3_stream_seek()
/php-src/ext/pdo_sqlite/
H A Dpdo_sqlite.c201 static int php_pdosqlite3_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t… in php_pdosqlite3_stream_seek()
/php-src/ext/curl/
H A Dinterface.c1251 static int seek_cb(void *arg, curl_off_t offset, int origin) /* {{{ */ in seek_cb()
/php-src/ext/reflection/
H A Dphp_reflection.c132 uint32_t offset; member
622 static zend_op *get_recv_op(zend_op_array *op_array, uint32_t offset) in get_recv_op()
640 static zval *get_default_from_recv(zend_op_array *op_array, uint32_t offset) { in get_default_from_recv()
701 …mart_str *str, zend_function *fptr, struct _zend_arg_info *arg_info, uint32_t offset, bool require… in _parameter_string()
1168uint32_t offset, uint32_t target, zend_string *name, zend_class_entry *base, zend_string *filename… in read_attributes()
1222 uint32_t offset, zend_class_entry *scope, uint32_t target, zend_string *filename) /* {{{ */ in reflect_attributes()
1338 …nction *fptr, zval *closure_object, struct _zend_arg_info *arg_info, uint32_t offset, bool require… in reflection_parameter_factory()
/php-src/Zend/
H A Dzend_compile.c2408 static zend_op *zend_delayed_compile_end(uint32_t offset) /* {{{ */ in zend_delayed_compile_end()
3051 uint32_t offset = zend_delayed_compile_begin(); in zend_compile_dim() local
3133 uint32_t offset = zend_delayed_compile_begin(); in zend_compile_prop() local
3394 uint32_t offset; in zend_compile_assign() local
3492 uint32_t offset, flags; in zend_compile_assign_ref() local
3567 uint32_t offset, cache_slot; in zend_compile_compound_assign() local
4608 uint32_t offset = find_frameless_function_offset(num_args, frameless_function_info->handler); in zend_compile_frameless_icall_ex() local
7014 HashTable **attributes, zend_ast *ast, uint32_t offset, uint32_t target, uint32_t promoted in zend_compile_attributes()
7554 uint32_t offset = (uint32_t)((char*)value - (char*)op_array->static_variables->arData); in compile_implicit_lexical_binds() local
8805 zend_long offset = Z_LVAL_P(zend_ast_get_zval(offset_ast)); in zend_compile_halt_compiler() local
[all …]
H A Dzend_alloc.c193 #define ZEND_MM_NRUN(bin_num, offset) (ZEND_MM_IS_SRUN | ZEND_MM_IS_LRUN | ((bin_num) << ZEND_MM… argument
728 size_t offset; local
2633 ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset)
2643 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset)
H A Dzend.c1767 …COLD void zend_illegal_container_offset(const zend_string *container, const zval *offset, int type) in zend_illegal_container_offset()
/php-src/ext/intl/dateformat/
H A Ddateformat.stub.php160 public function parse(string $string, &$offset = null): int|float|false {}
165 public function parseToCalendar(string $string, &$offset = null): int|float|false {}
173 public function localtime(string $string, &$offset = null): array|false {}
/php-src/ext/pgsql/
H A Dpgsql.c2767 zend_long result, offset = 0, whence = SEEK_CUR; in PHP_FUNCTION() local
2802 zend_long offset = 0; in PHP_FUNCTION() local
/php-src/ext/opcache/jit/ir/
H A Dir.c2532 ir_ref _ir_ADD_OFFSET(ir_ctx *ctx, ir_ref addr, uintptr_t offset)
2722 ir_ref _ir_TLS(ir_ctx *ctx, ir_ref index, ir_ref offset)
/php-src/ext/mbstring/
H A Dmbstring.c1864 static unsigned char* offset_to_pointer_utf8(unsigned char *str, unsigned char *end, ssize_t offset in offset_to_pointer_utf8()
1895 …zend_string *haystack, zend_string *needle, const mbfl_encoding *enc, ssize_t offset, bool reverse) in mb_find_strpos()
1968 zend_long offset = 0; in PHP_FUNCTION() local
1997 zend_long offset = 0; in PHP_FUNCTION() local
2027 zend_long offset = 0; in PHP_FUNCTION() local
2058 zend_long offset = 0; in PHP_FUNCTION() local
3920 uint32_t offset = mapelm[2]; in html_numeric_entity_convert() local
4039 uint32_t offset = mapelm[2]; in html_numeric_entity_deconvert() local
6016 …p_mb_stripos(bool mode, zend_string *haystack, zend_string *needle, zend_long offset, const mbfl_e… in php_mb_stripos()
6154 unsigned int offset = 0; in mb_mime_header_encode() local
H A Dmbstring.stub.php91 function mb_strpos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): in…
93 function mb_strrpos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): i…
95 function mb_stripos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): i…
97 function mb_strripos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): …
249 function mb_ereg_search_setpos(int $offset): bool {}
/php-src/ext/dom/lexbor/lexbor/html/tokenizer/
H A Dstate.h101 #define lxb_html_tokenizer_state_token_set_end_down(tkz, v_end, offset) \ argument
/php-src/ext/dom/lexbor/lexbor/css/syntax/
H A Dtokenizer.h53 uintptr_t offset; member
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dcharacter_data.c92 size_t offset, size_t count) in lxb_dom_character_data_replace()

Completed in 261 milliseconds

12345678