Home
last modified time | relevance | path

Searched defs:offset (Results 1 – 25 of 137) sorted by path

123456

/PHP-7.4/TSRM/
H A DTSRM.c79 #define TSRM_SAFE_RETURN_RSRC(array, offset, range) \ argument
97 #define TSRM_SAFE_RETURN_RSRC(array, offset, range) \ argument
342 TSRM_API ts_rsrc_id ts_allocate_fast_id(ts_rsrc_id *rsrc_id, size_t *offset, size_t size, ts_alloca… in ts_allocate_fast_id()
H A DTSRM.h170 #define TSRMG_FAST(offset, type, element) (TSRMG_FAST_BULK(offset, type)->element) argument
171 #define TSRMG_FAST_BULK(offset, type) ((type) (((char*) tsrm_get_ls_cache())+(offset))) argument
175 #define TSRMG_FAST_STATIC(offset, type, element) (TSRMG_FAST_BULK_STATIC(offset, type)->element) argument
176 #define TSRMG_FAST_BULK_STATIC(offset, type) ((type) (((char*) TSRMLS_CACHE)+(offset))) argument
/PHP-7.4/Zend/
H A Dzend_alloc.c188 #define ZEND_MM_NRUN(bin_num, offset) (ZEND_MM_IS_SRUN | ZEND_MM_IS_LRUN | ((bin_num) << ZEND_MM… argument
678 size_t offset; local
2588 ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset)
2598 ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset)
H A Dzend_alloc.h160 #define safe_emalloc(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LINE_CC… argument
167 #define safe_erealloc(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset) ZEN… argument
176 #define safe_emalloc_rel(nmemb, size, offset) _safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LIN… argument
183 #define safe_erealloc_rel(ptr, nmemb, size, offset) _safe_erealloc((ptr), (nmemb), (size), (offset)… argument
194 #define safe_pemalloc(nmemb, size, offset, persistent) ((persistent)?_safe_malloc(nmemb, size, offs… argument
207 #define safe_perealloc(ptr, nmemb, size, offset, persistent) ((persistent)?_safe_realloc((ptr), (nm… argument
H A Dzend_ast.c409 static int zend_ast_add_array_element(zval *result, zval *offset, zval *expr) in zend_ast_add_array_element()
H A Dzend_closures.c800 void zend_closure_bind_var_ex(zval *closure_zv, uint32_t offset, zval *val) /* {{{ */ in zend_closure_bind_var_ex()
H A Dzend_compile.c2049 static zend_op *zend_delayed_compile_end(uint32_t offset) /* {{{ */ in zend_delayed_compile_end()
2493 uint32_t offset = zend_delayed_compile_begin(); in zend_compile_dim() local
2533 uint32_t offset = zend_delayed_compile_begin(); in zend_compile_prop() local
2756 uint32_t offset; in zend_compile_assign() local
2855 uint32_t offset, flags; in zend_compile_assign_ref() local
2923 uint32_t offset, cache_slot; in zend_compile_compound_assign() local
5673 uint32_t offset = (uint32_t)((char*)value - (char*)op_array->static_variables->arData); in compile_implicit_lexical_binds() local
6891 zend_long offset = Z_LVAL_P(zend_ast_get_zval(offset_ast)); in zend_compile_halt_compiler() local
8964 zend_long offset; in zend_eval_const_expr() local
H A Dzend_compile.h362 uint32_t offset; /* property offset for object properties or member
371 #define OBJ_PROP(obj, offset) \ argument
377 #define OBJ_PROP_TO_NUM(offset) \ argument
607 #define ZEND_OFFSET_TO_OPLINE(base, offset) \ argument
610 #define ZEND_OFFSET_TO_OPLINE_NUM(op_array, base, offset) \ argument
H A Dzend_execute.c1393 zend_long offset; in zend_check_string_offset() local
1562 zend_long offset; in zend_assign_to_string_offset() local
1975 …atic zend_never_inline ZEND_COLD void ZEND_FASTCALL zend_undefined_index(const zend_string *offset) in zend_undefined_index()
2000 HashTable *ht, zend_string *offset) in zend_undefined_index_write()
2405 zend_long offset; in zend_fetch_dimension_address_read() local
4594 #define ZEND_VM_SET_RELATIVE_OPCODE(opline, offset) \ argument
H A Dzend_language_scanner.l739 size_t offset = SCNG(yy_cursor) - SCNG(yy_start); in zend_get_scanned_file_offset() local
1247 int offset; in lex_scan() local
H A Dzend_multiply.h157 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
185 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
222 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
244 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
265 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
289 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
303 static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *o… in zend_safe_address()
318 static zend_always_inline size_t zend_safe_address_guarded(size_t nmemb, size_t size, size_t offset) in zend_safe_address_guarded()
331 static zend_always_inline size_t zend_safe_addmult(size_t nmemb, size_t size, size_t offset, const … in zend_safe_addmult()
H A Dzend_object_handlers.c387 uintptr_t offset; in zend_get_property_offset() local
938 ZEND_API zval *zend_std_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */ in zend_std_read_dimension()
988 ZEND_API void zend_std_write_dimension(zval *object, zval *offset, zval *value) /* {{{ */ in zend_std_write_dimension()
1010 ZEND_API int zend_std_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */ in zend_std_has_dimension()
1192 ZEND_API void zend_std_unset_dimension(zval *object, zval *offset) /* {{{ */ in zend_std_unset_dimension()
H A Dzend_object_handlers.h30 #define IS_VALID_PROPERTY_OFFSET(offset) ((intptr_t)(offset) > 0) argument
31 #define IS_WRONG_PROPERTY_OFFSET(offset) ((intptr_t)(offset) == 0) argument
32 #define IS_DYNAMIC_PROPERTY_OFFSET(offset) ((intptr_t)(offset) < 0) argument
34 #define IS_UNKNOWN_DYNAMIC_PROPERTY_OFFSET(offset) (offset == ZEND_DYNAMIC_PROPERTY_OFFSET) argument
35 #define ZEND_DECODE_DYN_PROP_OFFSET(offset) ((uintptr_t)(-(intptr_t)(offset) - 2)) argument
36 #define ZEND_ENCODE_DYN_PROP_OFFSET(offset) ((uintptr_t)(-((intptr_t)(offset) + 2))) argument
156 int offset; member
H A Dzend_sort.c36 size_t offset; in zend_qsort() local
325 size_t offset = (nmemb >> Z_L(1)); in zend_sort() local
H A Dzend_vm_def.h2104 zval *offset; variable
2267 zval *offset; variable
6167 zval *offset; variable
6258 zval *offset; variable
6900 zval *offset; variable
6983 zval *offset; variable
9242 zend_long offset; variable
H A Dzend_vm_execute.h5351 zval *offset; in ZEND_FETCH_OBJ_R_SPEC_CONST_CONST_HANDLER() local
5466 zval *offset; in ZEND_FETCH_OBJ_IS_SPEC_CONST_CONST_HANDLER() local
6274 zval *offset; in ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_CONST_HANDLER() local
6357 zval *offset; in ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CONST_CONST_HANDLER() local
7619 zval *offset; in ZEND_FETCH_OBJ_R_SPEC_CONST_TMPVAR_HANDLER() local
7734 zval *offset; in ZEND_FETCH_OBJ_IS_SPEC_CONST_TMPVAR_HANDLER() local
8475 zval *offset; in ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_TMPVAR_HANDLER() local
8558 zval *offset; in ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CONST_TMPVAR_HANDLER() local
10080 zval *offset; in ZEND_FETCH_OBJ_R_SPEC_CONST_CV_HANDLER() local
10195 zval *offset; in ZEND_FETCH_OBJ_IS_SPEC_CONST_CV_HANDLER() local
[all …]
/PHP-7.4/ext/com_dotnet/
H A Dcom_handlers.c87 static zval *com_read_dimension(zval *object, zval *offset, int type, zval *rv) in com_read_dimension()
123 static void com_write_dimension(zval *object, zval *offset, zval *value) in com_write_dimension()
238 static void com_dimension_delete(zval *object, zval *offset) in com_dimension_delete()
H A Dcom_persist.c138 off_t offset; in stm_seek() local
H A Dcom_saproxy.c87 static zval *saproxy_read_dimension(zval *object, zval *offset, int type, zval *rv) in saproxy_read_dimension()
210 static void saproxy_write_dimension(zval *object, zval *offset, zval *value) in saproxy_write_dimension()
315 static void saproxy_dimension_delete(zval *object, zval *offset) in saproxy_dimension_delete()
/PHP-7.4/ext/curl/
H A Dinterface.c2128 static int seek_cb(void *arg, curl_off_t offset, int origin) /* {{{ */ in seek_cb()
/PHP-7.4/ext/date/lib/
H A Dparse_date.c840 timelib_long offset = 0; in timelib_parse_zone() local
H A Dparse_tz.c666 int32_t offset = 0, leap_secs = 0; in timelib_get_time_zone_info() local
H A Dtimelib.h199 int32_t offset; member
H A Dtimelib_private.h107 int32_t offset; member
118 int32_t offset; member
/PHP-7.4/ext/date/
H A Dphp_date.c1124 timelib_time_offset *offset = NULL; in date_format() local
1330 timelib_time_offset *offset = NULL; in php_idate() local
1673 timelib_time_offset *offset = NULL; in php_strftime() local
3575 timelib_time_offset *offset; in PHP_FUNCTION() local
4044 timelib_time_offset *offset; in PHP_FUNCTION() local

Completed in 282 milliseconds

123456