offset             70 TSRM/TSRM.c    #define TSRM_SAFE_RETURN_RSRC(array, offset, range)																		\
offset             72 TSRM/TSRM.c    		int unshuffled_offset = TSRM_UNSHUFFLE_RSRC_ID(offset);															\
offset             74 TSRM/TSRM.c    		if (offset==0) {																								\
offset             88 TSRM/TSRM.c    #define TSRM_SAFE_RETURN_RSRC(array, offset, range)		\
offset             89 TSRM/TSRM.c    	if (offset==0) {									\
offset             92 TSRM/TSRM.c    		return array[TSRM_UNSHUFFLE_RSRC_ID(offset)];	\
offset             31 TSRM/readdir.h 	short offset;				/* offset into directory */
offset           1149 Zend/zend_API.c 							val = CE_STATIC_MEMBERS(class_type) + prop_info->offset;
offset           1151 Zend/zend_API.c 							val = (zval*)((char*)class_type->default_properties_table + prop_info->offset - OBJ_PROP_TO_OFFSET(0));
offset           1206 Zend/zend_API.c 				zval *slot = OBJ_PROP(object, property_info->offset);
offset           1247 Zend/zend_API.c 				zval *slot = OBJ_PROP(object, property_info->offset);
offset           3629 Zend/zend_API.c 			property_info->offset = property_info_ptr->offset;
offset           3630 Zend/zend_API.c 			zval_ptr_dtor(&ce->default_static_members_table[property_info->offset]);
offset           3633 Zend/zend_API.c 			property_info->offset = ce->default_static_members_count++;
offset           3636 Zend/zend_API.c 		ZVAL_COPY_VALUE(&ce->default_static_members_table[property_info->offset], property);
offset           3643 Zend/zend_API.c 			property_info->offset = property_info_ptr->offset;
offset           3644 Zend/zend_API.c 			zval_ptr_dtor(&ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]);
offset           3647 Zend/zend_API.c 			property_info->offset = OBJ_PROP_TO_OFFSET(ce->default_properties_count);
offset           3651 Zend/zend_API.c 		ZVAL_COPY_VALUE(&ce->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)], property);
offset            185 Zend/zend_alloc.c #define ZEND_MM_NRUN(bin_num, offset)    (ZEND_MM_IS_SRUN | ZEND_MM_IS_LRUN | ((bin_num) << ZEND_MM_SRUN_BIN_NUM_OFFSET) | ((offset) << ZEND_MM_NRUN_OFFSET_OFFSET))
offset            763 Zend/zend_alloc.c 		size_t offset;
offset            769 Zend/zend_alloc.c 		offset = ZEND_MM_ALIGNED_OFFSET(ptr, alignment);
offset            771 Zend/zend_alloc.c 		ptr = zend_mm_mmap_fixed((void*)((char*)ptr + (alignment - offset)), size);
offset            772 Zend/zend_alloc.c 		offset = ZEND_MM_ALIGNED_OFFSET(ptr, alignment);
offset            773 Zend/zend_alloc.c 		if (offset != 0) {
offset            779 Zend/zend_alloc.c 		offset = ZEND_MM_ALIGNED_OFFSET(ptr, alignment);
offset            780 Zend/zend_alloc.c 		if (offset != 0) {
offset            781 Zend/zend_alloc.c 			offset = alignment - offset;
offset            782 Zend/zend_alloc.c 			zend_mm_munmap(ptr, offset);
offset            783 Zend/zend_alloc.c 			ptr = (char*)ptr + offset;
offset            784 Zend/zend_alloc.c 			alignment -= offset;
offset           2503 Zend/zend_alloc.c static zend_always_inline size_t safe_address(size_t nmemb, size_t size, size_t offset)
offset           2506 Zend/zend_alloc.c 	size_t ret = zend_safe_address(nmemb, size, offset, &overflow);
offset           2509 Zend/zend_alloc.c 		zend_error_noreturn(E_ERROR, "Possible integer overflow in memory allocation (%zu * %zu + %zu)", nmemb, size, offset);
offset           2516 Zend/zend_alloc.c ZEND_API void* ZEND_FASTCALL _safe_emalloc(size_t nmemb, size_t size, size_t offset ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
offset           2518 Zend/zend_alloc.c 	return emalloc_rel(safe_address(nmemb, size, offset));
offset           2521 Zend/zend_alloc.c ZEND_API void* ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset)
offset           2523 Zend/zend_alloc.c 	return pemalloc(safe_address(nmemb, size, offset), 1);
offset           2526 Zend/zend_alloc.c ZEND_API void* ZEND_FASTCALL _safe_erealloc(void *ptr, size_t nmemb, size_t size, size_t offset ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC)
offset           2528 Zend/zend_alloc.c 	return erealloc_rel(ptr, safe_address(nmemb, size, offset));
offset           2531 Zend/zend_alloc.c ZEND_API void* ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset)
offset           2533 Zend/zend_alloc.c 	return perealloc(ptr, safe_address(nmemb, size, offset), 1);
offset             76 Zend/zend_alloc.h ZEND_API void*  ZEND_FASTCALL _safe_emalloc(size_t nmemb, size_t size, size_t offset ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) ZEND_ATTRIBUTE_MALLOC;
offset             77 Zend/zend_alloc.h ZEND_API void*  ZEND_FASTCALL _safe_malloc(size_t nmemb, size_t size, size_t offset) ZEND_ATTRIBUTE_MALLOC;
offset             82 Zend/zend_alloc.h ZEND_API void*  ZEND_FASTCALL _safe_erealloc(void *ptr, size_t nmemb, size_t size, size_t offset ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC);
offset             83 Zend/zend_alloc.h ZEND_API void*  ZEND_FASTCALL _safe_realloc(void *ptr, size_t nmemb, size_t size, size_t offset);
offset            162 Zend/zend_alloc.h #define safe_emalloc(nmemb, size, offset)	_safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC)
offset            169 Zend/zend_alloc.h #define safe_erealloc(ptr, nmemb, size, offset)	_safe_erealloc((ptr), (nmemb), (size), (offset) ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC)
offset            178 Zend/zend_alloc.h #define safe_emalloc_rel(nmemb, size, offset)	_safe_emalloc((nmemb), (size), (offset) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_CC)
offset            185 Zend/zend_alloc.h #define safe_erealloc_rel(ptr, nmemb, size, offset)	_safe_erealloc((ptr), (nmemb), (size), (offset) ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_CC)
offset            196 Zend/zend_alloc.h #define safe_pemalloc(nmemb, size, offset, persistent)	((persistent)?_safe_malloc(nmemb, size, offset):safe_emalloc(nmemb, size, offset))
offset            202 Zend/zend_alloc.h #define safe_perealloc(ptr, nmemb, size, offset, persistent)	((persistent)?_safe_realloc((ptr), (nmemb), (size), (offset)):safe_erealloc((ptr), (nmemb), (size), (offset)))
offset            180 Zend/zend_ast.c static int zend_ast_add_array_element(zval *result, zval *offset, zval *expr)
offset            182 Zend/zend_ast.c 	switch (Z_TYPE_P(offset)) {
offset            187 Zend/zend_ast.c 			zend_symtable_update(Z_ARRVAL_P(result), Z_STR_P(offset), expr);
offset            188 Zend/zend_ast.c 			zval_dtor(offset);
offset            194 Zend/zend_ast.c 			zend_hash_index_update(Z_ARRVAL_P(result), Z_LVAL_P(offset), expr);
offset            203 Zend/zend_ast.c 			zend_hash_index_update(Z_ARRVAL_P(result), zend_dval_to_lval(Z_DVAL_P(offset)), expr);
offset           1097 Zend/zend_builtin_functions.c 			prop = &ce->default_static_members_table[prop_info->offset];
offset           1099 Zend/zend_builtin_functions.c 			prop = &ce->default_properties_table[OBJ_PROP_TO_NUM(prop_info->offset)];
offset           1997 Zend/zend_compile.c static zend_op *zend_delayed_compile_end(uint32_t offset) /* {{{ */
offset           2002 Zend/zend_compile.c 	ZEND_ASSERT(count >= offset);
offset           2003 Zend/zend_compile.c 	for (i = offset; i < count; ++i) {
offset           2007 Zend/zend_compile.c 	CG(delayed_oplines_stack).top = offset;
offset           2294 Zend/zend_compile.c 	uint32_t offset = zend_delayed_compile_begin();
offset           2296 Zend/zend_compile.c 	return zend_delayed_compile_end(offset);
offset           2346 Zend/zend_compile.c 	uint32_t offset = zend_delayed_compile_begin();
offset           2348 Zend/zend_compile.c 	return zend_delayed_compile_end(offset);
offset           2527 Zend/zend_compile.c 	uint32_t offset;
offset           2538 Zend/zend_compile.c 			offset = zend_delayed_compile_begin();
offset           2541 Zend/zend_compile.c 			zend_delayed_compile_end(offset);
offset           2545 Zend/zend_compile.c 			offset = zend_delayed_compile_begin();
offset           2555 Zend/zend_compile.c 			opline = zend_delayed_compile_end(offset);
offset           2561 Zend/zend_compile.c 			offset = zend_delayed_compile_begin();
offset           2565 Zend/zend_compile.c 			opline = zend_delayed_compile_end(offset);
offset           2592 Zend/zend_compile.c 	uint32_t offset;
offset           2599 Zend/zend_compile.c 	offset = zend_delayed_compile_begin();
offset           2602 Zend/zend_compile.c 	zend_delayed_compile_end(offset);
offset           2635 Zend/zend_compile.c 	uint32_t offset;
offset           2642 Zend/zend_compile.c 			offset = zend_delayed_compile_begin();
offset           2645 Zend/zend_compile.c 			zend_delayed_compile_end(offset);
offset           2649 Zend/zend_compile.c 			offset = zend_delayed_compile_begin();
offset           2653 Zend/zend_compile.c 			opline = zend_delayed_compile_end(offset);
offset           2660 Zend/zend_compile.c 			offset = zend_delayed_compile_begin();
offset           2664 Zend/zend_compile.c 			opline = zend_delayed_compile_end(offset);
offset           5686 Zend/zend_compile.c 	zend_long offset = Z_LVAL_P(zend_ast_get_zval(offset_ast));
offset           5700 Zend/zend_compile.c 	zend_register_long_constant(ZSTR_VAL(name), ZSTR_LEN(name), offset, CONST_CS, 0);
offset           7436 Zend/zend_compile.c 				zend_long offset;
offset           7439 Zend/zend_compile.c 					offset = Z_LVAL_P(dim);
offset           7440 Zend/zend_compile.c 				} else if (Z_TYPE_P(dim) != IS_STRING || is_numeric_string(Z_STRVAL_P(dim), Z_STRLEN_P(dim), &offset, NULL, 1) != IS_LONG) {
offset           7443 Zend/zend_compile.c 				if (offset < 0 || (size_t)offset >= Z_STRLEN_P(container)) {
offset           7446 Zend/zend_compile.c 				c = (zend_uchar) Z_STRVAL_P(container)[offset];
offset            282 Zend/zend_compile.h 	uint32_t offset; /* property offset for object properties or
offset            290 Zend/zend_compile.h #define OBJ_PROP(obj, offset) \
offset            291 Zend/zend_compile.h 	((zval*)((char*)(obj) + offset))
offset            296 Zend/zend_compile.h #define OBJ_PROP_TO_NUM(offset) \
offset            297 Zend/zend_compile.h 	((offset - OBJ_PROP_TO_OFFSET(0)) / sizeof(zval))
offset            522 Zend/zend_compile.h #define ZEND_OFFSET_TO_OPLINE(base, offset) \
offset            523 Zend/zend_compile.h 	((zend_op*)(((char*)(base)) + (int)offset))
offset            525 Zend/zend_compile.h #define ZEND_OFFSET_TO_OPLINE_NUM(op_array, base, offset) \
offset            526 Zend/zend_compile.h 	(ZEND_OFFSET_TO_OPLINE(base, offset) - op_array->opcodes)
offset           1304 Zend/zend_execute.c static void zend_assign_to_string_offset(zval *str, zend_long offset, zval *value, zval *result)
offset           1308 Zend/zend_execute.c 	if (offset < 0) {
offset           1309 Zend/zend_execute.c 		zend_error(E_WARNING, "Illegal string offset:  " ZEND_LONG_FMT, offset);
offset           1318 Zend/zend_execute.c 	if ((size_t)offset >= Z_STRLEN_P(str)) {
offset           1320 Zend/zend_execute.c 		Z_STR_P(str) = zend_string_extend(Z_STR_P(str), offset + 1, 0);
offset           1322 Zend/zend_execute.c 		memset(Z_STRVAL_P(str) + old_len, ' ', offset - old_len);
offset           1323 Zend/zend_execute.c 		Z_STRVAL_P(str)[offset+1] = 0;
offset           1332 Zend/zend_execute.c 		Z_STRVAL_P(str)[offset] = ZSTR_VAL(tmp)[0];
offset           1335 Zend/zend_execute.c 		Z_STRVAL_P(str)[offset] = Z_STRVAL_P(value)[0];
offset           1344 Zend/zend_execute.c 		zend_uchar c = (zend_uchar)Z_STRVAL_P(str)[offset];
offset           1349 Zend/zend_execute.c 			ZVAL_NEW_STR(result, zend_string_init(Z_STRVAL_P(str) + offset, 1, 0));
offset           1646 Zend/zend_execute.c 	zend_long offset;
offset           1673 Zend/zend_execute.c 		offset = zval_get_long(dim);
offset           1675 Zend/zend_execute.c 		offset = Z_LVAL_P(dim);
offset           1678 Zend/zend_execute.c 	return offset;
offset           1683 Zend/zend_execute.c 	zend_long offset = zend_check_string_offset(dim, type);
offset           1692 Zend/zend_execute.c 	return offset;
offset           1826 Zend/zend_execute.c 		zend_long offset;
offset           1858 Zend/zend_execute.c 			offset = zval_get_long(dim);
offset           1860 Zend/zend_execute.c 			offset = Z_LVAL_P(dim);
offset           1863 Zend/zend_execute.c 		if (UNEXPECTED(offset < 0) || UNEXPECTED(Z_STRLEN_P(container) <= (size_t)offset)) {
offset           1865 Zend/zend_execute.c 				zend_error(E_NOTICE, "Uninitialized string offset: %pd", offset);
offset           1871 Zend/zend_execute.c 			zend_uchar c = (zend_uchar)Z_STRVAL_P(container)[offset];
offset           1876 Zend/zend_execute.c 				ZVAL_NEW_STR(result, zend_string_init(Z_STRVAL_P(container) + offset, 1, 0));
offset           2654 Zend/zend_execute.c #define ZEND_VM_SET_RELATIVE_OPCODE(opline, offset) \
offset           2655 Zend/zend_execute.c 	ZEND_VM_SET_OPCODE(ZEND_OFFSET_TO_OPLINE(opline, offset))
offset           1111 Zend/zend_gc.c 					p = current->ref = (zend_refcounted*)(((char*)obj) - obj->handlers->offset);
offset            636 Zend/zend_inheritance.c 				int parent_num = OBJ_PROP_TO_NUM(parent_info->offset);
offset            637 Zend/zend_inheritance.c 				int child_num = OBJ_PROP_TO_NUM(child_info->offset);
offset            642 Zend/zend_inheritance.c 				child_info->offset = parent_info->offset;
offset            857 Zend/zend_inheritance.c 				property_info->offset += parent_ce->default_static_members_count;
offset            859 Zend/zend_inheritance.c 				property_info->offset += parent_ce->default_properties_count * sizeof(zval);
offset           1516 Zend/zend_inheritance.c 											  &ce->default_static_members_table[coliding_prop->offset],
offset           1517 Zend/zend_inheritance.c 											  &ce->traits[i]->default_static_members_table[property_info->offset]))
offset           1521 Zend/zend_inheritance.c 											  &ce->default_properties_table[OBJ_PROP_TO_NUM(coliding_prop->offset)],
offset           1522 Zend/zend_inheritance.c 											  &ce->traits[i]->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)]))
offset           1546 Zend/zend_inheritance.c 				prop_value = &ce->traits[i]->default_static_members_table[property_info->offset];
offset           1548 Zend/zend_inheritance.c 				prop_value = &ce->traits[i]->default_properties_table[OBJ_PROP_TO_NUM(property_info->offset)];
offset            523 Zend/zend_interfaces.c 	ZEND_ARG_INFO(0, offset)
offset            527 Zend/zend_interfaces.c 	ZEND_ARG_INFO(0, offset)
offset            531 Zend/zend_interfaces.c 	ZEND_ARG_INFO(0, offset)
offset            500 Zend/zend_language_scanner.c 	size_t size, offset = 0;
offset            505 Zend/zend_language_scanner.c 		if ((offset = ftell(file_handle->handle.fp)) == -1) {
offset            506 Zend/zend_language_scanner.c 			offset = 0;
offset            543 Zend/zend_language_scanner.c 		SCNG(yy_start) = (unsigned char *)buf - offset;
offset            718 Zend/zend_language_scanner.c 	size_t offset = SCNG(yy_cursor) - SCNG(yy_start);
offset            720 Zend/zend_language_scanner.c 		size_t original_offset = offset, length = 0;
offset            723 Zend/zend_language_scanner.c 			if ((size_t)-1 == SCNG(input_filter)(&p, &length, SCNG(script_org), offset)) {
offset            728 Zend/zend_language_scanner.c 				offset--;
offset            730 Zend/zend_language_scanner.c 				offset++;
offset            734 Zend/zend_language_scanner.c 	return offset;
offset            122 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            131 Zend/zend_multiply.h 	       "rm"(offset));
offset            143 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            160 Zend/zend_multiply.h 		  "rm"(offset));
offset            173 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            182 Zend/zend_multiply.h 		  "0"(offset),
offset            195 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            204 Zend/zend_multiply.h 		  "r"(offset));
offset            216 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            228 Zend/zend_multiply.h                "r"(offset));
offset            240 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            242 Zend/zend_multiply.h 	uint64_t res = (uint64_t) nmemb * (uint64_t) size + (uint64_t) offset;
offset            254 Zend/zend_multiply.h static zend_always_inline size_t zend_safe_address(size_t nmemb, size_t size, size_t offset, int *overflow)
offset            256 Zend/zend_multiply.h 	size_t res = nmemb * size + offset;
offset            257 Zend/zend_multiply.h 	double _d  = (double)nmemb * (double)size + (double)offset;
offset             88 Zend/zend_object_handlers.c 					if (UNEXPECTED(Z_TYPE_P(OBJ_PROP(zobj, prop_info->offset)) == IS_UNDEF)) {
offset             93 Zend/zend_object_handlers.c 						OBJ_PROP(zobj, prop_info->offset));
offset            104 Zend/zend_object_handlers.c 						if (UNEXPECTED(Z_TYPE_P(OBJ_PROP(zobj, prop_info->offset)) == IS_UNDEF)) {
offset            108 Zend/zend_object_handlers.c 						ZVAL_INDIRECT(&zv, OBJ_PROP(zobj, prop_info->offset));
offset            375 Zend/zend_object_handlers.c 		CACHE_POLYMORPHIC_PTR_EX(cache_slot, ce, (void*)(intptr_t)property_info->offset);
offset            377 Zend/zend_object_handlers.c 	return property_info->offset;
offset            707 Zend/zend_object_handlers.c zval *zend_std_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */
offset            713 Zend/zend_object_handlers.c 		if(offset == NULL) {
offset            716 Zend/zend_object_handlers.c 			offset = &tmp;
offset            718 Zend/zend_object_handlers.c 			SEPARATE_ARG_IF_REF(offset);
offset            720 Zend/zend_object_handlers.c 		zend_call_method_with_1_params(object, ce, NULL, "offsetget", rv, offset);
offset            722 Zend/zend_object_handlers.c 		zval_ptr_dtor(offset);
offset            738 Zend/zend_object_handlers.c static void zend_std_write_dimension(zval *object, zval *offset, zval *value) /* {{{ */
offset            744 Zend/zend_object_handlers.c 		if (!offset) {
offset            746 Zend/zend_object_handlers.c 			offset = &tmp;
offset            748 Zend/zend_object_handlers.c 			SEPARATE_ARG_IF_REF(offset);
offset            750 Zend/zend_object_handlers.c 		zend_call_method_with_2_params(object, ce, NULL, "offsetset", NULL, offset, value);
offset            751 Zend/zend_object_handlers.c 		zval_ptr_dtor(offset);
offset            758 Zend/zend_object_handlers.c static int zend_std_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */
offset            765 Zend/zend_object_handlers.c 		SEPARATE_ARG_IF_REF(offset);
offset            766 Zend/zend_object_handlers.c 		zend_call_method_with_1_params(object, ce, NULL, "offsetexists", &retval, offset);
offset            771 Zend/zend_object_handlers.c 				zend_call_method_with_1_params(object, ce, NULL, "offsetget", &retval, offset);
offset            780 Zend/zend_object_handlers.c 		zval_ptr_dtor(offset);
offset            939 Zend/zend_object_handlers.c static void zend_std_unset_dimension(zval *object, zval *offset) /* {{{ */
offset            944 Zend/zend_object_handlers.c 		SEPARATE_ARG_IF_REF(offset);
offset            945 Zend/zend_object_handlers.c 		zend_call_method_with_1_params(object, ce, NULL, "offsetunset", NULL, offset);
offset            946 Zend/zend_object_handlers.c 		zval_ptr_dtor(offset);
offset           1295 Zend/zend_object_handlers.c 	ret = CE_STATIC_MEMBERS(ce) + property_info->offset;
offset             41 Zend/zend_object_handlers.h typedef zval *(*zend_object_read_dimension_t)(zval *object, zval *offset, int type, zval *rv);
offset             53 Zend/zend_object_handlers.h typedef void (*zend_object_write_dimension_t)(zval *object, zval *offset, zval *value);
offset             83 Zend/zend_object_handlers.h typedef void (*zend_object_unset_dimension_t)(zval *object, zval *offset);
offset            126 Zend/zend_object_handlers.h 	int										offset;
offset            139 Zend/zend_objects_API.c 	void *ptr = ((char*)object) - object->handlers->offset;
offset            189 Zend/zend_objects_API.c 				ptr = ((char*)object) - object->handlers->offset;
offset             38 Zend/zend_sort.c 	size_t          offset;
offset             48 Zend/zend_sort.c 			offset = (end - begin) >> Z_L(1);
offset             49 Zend/zend_sort.c 			swp(begin, begin + (offset - (offset % siz)));
offset            327 Zend/zend_sort.c 			size_t offset = (nmemb >> Z_L(1));
offset            328 Zend/zend_sort.c 			char *pivot = start + (offset * siz);
offset            331 Zend/zend_sort.c 				size_t delta = (offset >> Z_L(1)) * siz;
offset            239 Zend/zend_stream.c 				zend_long offset = ftell(file_handle->handle.fp);
offset            242 Zend/zend_stream.c 				if (offset != -1) {
offset            243 Zend/zend_stream.c 					*buf += offset;
offset            244 Zend/zend_stream.c 					size -= offset;
offset            272 Zend/zend_virtual_cwd.c 			unsigned int offset = 4;
offset            277 Zend/zend_virtual_cwd.c 				offset += 2;
offset            279 Zend/zend_virtual_cwd.c 				target[offset] = '\\';
offset            282 Zend/zend_virtual_cwd.c 			memcpy(tmp, target + offset, dwRet);
offset           1802 Zend/zend_vm_def.h 	zval *offset;
offset           1813 Zend/zend_vm_def.h 	offset = GET_OP2_ZVAL_PTR(BP_VAR_R);
offset           1833 Zend/zend_vm_def.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           1834 Zend/zend_vm_def.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           1843 Zend/zend_vm_def.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           1856 Zend/zend_vm_def.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           1936 Zend/zend_vm_def.h 	zval *offset;
offset           1947 Zend/zend_vm_def.h 	offset  = GET_OP2_ZVAL_PTR(BP_VAR_R);
offset           1967 Zend/zend_vm_def.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           1968 Zend/zend_vm_def.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           1977 Zend/zend_vm_def.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           1990 Zend/zend_vm_def.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           2218 Zend/zend_vm_def.h 					zend_long offset;
offset           2221 Zend/zend_vm_def.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           2224 Zend/zend_vm_def.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           5204 Zend/zend_vm_def.h 		zval *offset = GET_OP2_ZVAL_PTR_UNDEF(BP_VAR_R);
offset           5209 Zend/zend_vm_def.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           5210 Zend/zend_vm_def.h 			str = Z_STR_P(offset);
offset           5218 Zend/zend_vm_def.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           5219 Zend/zend_vm_def.h 			hval = Z_LVAL_P(offset);
offset           5222 Zend/zend_vm_def.h 		} else if ((OP2_TYPE & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           5223 Zend/zend_vm_def.h 			offset = Z_REFVAL_P(offset);
offset           5225 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           5228 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           5229 Zend/zend_vm_def.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           5231 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           5234 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           5237 Zend/zend_vm_def.h 		} else if (OP2_TYPE == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           5238 Zend/zend_vm_def.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           5600 Zend/zend_vm_def.h 	zval *offset;
offset           5616 Zend/zend_vm_def.h 	offset = GET_OP2_ZVAL_PTR_UNDEF(BP_VAR_R);
offset           5626 Zend/zend_vm_def.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           5627 Zend/zend_vm_def.h 				key = Z_STR_P(offset);
offset           5639 Zend/zend_vm_def.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           5640 Zend/zend_vm_def.h 				hval = Z_LVAL_P(offset);
offset           5643 Zend/zend_vm_def.h 			} else if ((OP2_TYPE & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           5644 Zend/zend_vm_def.h 				offset = Z_REFVAL_P(offset);
offset           5646 Zend/zend_vm_def.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           5647 Zend/zend_vm_def.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           5649 Zend/zend_vm_def.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           5652 Zend/zend_vm_def.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           5655 Zend/zend_vm_def.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           5658 Zend/zend_vm_def.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           5659 Zend/zend_vm_def.h 				hval = Z_RES_HANDLE_P(offset);
offset           5661 Zend/zend_vm_def.h 			} else if (OP2_TYPE == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           5662 Zend/zend_vm_def.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           5675 Zend/zend_vm_def.h 		if (OP2_TYPE == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           5676 Zend/zend_vm_def.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           5682 Zend/zend_vm_def.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           5699 Zend/zend_vm_def.h 	zval *offset;
offset           5713 Zend/zend_vm_def.h 	offset = GET_OP2_ZVAL_PTR(BP_VAR_R);
offset           5727 Zend/zend_vm_def.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           6493 Zend/zend_vm_def.h 	zval *offset;
offset           6504 Zend/zend_vm_def.h 	offset = GET_OP2_ZVAL_PTR_UNDEF(BP_VAR_R);
offset           6514 Zend/zend_vm_def.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           6515 Zend/zend_vm_def.h 			str = Z_STR_P(offset);
offset           6523 Zend/zend_vm_def.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           6524 Zend/zend_vm_def.h 			hval = Z_LVAL_P(offset);
offset           6527 Zend/zend_vm_def.h 		} else if ((OP2_TYPE & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           6528 Zend/zend_vm_def.h 			offset = Z_REFVAL_P(offset);
offset           6530 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           6531 Zend/zend_vm_def.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           6533 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           6536 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           6539 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           6542 Zend/zend_vm_def.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           6543 Zend/zend_vm_def.h 			hval = Z_RES_HANDLE_P(offset);
offset           6545 Zend/zend_vm_def.h 		} else if (OP2_TYPE == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           6546 Zend/zend_vm_def.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           6569 Zend/zend_vm_def.h 	if (OP2_TYPE == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           6570 Zend/zend_vm_def.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           6578 Zend/zend_vm_def.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           6586 Zend/zend_vm_def.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           6587 Zend/zend_vm_def.h 			lval = Z_LVAL_P(offset);
offset           6600 Zend/zend_vm_def.h 				ZVAL_DEREF(offset);
offset           6602 Zend/zend_vm_def.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           6603 Zend/zend_vm_def.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           6604 Zend/zend_vm_def.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           6605 Zend/zend_vm_def.h 				lval = zval_get_long(offset);
offset           6629 Zend/zend_vm_def.h 	zval *offset;
offset           6640 Zend/zend_vm_def.h 	offset = GET_OP2_ZVAL_PTR(BP_VAR_R);
offset           6660 Zend/zend_vm_def.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((OP2_TYPE == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           5197 Zend/zend_vm_execute.h 	zval *offset;
offset           5208 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           5228 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           5229 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           5238 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           5251 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           5269 Zend/zend_vm_execute.h 	zval *offset;
offset           5280 Zend/zend_vm_execute.h 	offset  = EX_CONSTANT(opline->op2);
offset           5300 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           5301 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           5310 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           5323 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           6038 Zend/zend_vm_execute.h 		zval *offset = EX_CONSTANT(opline->op2);
offset           6043 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           6044 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           6052 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           6053 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           6056 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           6057 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           6059 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           6062 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           6063 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           6065 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           6068 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           6071 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           6072 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           6304 Zend/zend_vm_execute.h 	zval *offset;
offset           6315 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           6325 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           6326 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           6334 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           6335 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           6338 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           6339 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           6341 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           6342 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           6344 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           6347 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           6350 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           6353 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           6354 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           6356 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           6357 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           6380 Zend/zend_vm_execute.h 	if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           6381 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           6389 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           6397 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           6398 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           6411 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           6413 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           6414 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           6415 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           6416 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           6440 Zend/zend_vm_execute.h 	zval *offset;
offset           6451 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           6471 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           7852 Zend/zend_vm_execute.h 		zval *offset = NULL;
offset           7857 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           7858 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           7866 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           7867 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           7870 Zend/zend_vm_execute.h 		} else if ((IS_UNUSED & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           7871 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           7873 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           7876 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           7877 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           7879 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           7882 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           7885 Zend/zend_vm_execute.h 		} else if (IS_UNUSED == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           7886 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           8987 Zend/zend_vm_execute.h 	zval *offset;
offset           8998 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           9018 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           9019 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           9028 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           9041 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           9059 Zend/zend_vm_execute.h 	zval *offset;
offset           9070 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           9090 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           9091 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           9100 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           9113 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           9727 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           9732 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           9733 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           9741 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           9742 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           9745 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           9746 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           9748 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           9751 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           9752 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           9754 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           9757 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           9760 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           9761 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           9813 Zend/zend_vm_execute.h 	zval *offset;
offset           9824 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           9834 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           9835 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           9843 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           9844 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           9847 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           9848 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           9850 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           9851 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           9853 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           9856 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           9859 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           9862 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           9863 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           9865 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           9866 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           9889 Zend/zend_vm_execute.h 	if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           9890 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           9898 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           9906 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           9907 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           9920 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           9922 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           9923 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           9924 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           9925 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           9949 Zend/zend_vm_execute.h 	zval *offset;
offset           9960 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           9980 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           10807 Zend/zend_vm_execute.h 	zval *offset;
offset           10818 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           10838 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           10839 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           10848 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           10861 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           10880 Zend/zend_vm_execute.h 	zval *offset;
offset           10891 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           10911 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           10912 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           10921 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           10934 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           11501 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           11506 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           11507 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           11515 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           11516 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           11519 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           11520 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           11522 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           11525 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           11526 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           11528 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           11531 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           11534 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           11535 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           11587 Zend/zend_vm_execute.h 	zval *offset;
offset           11598 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           11608 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           11609 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           11617 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           11618 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           11621 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           11622 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           11624 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           11625 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           11627 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           11630 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           11633 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           11636 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           11637 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           11639 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           11640 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           11663 Zend/zend_vm_execute.h 	if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           11664 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           11672 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           11680 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           11681 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           11694 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           11696 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           11697 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           11698 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           11699 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           11723 Zend/zend_vm_execute.h 	zval *offset;
offset           11734 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           11754 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           12709 Zend/zend_vm_execute.h 	zval *offset;
offset           12720 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           12740 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           12741 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           12750 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           12763 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           12954 Zend/zend_vm_execute.h 		zval *offset = EX_CONSTANT(opline->op2);
offset           12959 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           12960 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           12968 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           12969 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           12972 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           12973 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           12975 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           12978 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           12979 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           12981 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           12984 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           12987 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           12988 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           13678 Zend/zend_vm_execute.h 		zval *offset = NULL;
offset           13683 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           13684 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           13692 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           13693 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           13696 Zend/zend_vm_execute.h 		} else if ((IS_UNUSED & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           13697 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           13699 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           13702 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           13703 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           13705 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           13708 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           13711 Zend/zend_vm_execute.h 		} else if (IS_UNUSED == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           13712 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           13982 Zend/zend_vm_execute.h 	zval *offset;
offset           13993 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           14013 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           14014 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           14023 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           14036 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           14227 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           14232 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           14233 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           14241 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           14242 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           14245 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           14246 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           14248 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           14251 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           14252 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           14254 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           14257 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           14260 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           14261 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           14495 Zend/zend_vm_execute.h 	zval *offset;
offset           14506 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           14526 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           14527 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           14536 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           14549 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           14741 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           14746 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           14747 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           14755 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           14756 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           14759 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           14760 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           14762 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           14765 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           14766 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           14768 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           14771 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           14774 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           14775 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           17164 Zend/zend_vm_execute.h 	zval *offset;
offset           17175 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           17195 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           17196 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           17205 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           17218 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           17462 Zend/zend_vm_execute.h 					zend_long offset;
offset           17465 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           17468 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           17827 Zend/zend_vm_execute.h 		zval *offset = EX_CONSTANT(opline->op2);
offset           17832 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           17833 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           17841 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           17842 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           17845 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           17846 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           17848 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           17851 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           17852 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           17854 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           17857 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           17860 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           17861 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           17911 Zend/zend_vm_execute.h 	zval *offset;
offset           17927 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           17937 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           17938 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           17950 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           17951 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           17954 Zend/zend_vm_execute.h 			} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           17955 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           17957 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           17958 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           17960 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           17963 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           17966 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           17969 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           17970 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           17972 Zend/zend_vm_execute.h 			} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           17973 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           17986 Zend/zend_vm_execute.h 		if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           17987 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           17993 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           18009 Zend/zend_vm_execute.h 	zval *offset;
offset           18023 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           18037 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           19125 Zend/zend_vm_execute.h 					zend_long offset;
offset           19128 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           19131 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           19412 Zend/zend_vm_execute.h 		zval *offset = NULL;
offset           19417 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           19418 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           19426 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           19427 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           19430 Zend/zend_vm_execute.h 		} else if ((IS_UNUSED & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           19431 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           19433 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           19436 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           19437 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           19439 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           19442 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           19445 Zend/zend_vm_execute.h 		} else if (IS_UNUSED == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           19446 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           20368 Zend/zend_vm_execute.h 	zval *offset;
offset           20379 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           20399 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           20400 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           20409 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           20422 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           20666 Zend/zend_vm_execute.h 					zend_long offset;
offset           20669 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           20672 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           20983 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           20988 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           20989 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           20997 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           20998 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           21001 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           21002 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           21004 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           21007 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           21008 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           21010 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           21013 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           21016 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           21017 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           21067 Zend/zend_vm_execute.h 	zval *offset;
offset           21083 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           21093 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           21094 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           21106 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           21107 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           21110 Zend/zend_vm_execute.h 			} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           21111 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           21113 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           21114 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           21116 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           21119 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           21122 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           21125 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           21126 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           21128 Zend/zend_vm_execute.h 			} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           21129 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           21142 Zend/zend_vm_execute.h 		if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           21143 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           21149 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           21165 Zend/zend_vm_execute.h 	zval *offset;
offset           21179 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           21193 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           22031 Zend/zend_vm_execute.h 	zval *offset;
offset           22042 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           22062 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           22063 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           22072 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           22085 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           22330 Zend/zend_vm_execute.h 					zend_long offset;
offset           22333 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           22336 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           22560 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           22565 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           22566 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           22574 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           22575 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           22578 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           22579 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           22581 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           22584 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           22585 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           22587 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           22590 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           22593 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           22594 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           22644 Zend/zend_vm_execute.h 	zval *offset;
offset           22660 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           22670 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           22671 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           22683 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           22684 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           22687 Zend/zend_vm_execute.h 			} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           22688 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           22690 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           22691 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           22693 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           22696 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           22699 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           22702 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           22703 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           22705 Zend/zend_vm_execute.h 			} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           22706 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           22719 Zend/zend_vm_execute.h 		if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           22720 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           22726 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           22743 Zend/zend_vm_execute.h 	zval *offset;
offset           22757 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           22771 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           23429 Zend/zend_vm_execute.h 	zval *offset;
offset           23440 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           23460 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           23461 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           23470 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           23483 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           23562 Zend/zend_vm_execute.h 	zval *offset;
offset           23573 Zend/zend_vm_execute.h 	offset  = EX_CONSTANT(opline->op2);
offset           23593 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           23594 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           23603 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           23616 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           24026 Zend/zend_vm_execute.h 	zval *offset;
offset           24042 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           24052 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           24053 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           24065 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           24066 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           24069 Zend/zend_vm_execute.h 			} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           24070 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           24072 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           24073 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           24075 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           24078 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           24081 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           24084 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           24085 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           24087 Zend/zend_vm_execute.h 			} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           24088 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           24101 Zend/zend_vm_execute.h 		if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           24102 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           24108 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           24124 Zend/zend_vm_execute.h 	zval *offset;
offset           24138 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           24152 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           24169 Zend/zend_vm_execute.h 	zval *offset;
offset           24180 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           24190 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           24191 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           24199 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           24200 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           24203 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           24204 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           24206 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           24207 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           24209 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           24212 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           24215 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           24218 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           24219 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           24221 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           24222 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           24245 Zend/zend_vm_execute.h 	if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           24246 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           24254 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           24262 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           24263 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           24276 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           24278 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           24279 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           24280 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           24281 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           24305 Zend/zend_vm_execute.h 	zval *offset;
offset           24316 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           24336 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           25844 Zend/zend_vm_execute.h 	zval *offset;
offset           25855 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           25875 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           25876 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           25885 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           25898 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           25977 Zend/zend_vm_execute.h 	zval *offset;
offset           25988 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           26008 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           26009 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           26018 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           26031 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           26334 Zend/zend_vm_execute.h 	zval *offset;
offset           26350 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           26360 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           26361 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           26373 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           26374 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           26377 Zend/zend_vm_execute.h 			} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           26378 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           26380 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           26381 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           26383 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           26386 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           26389 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           26392 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           26393 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           26395 Zend/zend_vm_execute.h 			} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           26396 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           26409 Zend/zend_vm_execute.h 		if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           26410 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           26416 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           26432 Zend/zend_vm_execute.h 	zval *offset;
offset           26446 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           26460 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           26477 Zend/zend_vm_execute.h 	zval *offset;
offset           26488 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           26498 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           26499 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           26507 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           26508 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           26511 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           26512 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           26514 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           26515 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           26517 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           26520 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           26523 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           26526 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           26527 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           26529 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           26530 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           26553 Zend/zend_vm_execute.h 	if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           26554 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           26562 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           26570 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           26571 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           26584 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           26586 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           26587 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           26588 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           26589 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           26613 Zend/zend_vm_execute.h 	zval *offset;
offset           26624 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           26644 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           27334 Zend/zend_vm_execute.h 	zval *offset;
offset           27345 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           27365 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           27366 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           27375 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           27388 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           27468 Zend/zend_vm_execute.h 	zval *offset;
offset           27479 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           27499 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           27500 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           27509 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           27522 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           27827 Zend/zend_vm_execute.h 	zval *offset;
offset           27843 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           27853 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           27854 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           27866 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           27867 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           27870 Zend/zend_vm_execute.h 			} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           27871 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           27873 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           27874 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           27876 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           27879 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           27882 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           27885 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           27886 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           27888 Zend/zend_vm_execute.h 			} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           27889 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           27902 Zend/zend_vm_execute.h 		if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           27903 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           27909 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           27926 Zend/zend_vm_execute.h 	zval *offset;
offset           27940 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           27954 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           27972 Zend/zend_vm_execute.h 	zval *offset;
offset           27983 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           27993 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           27994 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           28002 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           28003 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           28006 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           28007 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           28009 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           28010 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           28012 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           28015 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           28018 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           28021 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           28022 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           28024 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           28025 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           28048 Zend/zend_vm_execute.h 	if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           28049 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           28057 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           28065 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           28066 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           28079 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           28081 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           28082 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           28083 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           28084 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           28108 Zend/zend_vm_execute.h 	zval *offset;
offset           28119 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           28139 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           31382 Zend/zend_vm_execute.h 	zval *offset;
offset           31393 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           31413 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           31414 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           31423 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           31436 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           31515 Zend/zend_vm_execute.h 	zval *offset;
offset           31526 Zend/zend_vm_execute.h 	offset  = EX_CONSTANT(opline->op2);
offset           31546 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           31547 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           31556 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           31569 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           31796 Zend/zend_vm_execute.h 					zend_long offset;
offset           31799 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           31802 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           32173 Zend/zend_vm_execute.h 		zval *offset = EX_CONSTANT(opline->op2);
offset           32178 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           32179 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           32187 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           32188 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           32191 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           32192 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           32194 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           32197 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           32198 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           32200 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           32203 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           32206 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           32207 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           32338 Zend/zend_vm_execute.h 	zval *offset;
offset           32354 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           32364 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           32365 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           32377 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           32378 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           32381 Zend/zend_vm_execute.h 			} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           32382 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           32384 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           32385 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           32387 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           32390 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           32393 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           32396 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           32397 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           32399 Zend/zend_vm_execute.h 			} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           32400 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           32413 Zend/zend_vm_execute.h 		if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           32414 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           32420 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           32436 Zend/zend_vm_execute.h 	zval *offset;
offset           32450 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           32464 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           32580 Zend/zend_vm_execute.h 	zval *offset;
offset           32591 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           32601 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           32602 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           32610 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           32611 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           32614 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           32615 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           32617 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           32618 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           32620 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           32623 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           32626 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           32629 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           32630 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           32632 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           32633 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           32656 Zend/zend_vm_execute.h 	if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           32657 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           32665 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           32673 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           32674 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           32687 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           32689 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           32690 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           32691 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           32692 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           32716 Zend/zend_vm_execute.h 	zval *offset;
offset           32727 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           32747 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           34559 Zend/zend_vm_execute.h 					zend_long offset;
offset           34562 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           34565 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           34705 Zend/zend_vm_execute.h 		zval *offset = NULL;
offset           34710 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           34711 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           34719 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           34720 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           34723 Zend/zend_vm_execute.h 		} else if ((IS_UNUSED & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           34724 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           34726 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           34729 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           34730 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           34732 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           34735 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           34738 Zend/zend_vm_execute.h 		} else if (IS_UNUSED == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           34739 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           36452 Zend/zend_vm_execute.h 	zval *offset;
offset           36463 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           36483 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           36484 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           36493 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           36506 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           36585 Zend/zend_vm_execute.h 	zval *offset;
offset           36596 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           36616 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           36617 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           36626 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           36639 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           36822 Zend/zend_vm_execute.h 					zend_long offset;
offset           36825 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           36828 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           37257 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           37262 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           37263 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           37271 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           37272 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           37275 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           37276 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           37278 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           37281 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           37282 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           37284 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           37287 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           37290 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           37291 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           37341 Zend/zend_vm_execute.h 	zval *offset;
offset           37357 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           37367 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           37368 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           37380 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           37381 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           37384 Zend/zend_vm_execute.h 			} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           37385 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           37387 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           37388 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           37390 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           37393 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           37396 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           37399 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           37400 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           37402 Zend/zend_vm_execute.h 			} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           37403 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           37416 Zend/zend_vm_execute.h 		if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           37417 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           37423 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           37439 Zend/zend_vm_execute.h 	zval *offset;
offset           37453 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           37467 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           37484 Zend/zend_vm_execute.h 	zval *offset;
offset           37495 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           37505 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           37506 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           37514 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           37515 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           37518 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           37519 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           37521 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           37522 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           37524 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           37527 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           37530 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           37533 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           37534 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           37536 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           37537 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           37560 Zend/zend_vm_execute.h 	if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           37561 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           37569 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           37577 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           37578 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           37591 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           37593 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           37594 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           37595 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           37596 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           37620 Zend/zend_vm_execute.h 	zval *offset;
offset           37631 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           37651 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           39116 Zend/zend_vm_execute.h 	zval *offset;
offset           39127 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           39147 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           39148 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           39157 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           39170 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_R, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           39250 Zend/zend_vm_execute.h 	zval *offset;
offset           39261 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           39281 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           39282 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           39291 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           39304 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           39488 Zend/zend_vm_execute.h 					zend_long offset;
offset           39491 Zend/zend_vm_execute.h 					offset = zend_fetch_string_offset(object_ptr, dim, BP_VAR_W);
offset           39494 Zend/zend_vm_execute.h 					zend_assign_to_string_offset(object_ptr, offset, value, (UNEXPECTED(RETURN_VALUE_USED(opline)) ? EX_VAR(opline->result.var) : NULL));
offset           39838 Zend/zend_vm_execute.h 		zval *offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           39843 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           39844 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           39852 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           39853 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           39856 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           39857 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           39859 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           39862 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           39863 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           39865 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           39868 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           39871 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           39872 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           39922 Zend/zend_vm_execute.h 	zval *offset;
offset           39938 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           39948 Zend/zend_vm_execute.h 			if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           39949 Zend/zend_vm_execute.h 				key = Z_STR_P(offset);
offset           39961 Zend/zend_vm_execute.h 			} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           39962 Zend/zend_vm_execute.h 				hval = Z_LVAL_P(offset);
offset           39965 Zend/zend_vm_execute.h 			} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_TYPE_P(offset) == IS_REFERENCE)) {
offset           39966 Zend/zend_vm_execute.h 				offset = Z_REFVAL_P(offset);
offset           39968 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           39969 Zend/zend_vm_execute.h 				hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           39971 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           39974 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           39977 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           39980 Zend/zend_vm_execute.h 			} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           39981 Zend/zend_vm_execute.h 				hval = Z_RES_HANDLE_P(offset);
offset           39983 Zend/zend_vm_execute.h 			} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           39984 Zend/zend_vm_execute.h 				GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           39997 Zend/zend_vm_execute.h 		if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           39998 Zend/zend_vm_execute.h 			offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           40004 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->unset_dimension(container, offset);
offset           40021 Zend/zend_vm_execute.h 	zval *offset;
offset           40035 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           40049 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->unset_property(container, offset, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           40067 Zend/zend_vm_execute.h 	zval *offset;
offset           40078 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           40088 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           40089 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           40097 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           40098 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           40101 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           40102 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           40104 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           40105 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           40107 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           40110 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           40113 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           40116 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           40117 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           40119 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           40120 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           40143 Zend/zend_vm_execute.h 	if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           40144 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           40152 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           40160 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           40161 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           40174 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           40176 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           40177 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           40178 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           40179 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           40203 Zend/zend_vm_execute.h 	zval *offset;
offset           40214 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           40234 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           41651 Zend/zend_vm_execute.h 	zval *offset;
offset           41662 Zend/zend_vm_execute.h 	offset  = EX_CONSTANT(opline->op2);
offset           41682 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           41683 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           41692 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           41705 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           42210 Zend/zend_vm_execute.h 	zval *offset;
offset           42221 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           42231 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           42232 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           42240 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           42241 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           42244 Zend/zend_vm_execute.h 		} else if ((IS_CONST & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           42245 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           42247 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           42248 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           42250 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           42253 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           42256 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           42259 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           42260 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           42262 Zend/zend_vm_execute.h 		} else if (IS_CONST == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           42263 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           42286 Zend/zend_vm_execute.h 	if (IS_CONST == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           42287 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           42295 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           42303 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           42304 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           42317 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           42319 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           42320 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           42321 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           42322 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           42346 Zend/zend_vm_execute.h 	zval *offset;
offset           42357 Zend/zend_vm_execute.h 	offset = EX_CONSTANT(opline->op2);
offset           42377 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CONST == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           43843 Zend/zend_vm_execute.h 	zval *offset;
offset           43854 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           43874 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           43875 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           43884 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           43897 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           44177 Zend/zend_vm_execute.h 	zval *offset;
offset           44188 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_undef(execute_data, opline->op2.var);
offset           44198 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           44199 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           44207 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           44208 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           44211 Zend/zend_vm_execute.h 		} else if ((IS_CV & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           44212 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           44214 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           44215 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           44217 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           44220 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           44223 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           44226 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           44227 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           44229 Zend/zend_vm_execute.h 		} else if (IS_CV == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           44230 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           44253 Zend/zend_vm_execute.h 	if (IS_CV == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           44254 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           44262 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           44270 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           44271 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           44284 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           44286 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           44287 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           44288 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           44289 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           44313 Zend/zend_vm_execute.h 	zval *offset;
offset           44324 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_cv_BP_VAR_R(execute_data, opline->op2.var);
offset           44344 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, ((IS_CV == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset           44988 Zend/zend_vm_execute.h 	zval *offset;
offset           44999 Zend/zend_vm_execute.h 	offset  = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           45019 Zend/zend_vm_execute.h 			EXPECTED(zobj->ce == CACHED_PTR(Z_CACHE_SLOT_P(offset)))) {
offset           45020 Zend/zend_vm_execute.h 			uint32_t prop_offset = (uint32_t)(intptr_t)CACHED_PTR(Z_CACHE_SLOT_P(offset) + sizeof(void*));
offset           45029 Zend/zend_vm_execute.h 				retval = zend_hash_find(zobj->properties, Z_STR_P(offset));
offset           45042 Zend/zend_vm_execute.h 			retval = zobj->handlers->read_property(container, offset, BP_VAR_IS, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL), EX_VAR(opline->result.var));
offset           45324 Zend/zend_vm_execute.h 	zval *offset;
offset           45335 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           45345 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_STRING)) {
offset           45346 Zend/zend_vm_execute.h 			str = Z_STR_P(offset);
offset           45354 Zend/zend_vm_execute.h 		} else if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           45355 Zend/zend_vm_execute.h 			hval = Z_LVAL_P(offset);
offset           45358 Zend/zend_vm_execute.h 		} else if (((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) && EXPECTED(Z_ISREF_P(offset))) {
offset           45359 Zend/zend_vm_execute.h 			offset = Z_REFVAL_P(offset);
offset           45361 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_DOUBLE) {
offset           45362 Zend/zend_vm_execute.h 			hval = zend_dval_to_lval(Z_DVAL_P(offset));
offset           45364 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_NULL) {
offset           45367 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_FALSE) {
offset           45370 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_TRUE) {
offset           45373 Zend/zend_vm_execute.h 		} else if (Z_TYPE_P(offset) == IS_RESOURCE) {
offset           45374 Zend/zend_vm_execute.h 			hval = Z_RES_HANDLE_P(offset);
offset           45376 Zend/zend_vm_execute.h 		} else if ((IS_TMP_VAR|IS_VAR) == IS_CV && Z_TYPE_P(offset) == IS_UNDEF) {
offset           45377 Zend/zend_vm_execute.h 			GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           45400 Zend/zend_vm_execute.h 	if ((IS_TMP_VAR|IS_VAR) == IS_CV && UNEXPECTED(Z_TYPE_P(offset) == IS_UNDEF)) {
offset           45401 Zend/zend_vm_execute.h 		offset = GET_OP2_UNDEF_CV(offset, BP_VAR_R);
offset           45409 Zend/zend_vm_execute.h 				Z_OBJ_HT_P(container)->has_dimension(container, offset, (opline->extended_value & ZEND_ISSET) == 0);
offset           45417 Zend/zend_vm_execute.h 		if (EXPECTED(Z_TYPE_P(offset) == IS_LONG)) {
offset           45418 Zend/zend_vm_execute.h 			lval = Z_LVAL_P(offset);
offset           45431 Zend/zend_vm_execute.h 				ZVAL_DEREF(offset);
offset           45433 Zend/zend_vm_execute.h 			if (Z_TYPE_P(offset) < IS_STRING /* simple scalar types */
offset           45434 Zend/zend_vm_execute.h 					|| (Z_TYPE_P(offset) == IS_STRING /* or numeric string */
offset           45435 Zend/zend_vm_execute.h 						&& IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
offset           45436 Zend/zend_vm_execute.h 				lval = zval_get_long(offset);
offset           45460 Zend/zend_vm_execute.h 	zval *offset;
offset           45471 Zend/zend_vm_execute.h 	offset = _get_zval_ptr_var(opline->op2.var, execute_data, &free_op2);
offset           45491 Zend/zend_vm_execute.h 			Z_OBJ_HT_P(container)->has_property(container, offset, (opline->extended_value & ZEND_ISSET) == 0, (((IS_TMP_VAR|IS_VAR) == IS_CONST) ? CACHE_ADDR(Z_CACHE_SLOT_P(offset)) : NULL));
offset             83 ext/com_dotnet/com_handlers.c static zval *com_read_dimension(zval *object, zval *offset, int type, zval *rv)
offset             96 ext/com_dotnet/com_handlers.c 				DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, 1, offset, 0, 0)) {
offset            101 ext/com_dotnet/com_handlers.c 		convert_to_long(offset);
offset            104 ext/com_dotnet/com_handlers.c 			if (php_com_safearray_get_elem(&obj->v, &v, (LONG)Z_LVAL_P(offset))) {
offset            109 ext/com_dotnet/com_handlers.c 			php_com_saproxy_create(object, rv, offset);
offset            119 ext/com_dotnet/com_handlers.c static void com_write_dimension(zval *object, zval *offset, zval *value)
offset            129 ext/com_dotnet/com_handlers.c 		ZVAL_COPY_VALUE(&args[0], offset);
offset            147 ext/com_dotnet/com_handlers.c 			convert_to_long(offset);
offset            148 ext/com_dotnet/com_handlers.c 			indices = (LONG)Z_LVAL_P(offset);
offset            222 ext/com_dotnet/com_handlers.c static void com_dimension_delete(zval *object, zval *offset)
offset            140 ext/com_dotnet/com_persist.c 	off_t offset;
offset            158 ext/com_dotnet/com_persist.c 	offset = (off_t) dlibMove.QuadPart;
offset            160 ext/com_dotnet/com_persist.c 	ret = php_stream_seek(stm->stream, offset, whence);
offset             88 ext/com_dotnet/com_saproxy.c static zval *saproxy_read_dimension(zval *object, zval *offset, int type, zval *rv)
offset            110 ext/com_dotnet/com_saproxy.c 		ZVAL_COPY_VALUE(&args[i-1], offset);
offset            124 ext/com_dotnet/com_saproxy.c 			php_com_saproxy_create(object, rv, offset);
offset            137 ext/com_dotnet/com_saproxy.c 	convert_to_long(offset);
offset            152 ext/com_dotnet/com_saproxy.c 	if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) {
offset            174 ext/com_dotnet/com_saproxy.c 		indices[dims-1] = (LONG)Z_LVAL_P(offset);
offset            200 ext/com_dotnet/com_saproxy.c 		php_com_saproxy_create(object, rv, offset);
offset            206 ext/com_dotnet/com_saproxy.c static void saproxy_write_dimension(zval *object, zval *offset, zval *value)
offset            222 ext/com_dotnet/com_saproxy.c 		ZVAL_COPY_VALUE(&args[i-1], offset);
offset            248 ext/com_dotnet/com_saproxy.c 		convert_to_long(offset);
offset            249 ext/com_dotnet/com_saproxy.c 		indices[dims-1] = (LONG)Z_LVAL_P(offset);
offset            308 ext/com_dotnet/com_saproxy.c static void saproxy_dimension_delete(zval *object, zval *offset)
offset            774 ext/date/lib/parse_date.c 		timelib_long offset = 0;
offset            780 ext/date/lib/parse_date.c 		offset = timelib_lookup_abbr(ptr, dst, &tz_abbr, &found);
offset            796 ext/date/lib/parse_date.c 		retval = offset;
offset            169 ext/date/lib/parse_tz.c 		tz->type[i].offset = (buffer[j] * 16777216) + (buffer[j + 1] * 65536) + (buffer[j + 2] * 256) + buffer[j + 3];
offset            197 ext/date/lib/parse_tz.c 			tz->leap_times[i].offset = timelib_conv_int(leap_buffer[i * 2 + 1]);
offset            279 ext/date/lib/parse_tz.c 		(long int) tz->type[0].offset,
offset            289 ext/date/lib/parse_tz.c 			(long int) tz->type[tz->trans_idx[i]].offset,
offset            301 ext/date/lib/parse_tz.c 			tz->leap_times[i].offset);
offset            483 ext/date/lib/parse_tz.c 	int32_t offset = 0, leap_secs = 0;
offset            489 ext/date/lib/parse_tz.c 		offset = to->offset;
offset            494 ext/date/lib/parse_tz.c 		offset = 0;
offset            501 ext/date/lib/parse_tz.c 		leap_secs = -tl->offset;
offset            504 ext/date/lib/parse_tz.c 	tmp->offset = offset;
offset            523 ext/date/lib/parse_tz.c 			retval = gmt_offset->offset;
offset            158 ext/date/lib/timelib_structs.h 	int32_t      offset;
offset            169 ext/date/lib/timelib_structs.h 	int32_t  offset;
offset            232 ext/date/lib/timelib_structs.h 	int32_t      offset;
offset            406 ext/date/lib/tm2unixtime.c 				after = timelib_get_time_zone_info(tz->sse - before->offset, tzi);
offset            410 ext/date/lib/tm2unixtime.c 					((tz->sse - after->offset) >= (after->transistion_time + (before->offset - after->offset))) &&
offset            411 ext/date/lib/tm2unixtime.c 					((tz->sse - after->offset) < after->transistion_time)
offset            414 ext/date/lib/tm2unixtime.c 				if ((before->offset != after->offset) && !in_transistion) {
offset            415 ext/date/lib/tm2unixtime.c 					tmp = -after->offset;
offset            426 ext/date/lib/tm2unixtime.c 					tz->z = gmt_offset->offset;
offset            161 ext/date/lib/unixtime2tm.c 			timelib_unixtime2gmt(tm, tm->sse + gmt_offset->offset);
offset            199 ext/date/lib/unixtime2tm.c 			timelib_unixtime2gmt(tm, ts + gmt_offset->offset);
offset            204 ext/date/lib/unixtime2tm.c 			tm->z = gmt_offset->offset;
offset            254 ext/date/lib/unixtime2tm.c 	t->z = gmt_offset->offset;
offset           1076 ext/date/php_date.c 	timelib_time_offset *offset = NULL;
offset           1087 ext/date/php_date.c 			offset = timelib_time_offset_ctor();
offset           1088 ext/date/php_date.c 			offset->offset = (t->z - (t->dst * 60)) * -60;
offset           1089 ext/date/php_date.c 			offset->leap_secs = 0;
offset           1090 ext/date/php_date.c 			offset->is_dst = t->dst;
offset           1091 ext/date/php_date.c 			offset->abbr = timelib_strdup(t->tz_abbr);
offset           1093 ext/date/php_date.c 			offset = timelib_time_offset_ctor();
offset           1094 ext/date/php_date.c 			offset->offset = (t->z) * -60;
offset           1095 ext/date/php_date.c 			offset->leap_secs = 0;
offset           1096 ext/date/php_date.c 			offset->is_dst = 0;
offset           1097 ext/date/php_date.c 			offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */
offset           1098 ext/date/php_date.c 			snprintf(offset->abbr, 9, "GMT%c%02d%02d",
offset           1099 ext/date/php_date.c 			                          localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1100 ext/date/php_date.c 			                          localtime ? abs(offset->offset / 3600) : 0,
offset           1101 ext/date/php_date.c 			                          localtime ? abs((offset->offset % 3600) / 60) : 0 );
offset           1103 ext/date/php_date.c 			offset = timelib_get_time_zone_info(t->sse, t->tz_info);
offset           1162 ext/date/php_date.c 			case 'I': length = slprintf(buffer, 32, "%d", localtime ? offset->is_dst : 0); break;
offset           1165 ext/date/php_date.c 											localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1166 ext/date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
offset           1168 ext/date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
offset           1171 ext/date/php_date.c 			case 'T': length = slprintf(buffer, 32, "%s", localtime ? offset->abbr : "GMT"); break;
offset           1180 ext/date/php_date.c 								  length = slprintf(buffer, 32, "%s", offset->abbr);
offset           1184 ext/date/php_date.c 												((offset->offset < 0) ? '-' : '+'),
offset           1185 ext/date/php_date.c 												abs(offset->offset / 3600),
offset           1186 ext/date/php_date.c 												abs((offset->offset % 3600) / 60)
offset           1192 ext/date/php_date.c 			case 'Z': length = slprintf(buffer, 32, "%d", localtime ? offset->offset : 0); break;
offset           1198 ext/date/php_date.c 											localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1199 ext/date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
offset           1200 ext/date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
offset           1207 ext/date/php_date.c 											localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1208 ext/date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
offset           1209 ext/date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
offset           1224 ext/date/php_date.c 		timelib_time_offset_dtor(offset);
offset           1279 ext/date/php_date.c 	timelib_time_offset *offset = NULL;
offset           1296 ext/date/php_date.c 			offset = timelib_time_offset_ctor();
offset           1297 ext/date/php_date.c 			offset->offset = (t->z - (t->dst * 60)) * -60;
offset           1298 ext/date/php_date.c 			offset->leap_secs = 0;
offset           1299 ext/date/php_date.c 			offset->is_dst = t->dst;
offset           1300 ext/date/php_date.c 			offset->abbr = timelib_strdup(t->tz_abbr);
offset           1302 ext/date/php_date.c 			offset = timelib_time_offset_ctor();
offset           1303 ext/date/php_date.c 			offset->offset = (t->z - (t->dst * 60)) * -60;
offset           1304 ext/date/php_date.c 			offset->leap_secs = 0;
offset           1305 ext/date/php_date.c 			offset->is_dst = t->dst;
offset           1306 ext/date/php_date.c 			offset->abbr = timelib_malloc(9); /* GMT±xxxx\0 */
offset           1307 ext/date/php_date.c 			snprintf(offset->abbr, 9, "GMT%c%02d%02d",
offset           1308 ext/date/php_date.c 			                          !localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1309 ext/date/php_date.c 			                          !localtime ? abs(offset->offset / 3600) : 0,
offset           1310 ext/date/php_date.c 			                          !localtime ? abs((offset->offset % 3600) / 60) : 0 );
offset           1312 ext/date/php_date.c 			offset = timelib_get_time_zone_info(t->sse, t->tz_info);
offset           1353 ext/date/php_date.c 		case 'I': retval = (int) (!localtime ? offset->is_dst : 0); break;
offset           1354 ext/date/php_date.c 		case 'Z': retval = (int) (!localtime ? offset->offset : 0); break;
offset           1360 ext/date/php_date.c 		timelib_time_offset_dtor(offset);
offset           1611 ext/date/php_date.c 	timelib_time_offset *offset = NULL;
offset           1651 ext/date/php_date.c 		offset = timelib_get_time_zone_info(timestamp, tzi);
offset           1653 ext/date/php_date.c 		ta.tm_isdst = offset->is_dst;
offset           1655 ext/date/php_date.c 		ta.tm_gmtoff = offset->offset;
offset           1658 ext/date/php_date.c 		ta.tm_zone = offset->abbr;
offset           1683 ext/date/php_date.c 		timelib_time_offset_dtor(offset);
offset           1985 ext/date/php_date.c 	date_object_handlers_date.offset = XtOffsetOf(php_date_obj, std);
offset           2022 ext/date/php_date.c 	date_object_handlers_timezone.offset = XtOffsetOf(php_timezone_obj, std);
offset           2050 ext/date/php_date.c 	date_object_handlers_interval.offset = XtOffsetOf(php_interval_obj, std);
offset           2066 ext/date/php_date.c 	date_object_handlers_period.offset = XtOffsetOf(php_period_obj, std);
offset           3323 ext/date/php_date.c 	timelib_time_offset *offset;
offset           3333 ext/date/php_date.c 				offset = timelib_get_time_zone_info(dateobj->time->sse, dateobj->time->tz_info);
offset           3334 ext/date/php_date.c 				RETVAL_LONG(offset->offset);
offset           3335 ext/date/php_date.c 				timelib_time_offset_dtor(offset);
offset           3800 ext/date/php_date.c 	timelib_time_offset *offset;
offset           3812 ext/date/php_date.c 			offset = timelib_get_time_zone_info(dateobj->time->sse, tzobj->tzi.tz);
offset           3813 ext/date/php_date.c 			RETVAL_LONG(offset->offset);
offset           3814 ext/date/php_date.c 			timelib_time_offset_dtor(offset);
offset           3849 ext/date/php_date.c 		add_assoc_long(&element, "offset", tzobj->tzi.tz->type[0].offset); \
offset           3858 ext/date/php_date.c 		add_assoc_long(&element, "offset", tzobj->tzi.tz->type[tzobj->tzi.tz->trans_idx[i]].offset); \
offset            228 ext/dba/dba_cdb.c int cdb_file_lseek(php_stream *fp, off_t offset, int whence) {
offset            229 ext/dba/dba_cdb.c 	php_stream_seek(fp, offset, whence);
offset            233 ext/dba/dba_cdb.c int cdb_file_lseek(int fd, off_t offset, int whence) {
offset            234 ext/dba/dba_cdb.c 	return lseek(fd, offset, whence);
offset             33 ext/dom/characterdata.c 	ZEND_ARG_INFO(0, offset)
offset             42 ext/dom/characterdata.c 	ZEND_ARG_INFO(0, offset)
offset             47 ext/dom/characterdata.c 	ZEND_ARG_INFO(0, offset)
offset             52 ext/dom/characterdata.c 	ZEND_ARG_INFO(0, offset)
offset            159 ext/dom/characterdata.c 	zend_long        offset, count;
offset            163 ext/dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILURE) {
offset            176 ext/dom/characterdata.c 	if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset > length) {
offset            182 ext/dom/characterdata.c 	if ((offset + count) > length) {
offset            183 ext/dom/characterdata.c 		count = length - offset;
offset            186 ext/dom/characterdata.c 	substring = xmlUTF8Strsub(cur, (int)offset, (int)count);
offset            242 ext/dom/characterdata.c 	zend_long        offset;
offset            247 ext/dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ols", &id, dom_characterdata_class_entry, &offset, &arg, &arg_len) == FAILURE) {
offset            260 ext/dom/characterdata.c 	if (offset < 0 || ZEND_LONG_INT_OVFL(offset) || offset > length) {
offset            266 ext/dom/characterdata.c 	first = xmlUTF8Strndup(cur, (int)offset);
offset            267 ext/dom/characterdata.c 	second = xmlUTF8Strsub(cur, (int)offset, length - (int)offset);
offset            290 ext/dom/characterdata.c 	zend_long        offset, count;
offset            294 ext/dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILURE) {
offset            307 ext/dom/characterdata.c 	if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset > length) {
offset            313 ext/dom/characterdata.c 	if (offset > 0) {
offset            314 ext/dom/characterdata.c 		substring = xmlUTF8Strsub(cur, 0, (int)offset);
offset            319 ext/dom/characterdata.c 	if ((offset + count) > length) {
offset            320 ext/dom/characterdata.c 		count = length - offset;
offset            323 ext/dom/characterdata.c 	second = xmlUTF8Strsub(cur, (int)offset + (int)count, length - (int)offset);
offset            346 ext/dom/characterdata.c 	zend_long        offset, count;
offset            351 ext/dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Olls", &id, dom_characterdata_class_entry, &offset, &count, &arg, &arg_len) == FAILURE) {
offset            364 ext/dom/characterdata.c 	if (offset < 0 || count < 0 || ZEND_LONG_INT_OVFL(offset) || ZEND_LONG_INT_OVFL(count) || offset > length) {
offset            370 ext/dom/characterdata.c 	if (offset > 0) {
offset            371 ext/dom/characterdata.c 		substring = xmlUTF8Strsub(cur, 0, (int)offset);
offset            376 ext/dom/characterdata.c 	if ((offset + count) > length) {
offset            377 ext/dom/characterdata.c 		count = length - offset;
offset            380 ext/dom/characterdata.c 	if (offset < length) {
offset            381 ext/dom/characterdata.c 		second = xmlUTF8Strsub(cur, (int)offset + count, length - (int)offset);
offset            490 ext/dom/php_dom.c 	nodeobj = (php_libxml_node_object *) ((char *) Z_OBJ_P(node) - Z_OBJ_HT_P(node)->offset);
offset            599 ext/dom/php_dom.c 	dom_object_handlers.offset = XtOffsetOf(dom_object, std);
offset            843 ext/dom/php_dom.c 	dom_xpath_object_handlers.offset = XtOffsetOf(dom_xpath_object, dom) + XtOffsetOf(dom_object, std);
offset           1538 ext/dom/php_dom.c zval *dom_nodelist_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */
offset           1542 ext/dom/php_dom.c 	if (!offset) {
offset           1546 ext/dom/php_dom.c 	ZVAL_LONG(&offset_copy, zval_get_long(offset));
offset           1555 ext/dom/php_dom.c 	zend_long offset = zval_get_long(member);
offset           1558 ext/dom/php_dom.c 	if (offset < 0) {
offset           1563 ext/dom/php_dom.c 		return length && offset < Z_LVAL_P(length);
offset            129 ext/dom/php_dom.h zval *dom_nodelist_read_dimension(zval *object, zval *offset, int type, zval *rv);
offset             33 ext/dom/text.c 	ZEND_ARG_INFO(0, offset)
offset            148 ext/dom/text.c 	zend_long        offset;
offset            152 ext/dom/text.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &id, dom_text_class_entry, &offset) == FAILURE) {
offset            167 ext/dom/text.c 	if (ZEND_LONG_INT_OVFL(offset) || (int)offset > length || offset < 0) {
offset            172 ext/dom/text.c 	first = xmlUTF8Strndup(cur, (int)offset);
offset            173 ext/dom/text.c 	second = xmlUTF8Strsub(cur, (int)offset, (int)(length - offset));
offset            976 ext/exif/exif.c 	int              offset;
offset           1029 ext/exif/exif.c static unsigned char* exif_char_dump(unsigned char * addr, int len, int offset)
offset           1039 ext/exif/exif.c 				p += slprintf(buf+p, sizeof(buf)-p, "\n%08X: ", i+offset);
offset           1490 ext/exif/exif.c 	size_t          offset;
offset           2437 ext/exif/exif.c 	if (!ImageInfo->read_thumbnail || !ImageInfo->Thumbnail.offset || !ImageInfo->Thumbnail.size) {
offset           2518 ext/exif/exif.c static void exif_thumbnail_extract(image_info_type *ImageInfo, char *offset, size_t length) {
offset           2529 ext/exif/exif.c 	 || ImageInfo->Thumbnail.offset <= 0
offset           2535 ext/exif/exif.c 	if ((ImageInfo->Thumbnail.offset + ImageInfo->Thumbnail.size) > length) {
offset           2539 ext/exif/exif.c 	ImageInfo->Thumbnail.data = estrndup(offset + ImageInfo->Thumbnail.offset, ImageInfo->Thumbnail.size);
offset           2726 ext/exif/exif.c 	dir_start = value_ptr + maker_note->offset;
offset           2729 ext/exif/exif.c 	exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Process %s @x%04X + 0x%04X=%d: %s", exif_get_sectionname(section_index), (int)dir_start-(int)offset_base+maker_note->offset+displacement, value_len, value_len, exif_char_dump(value_ptr, value_len, (int)dir_start-(int)offset_base+maker_note->offset+displacement));
offset           2756 ext/exif/exif.c 			exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Using automatic offset correction: 0x%04X", ((int)dir_start-(int)offset_base+maker_note->offset+displacement) + offset_diff);
offset           2918 ext/exif/exif.c 					ImageInfo->Thumbnail.offset = exif_convert_any_to_int(value_ptr, format, ImageInfo->motorola_intel);
offset           3158 ext/exif/exif.c 			&&  ImageInfo->Thumbnail.offset
offset           3670 ext/exif/exif.c 							&&  ImageInfo->Thumbnail.offset
offset           3674 ext/exif/exif.c 								exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "%s THUMBNAIL @0x%04X + 0x%04X", ImageInfo->Thumbnail.data ? "Ignore" : "Read", ImageInfo->Thumbnail.offset, ImageInfo->Thumbnail.size);
offset           3678 ext/exif/exif.c 									php_stream_seek(ImageInfo->infile, ImageInfo->Thumbnail.offset, SEEK_SET);
offset           3708 ext/exif/exif.c 					exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "%s THUMBNAIL @0x%04X + 0x%04X", ImageInfo->Thumbnail.data ? "Ignore" : "Read", ImageInfo->Thumbnail.offset, ImageInfo->Thumbnail.size);
offset           3710 ext/exif/exif.c 					if (!ImageInfo->Thumbnail.data && ImageInfo->Thumbnail.offset && ImageInfo->Thumbnail.size && ImageInfo->read_thumbnail) {
offset           3712 ext/exif/exif.c 						php_stream_seek(ImageInfo->infile, ImageInfo->Thumbnail.offset, SEEK_SET);
offset            221 ext/fileinfo/fileinfo.c 	finfo_object_handlers.offset = XtOffsetOf(finfo_object, zo);
offset           1795 ext/fileinfo/libmagic/apprentice.c 	m->offset = (uint32_t)strtoul(l, &t, 0);
offset           3186 ext/fileinfo/libmagic/apprentice.c 	m->offset = swap4((uint32_t)m->offset);
offset            287 ext/fileinfo/libmagic/file.h 	uint32_t offset;	/* offset to magic number */
offset            390 ext/fileinfo/libmagic/file.h 	uint32_t offset;
offset            402 ext/fileinfo/libmagic/file.h 		size_t offset;		/* starting offset in source: XXX - should this be off_t? */
offset            483 ext/fileinfo/libmagic/file.h 	uint32_t offset;
offset            481 ext/fileinfo/libmagic/funcs.c 	pb->offset = ms->offset;
offset            484 ext/fileinfo/libmagic/funcs.c 	ms->offset = 0;
offset            503 ext/fileinfo/libmagic/funcs.c 	ms->offset = pb->offset;
offset            152 ext/fileinfo/libmagic/softmagic.c     const unsigned char *s, size_t nbytes, size_t offset, int mode, int text,
offset            186 ext/fileinfo/libmagic/softmagic.c 		ms->offset = m->offset;
offset            190 ext/fileinfo/libmagic/softmagic.c 		switch (mget(ms, s, m, nbytes, offset, cont_level, mode, text,
offset            266 ext/fileinfo/libmagic/softmagic.c 			ms->offset = m->offset;
offset            268 ext/fileinfo/libmagic/softmagic.c 				ms->offset +=
offset            279 ext/fileinfo/libmagic/softmagic.c 			switch (mget(ms, s, m, nbytes, offset, cont_level, mode,
offset            430 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(char);
offset            452 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(short);
offset            473 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(int32_t);
offset            495 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(int64_t);
offset            507 ext/fileinfo/libmagic/softmagic.c 			t = ms->offset + m->vallen;
offset            513 ext/fileinfo/libmagic/softmagic.c 			t = ms->offset + strlen(str);
offset            547 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint32_t);
offset            557 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint32_t);
offset            566 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint64_t);
offset            575 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint64_t);
offset            584 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint64_t);
offset            604 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(float);
offset            624 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(double);
offset            644 ext/fileinfo/libmagic/softmagic.c 			t = ms->search.offset;
offset            646 ext/fileinfo/libmagic/softmagic.c 			t = ms->search.offset + ms->search.rm_len;
offset            654 ext/fileinfo/libmagic/softmagic.c 			t = ms->search.offset;
offset            656 ext/fileinfo/libmagic/softmagic.c 			t = ms->search.offset + m->vallen;
offset            663 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset;
offset            669 ext/fileinfo/libmagic/softmagic.c 		t = ms->offset;
offset            684 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(char)));
offset            689 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(short)));
offset            695 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(int32_t)));
offset            700 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(int64_t)));
offset            707 ext/fileinfo/libmagic/softmagic.c 			return ms->offset + m->vallen;
offset            714 ext/fileinfo/libmagic/softmagic.c 			t = CAST(uint32_t, (ms->offset + strlen(p->s)));
offset            724 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(uint32_t)));
offset            730 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(uint32_t)));
offset            735 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(uint64_t)));
offset            740 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(uint64_t)));
offset            745 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(float)));
offset            750 ext/fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(double)));
offset            754 ext/fileinfo/libmagic/softmagic.c 			return CAST(int32_t, ms->search.offset);
offset            756 ext/fileinfo/libmagic/softmagic.c 			return CAST(int32_t, (ms->search.offset +
offset            761 ext/fileinfo/libmagic/softmagic.c 			return CAST(int32_t, ms->search.offset);
offset            763 ext/fileinfo/libmagic/softmagic.c 			return CAST(int32_t, (ms->search.offset + m->vallen));
offset            768 ext/fileinfo/libmagic/softmagic.c 		return ms->offset;
offset           1062 ext/fileinfo/libmagic/softmagic.c mdebug(uint32_t offset, const char *str, size_t len)
offset           1064 ext/fileinfo/libmagic/softmagic.c 	(void) fprintf(stderr, "mget/%" SIZE_T_FORMAT "u @%d: ", len, offset);
offset           1072 ext/fileinfo/libmagic/softmagic.c     const unsigned char *s, uint32_t offset, size_t nbytes, struct magic *m)
offset           1081 ext/fileinfo/libmagic/softmagic.c 			ms->search.s = RCAST(const char *, s) + offset;
offset           1082 ext/fileinfo/libmagic/softmagic.c 			ms->search.s_len = nbytes - offset;
offset           1083 ext/fileinfo/libmagic/softmagic.c 			ms->search.offset = offset;
offset           1112 ext/fileinfo/libmagic/softmagic.c 			if (offset > bytecnt) {
offset           1113 ext/fileinfo/libmagic/softmagic.c 				offset = bytecnt;
offset           1120 ext/fileinfo/libmagic/softmagic.c 			buf = RCAST(const char *, s) + offset;
offset           1138 ext/fileinfo/libmagic/softmagic.c 			ms->search.offset = offset;
offset           1144 ext/fileinfo/libmagic/softmagic.c 			const unsigned char *src = s + offset;
offset           1153 ext/fileinfo/libmagic/softmagic.c 			if (offset >= nbytes)
offset           1177 ext/fileinfo/libmagic/softmagic.c 	if (offset >= nbytes) {
offset           1181 ext/fileinfo/libmagic/softmagic.c 	if (nbytes - offset < sizeof(*p))
offset           1182 ext/fileinfo/libmagic/softmagic.c 		nbytes = nbytes - offset;
offset           1186 ext/fileinfo/libmagic/softmagic.c 	(void)memcpy(p, s + offset, nbytes);
offset           1204 ext/fileinfo/libmagic/softmagic.c 	uint32_t offset = ms->offset;
offset           1224 ext/fileinfo/libmagic/softmagic.c 	if (mcopy(ms, p, m->type, m->flag & INDIR, s, (uint32_t)(offset + o),
offset           1232 ext/fileinfo/libmagic/softmagic.c 		    m->type, m->flag, offset, o, nbytes,
offset           1234 ext/fileinfo/libmagic/softmagic.c 		mdebug(offset, (char *)(void *)p, sizeof(union VALUETYPE));
offset           1241 ext/fileinfo/libmagic/softmagic.c 			    ((const void *)(s + offset + off)));
offset           1278 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 1))
offset           1283 ext/fileinfo/libmagic/softmagic.c 					offset = p->b & off;
offset           1286 ext/fileinfo/libmagic/softmagic.c 					offset = p->b | off;
offset           1289 ext/fileinfo/libmagic/softmagic.c 					offset = p->b ^ off;
offset           1292 ext/fileinfo/libmagic/softmagic.c 					offset = p->b + off;
offset           1295 ext/fileinfo/libmagic/softmagic.c 					offset = p->b - off;
offset           1298 ext/fileinfo/libmagic/softmagic.c 					offset = p->b * off;
offset           1301 ext/fileinfo/libmagic/softmagic.c 					offset = p->b / off;
offset           1304 ext/fileinfo/libmagic/softmagic.c 					offset = p->b % off;
offset           1308 ext/fileinfo/libmagic/softmagic.c 				offset = p->b;
offset           1310 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1313 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 2))
offset           1319 ext/fileinfo/libmagic/softmagic.c 					offset = lhs & off;
offset           1322 ext/fileinfo/libmagic/softmagic.c 					offset = lhs | off;
offset           1325 ext/fileinfo/libmagic/softmagic.c 					offset = lhs ^ off;
offset           1328 ext/fileinfo/libmagic/softmagic.c 					offset = lhs + off;
offset           1331 ext/fileinfo/libmagic/softmagic.c 					offset = lhs - off;
offset           1334 ext/fileinfo/libmagic/softmagic.c 					offset = lhs * off;
offset           1337 ext/fileinfo/libmagic/softmagic.c 					offset = lhs / off;
offset           1340 ext/fileinfo/libmagic/softmagic.c 					offset = lhs % off;
offset           1344 ext/fileinfo/libmagic/softmagic.c 				offset = lhs;
offset           1346 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1349 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 2))
offset           1355 ext/fileinfo/libmagic/softmagic.c 					offset = lhs & off;
offset           1358 ext/fileinfo/libmagic/softmagic.c 					offset = lhs | off;
offset           1361 ext/fileinfo/libmagic/softmagic.c 					offset = lhs ^ off;
offset           1364 ext/fileinfo/libmagic/softmagic.c 					offset = lhs + off;
offset           1367 ext/fileinfo/libmagic/softmagic.c 					offset = lhs - off;
offset           1370 ext/fileinfo/libmagic/softmagic.c 					offset = lhs * off;
offset           1373 ext/fileinfo/libmagic/softmagic.c 					offset = lhs / off;
offset           1376 ext/fileinfo/libmagic/softmagic.c 					offset = lhs % off;
offset           1380 ext/fileinfo/libmagic/softmagic.c 				offset = lhs;
offset           1382 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1385 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 2))
offset           1390 ext/fileinfo/libmagic/softmagic.c 					offset = p->h & off;
offset           1393 ext/fileinfo/libmagic/softmagic.c 					offset = p->h | off;
offset           1396 ext/fileinfo/libmagic/softmagic.c 					offset = p->h ^ off;
offset           1399 ext/fileinfo/libmagic/softmagic.c 					offset = p->h + off;
offset           1402 ext/fileinfo/libmagic/softmagic.c 					offset = p->h - off;
offset           1405 ext/fileinfo/libmagic/softmagic.c 					offset = p->h * off;
offset           1408 ext/fileinfo/libmagic/softmagic.c 					offset = p->h / off;
offset           1411 ext/fileinfo/libmagic/softmagic.c 					offset = p->h % off;
offset           1416 ext/fileinfo/libmagic/softmagic.c 				offset = p->h;
offset           1418 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1422 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 4))
offset           1429 ext/fileinfo/libmagic/softmagic.c 					offset = lhs & off;
offset           1432 ext/fileinfo/libmagic/softmagic.c 					offset = lhs | off;
offset           1435 ext/fileinfo/libmagic/softmagic.c 					offset = lhs ^ off;
offset           1438 ext/fileinfo/libmagic/softmagic.c 					offset = lhs + off;
offset           1441 ext/fileinfo/libmagic/softmagic.c 					offset = lhs - off;
offset           1444 ext/fileinfo/libmagic/softmagic.c 					offset = lhs * off;
offset           1447 ext/fileinfo/libmagic/softmagic.c 					offset = lhs / off;
offset           1450 ext/fileinfo/libmagic/softmagic.c 					offset = lhs % off;
offset           1454 ext/fileinfo/libmagic/softmagic.c 				offset = lhs;
offset           1456 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1460 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 4))
offset           1467 ext/fileinfo/libmagic/softmagic.c 					offset = lhs & off;
offset           1470 ext/fileinfo/libmagic/softmagic.c 					offset = lhs | off;
offset           1473 ext/fileinfo/libmagic/softmagic.c 					offset = lhs ^ off;
offset           1476 ext/fileinfo/libmagic/softmagic.c 					offset = lhs + off;
offset           1479 ext/fileinfo/libmagic/softmagic.c 					offset = lhs - off;
offset           1482 ext/fileinfo/libmagic/softmagic.c 					offset = lhs * off;
offset           1485 ext/fileinfo/libmagic/softmagic.c 					offset = lhs / off;
offset           1488 ext/fileinfo/libmagic/softmagic.c 					offset = lhs % off;
offset           1492 ext/fileinfo/libmagic/softmagic.c 				offset = lhs;
offset           1494 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1497 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 4))
offset           1504 ext/fileinfo/libmagic/softmagic.c 					offset = lhs & off;
offset           1507 ext/fileinfo/libmagic/softmagic.c 					offset = lhs | off;
offset           1510 ext/fileinfo/libmagic/softmagic.c 					offset = lhs ^ off;
offset           1513 ext/fileinfo/libmagic/softmagic.c 					offset = lhs + off;
offset           1516 ext/fileinfo/libmagic/softmagic.c 					offset = lhs - off;
offset           1519 ext/fileinfo/libmagic/softmagic.c 					offset = lhs * off;
offset           1522 ext/fileinfo/libmagic/softmagic.c 					offset = lhs / off;
offset           1525 ext/fileinfo/libmagic/softmagic.c 					offset = lhs % off;
offset           1529 ext/fileinfo/libmagic/softmagic.c 				offset = lhs;
offset           1531 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1534 ext/fileinfo/libmagic/softmagic.c 			if (OFFSET_OOB(nbytes, offset, 4))
offset           1539 ext/fileinfo/libmagic/softmagic.c 					offset = p->l & off;
offset           1542 ext/fileinfo/libmagic/softmagic.c 					offset = p->l | off;
offset           1545 ext/fileinfo/libmagic/softmagic.c 					offset = p->l ^ off;
offset           1548 ext/fileinfo/libmagic/softmagic.c 					offset = p->l + off;
offset           1551 ext/fileinfo/libmagic/softmagic.c 					offset = p->l - off;
offset           1554 ext/fileinfo/libmagic/softmagic.c 					offset = p->l * off;
offset           1557 ext/fileinfo/libmagic/softmagic.c 					offset = p->l / off;
offset           1560 ext/fileinfo/libmagic/softmagic.c 					offset = p->l % off;
offset           1564 ext/fileinfo/libmagic/softmagic.c 				offset = p->l;
offset           1566 ext/fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1575 ext/fileinfo/libmagic/softmagic.c 			offset = ((((offset >>  0) & 0x7f) <<  0) |
offset           1576 ext/fileinfo/libmagic/softmagic.c 				 (((offset >>  8) & 0x7f) <<  7) |
offset           1577 ext/fileinfo/libmagic/softmagic.c 				 (((offset >> 16) & 0x7f) << 14) |
offset           1578 ext/fileinfo/libmagic/softmagic.c 				 (((offset >> 24) & 0x7f) << 21));
offset           1580 ext/fileinfo/libmagic/softmagic.c 				fprintf(stderr, "id3 offs=%u\n", offset);
offset           1587 ext/fileinfo/libmagic/softmagic.c 			offset += ms->c.li[cont_level-1].off;
offset           1588 ext/fileinfo/libmagic/softmagic.c 			if (offset == 0) {
offset           1595 ext/fileinfo/libmagic/softmagic.c 				fprintf(stderr, "indirect +offs=%u\n", offset);
offset           1597 ext/fileinfo/libmagic/softmagic.c 		if (mcopy(ms, p, m->type, 0, s, offset, nbytes, m) == -1)
offset           1599 ext/fileinfo/libmagic/softmagic.c 		ms->offset = offset;
offset           1602 ext/fileinfo/libmagic/softmagic.c 			mdebug(offset, (char *)(void *)p,
offset           1610 ext/fileinfo/libmagic/softmagic.c 		if (OFFSET_OOB(nbytes, offset, 1))
offset           1617 ext/fileinfo/libmagic/softmagic.c 		if (OFFSET_OOB(nbytes, offset, 2))
offset           1636 ext/fileinfo/libmagic/softmagic.c 		if (OFFSET_OOB(nbytes, offset, 4))
offset           1643 ext/fileinfo/libmagic/softmagic.c 		if (OFFSET_OOB(nbytes, offset, 8))
offset           1650 ext/fileinfo/libmagic/softmagic.c 		if (OFFSET_OOB(nbytes, offset, m->vallen))
offset           1655 ext/fileinfo/libmagic/softmagic.c 		if (nbytes < offset)
offset           1661 ext/fileinfo/libmagic/softmagic.c 			offset += CAST(uint32_t, o);
offset           1662 ext/fileinfo/libmagic/softmagic.c 		if (offset == 0)
offset           1665 ext/fileinfo/libmagic/softmagic.c 		if (nbytes < offset)
offset           1671 ext/fileinfo/libmagic/softmagic.c 		rv = file_softmagic(ms, s + offset, nbytes - offset,
offset           1675 ext/fileinfo/libmagic/softmagic.c 			fprintf(stderr, "indirect @offs=%u[%d]\n", offset, rv);
offset           1683 ext/fileinfo/libmagic/softmagic.c 			    file_printf(ms, F(ms, m, "%u"), offset) == -1) {
offset           1696 ext/fileinfo/libmagic/softmagic.c 		if (nbytes < offset)
offset           1711 ext/fileinfo/libmagic/softmagic.c 		rv = match(ms, ml.magic, ml.nmagic, s, nbytes, offset + o,
offset           1994 ext/fileinfo/libmagic/softmagic.c 				ms->search.offset += idx;
offset           2048 ext/fileinfo/libmagic/softmagic.c 					zval *match, *offset;
offset           2050 ext/fileinfo/libmagic/softmagic.c 							(offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) {
offset           2051 ext/fileinfo/libmagic/softmagic.c 						if (Z_TYPE_P(match) != IS_STRING && Z_TYPE_P(offset) != IS_LONG) {
offset           2054 ext/fileinfo/libmagic/softmagic.c 						ms->search.s += Z_LVAL_P(offset); /* this is where the match starts */
offset           2055 ext/fileinfo/libmagic/softmagic.c 						ms->search.offset += Z_LVAL_P(offset); /* this is where the match starts as size_t */
offset            861 ext/filter/logical_filters.c 	int tokens, length, i, offset, exp_separator_set;
offset            905 ext/filter/logical_filters.c 		offset = i * (length + 1);
offset            907 ext/filter/logical_filters.c 		if (i < tokens - 1 && input[offset + length] != separator) {
offset            911 ext/filter/logical_filters.c 		if (php_filter_parse_hex(input + offset, length, &ret) < 0) {
offset            766 ext/gd/gd.c    	ZEND_ARG_INFO(0, offset)
offset           3483 ext/gd/gd.c    	if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
offset           3487 ext/gd/gd.c    	fline = (c - f->offset) * f->h * f->w;
offset           4426 ext/gd/gd.c    	double div, offset;
offset           4430 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "radd", &SIM, &hash_matrix, &div, &offset) == FAILURE) {
offset           4461 ext/gd/gd.c    	res = gdImageConvolution(im_src, matrix, (float)div, (float)offset);
offset           1550 ext/gd/libgd/gd.c 	if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
offset           1553 ext/gd/libgd/gd.c 	fline = (c - f->offset) * f->h * f->w;
offset           1576 ext/gd/libgd/gd.c 	if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
offset           1579 ext/gd/libgd/gd.c 	fline = (c - f->offset) * f->h * f->w;
offset            289 ext/gd/libgd/gd.h 	int offset;
offset            789 ext/gd/libgd/gd.h int gdImageConvolution(gdImagePtr src, float ft[3][3], float filter_div, float offset);
offset            230 ext/gd/libgd/gd_filter.c int gdImageConvolution(gdImagePtr src, float filter[3][3], float filter_div, float offset)
offset            272 ext/gd/libgd/gd_filter.c 			new_r = (new_r/filter_div)+offset;
offset            273 ext/gd/libgd/gd_filter.c 			new_g = (new_g/filter_div)+offset;
offset            274 ext/gd/libgd/gd_filter.c 			new_b = (new_b/filter_div)+offset;
offset             44 ext/gd/libgd/gd_gd2.c 	int offset;
offset            147 ext/gd/libgd/gd_gd2.c 			if (gdGetInt(&cidx[i].offset, in) != 1) {
offset            200 ext/gd/libgd/gd_gd2.c static int _gd2ReadChunk (int offset, char *compBuf, int compSize, char *chunkBuf, uLongf * chunkLen, gdIOCtx * in)
offset            204 ext/gd/libgd/gd_gd2.c 	if (gdTell(in) != offset) {
offset            205 ext/gd/libgd/gd_gd2.c 		GD2_DBG(php_gd_error("Positioning in file to %d", offset));
offset            206 ext/gd/libgd/gd_gd2.c 		gdSeek(in, offset);
offset            208 ext/gd/libgd/gd_gd2.c 		GD2_DBG(php_gd_error("Already Positioned in file to %d", offset));
offset            311 ext/gd/libgd/gd_gd2.c 				if (!_gd2ReadChunk(chunkIdx[chunkNum].offset, compBuf, chunkIdx[chunkNum].size, (char *) chunkBuf, &chunkLen, in)) {
offset            547 ext/gd/libgd/gd_gd2.c 				if (!_gd2ReadChunk (chunkIdx[chunkNum].offset, compBuf, chunkIdx[chunkNum].size, (char *)chunkBuf, &chunkLen, in)) {
offset            770 ext/gd/libgd/gd_gd2.c 					chunkIdx[chunkNum].offset = gdTell(out);
offset            772 ext/gd/libgd/gd_gd2.c 					GD2_DBG(php_gd_error("Chunk %d size %d offset %d", chunkNum, chunkIdx[chunkNum - 1].size, chunkIdx[chunkNum - 1].offset));
offset            790 ext/gd/libgd/gd_gd2.c 			GD2_DBG(php_gd_error("Chunk %d size %d offset %d", x, chunkIdx[x].size, chunkIdx[x].offset));
offset            791 ext/gd/libgd/gd_gd2.c 			gdPutInt(chunkIdx[x].offset, out);
offset             67 ext/gd/libgd/gd_gif_out.c 	int offset;
offset            512 ext/gd/libgd/gd_gif_out.c     ctx->offset = 0;
offset            652 ext/gmp/gmp.c  	gmp_object_handlers.offset = XtOffsetOf(gmp_object, std);
offset             73 ext/iconv/iconv.c 	ZEND_ARG_INFO(0, offset)
offset             81 ext/iconv/iconv.c 	ZEND_ARG_INFO(0, offset)
offset            207 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_substr(smart_str *pretval, const char *str, size_t nbytes, zend_long offset, zend_long len, const char *enc);
offset            209 ext/iconv/iconv.c static php_iconv_err_t _php_iconv_strpos(size_t *pretval, const char *haystk, size_t haystk_nbytes, const char *ndl, size_t ndl_nbytes, zend_long offset, const char *enc);
offset            822 ext/iconv/iconv.c 	const char *str, size_t nbytes, zend_long offset, zend_long len, const char *enc)
offset            845 ext/iconv/iconv.c 		if ((len += (total_len - offset)) < 0) {
offset            850 ext/iconv/iconv.c 	if (offset < 0) {
offset            851 ext/iconv/iconv.c 		if ((offset += total_len) < 0) {
offset            861 ext/iconv/iconv.c 	if ((size_t)offset >= total_len) {
offset            865 ext/iconv/iconv.c 	if ((size_t)(offset + len) > total_len ) {
offset            867 ext/iconv/iconv.c 		len = total_len - offset;
offset            906 ext/iconv/iconv.c 		if ((zend_long)cnt >= offset) {
offset            970 ext/iconv/iconv.c 	zend_long offset, const char *enc)
offset           1054 ext/iconv/iconv.c 		if (offset >= 0) {
offset           1055 ext/iconv/iconv.c 			if (cnt >= (size_t)offset) {
offset           2087 ext/iconv/iconv.c 	zend_long offset, length = 0;
offset           2094 ext/iconv/iconv.c 		&str, &offset, &length,
offset           2108 ext/iconv/iconv.c 	err = _php_iconv_substr(&retval, ZSTR_VAL(str), ZSTR_LEN(str), offset, length, charset);
offset           2127 ext/iconv/iconv.c 	zend_long offset = 0;
offset           2135 ext/iconv/iconv.c 		&offset, &charset, &charset_len) == FAILURE) {
offset           2144 ext/iconv/iconv.c 	if (offset < 0) {
offset           2154 ext/iconv/iconv.c 	                        offset, charset);
offset           3937 ext/imap/php_imap.c 	int offset, bufferLen = 0;
offset           3963 ext/imap/php_imap.c 		offset = 0;
offset           3974 ext/imap/php_imap.c 				offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
offset           3979 ext/imap/php_imap.c 		if (offset>0) {
offset           3980 ext/imap/php_imap.c 			bufferTo[offset-1] = 0;
offset           3992 ext/imap/php_imap.c 		offset = 0;
offset           4003 ext/imap/php_imap.c 				offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
offset           4008 ext/imap/php_imap.c 		if (offset>0) {
offset           4009 ext/imap/php_imap.c 			bufferCc[offset-1] = 0;
offset           4018 ext/imap/php_imap.c 		offset = 0;
offset           4029 ext/imap/php_imap.c 				offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
offset           4034 ext/imap/php_imap.c 		if (offset>0) {
offset           4035 ext/imap/php_imap.c 			bufferBcc[offset-1] = 0;
offset           4260 ext/imap/php_imap.c 	zend_long charset_token, encoding_token, end_token, end, offset=0, i;
offset           4274 ext/imap/php_imap.c 	while (offset < end) {	/* Reached end of the string? */
offset           4275 ext/imap/php_imap.c 		if ((charset_token = (zend_long)php_memnstr(&string[offset], "=?", 2, string + end))) {	/* Is there anything encoded in the string? */
offset           4277 ext/imap/php_imap.c 			if (offset != charset_token) {	/* Is there anything before the encoded data? */
offset           4279 ext/imap/php_imap.c 				memcpy(text, &string[offset], charset_token-offset);
offset           4280 ext/imap/php_imap.c 				text[charset_token - offset] = 0x00;
offset           4317 ext/imap/php_imap.c 					offset = end_token+2;
offset           4318 ext/imap/php_imap.c 					for (i = 0; (string[offset + i] == ' ') || (string[offset + i] == 0x0a) || (string[offset + i] == 0x0d) || (string[offset + i] == '\t'); i++);
offset           4319 ext/imap/php_imap.c 					if ((string[offset + i] == '=') && (string[offset + i + 1] == '?') && (offset + i < end)) {
offset           4320 ext/imap/php_imap.c 						offset += i;
offset           4330 ext/imap/php_imap.c 			charset_token = offset;
offset           4341 ext/imap/php_imap.c 		offset = end;	/* We have reached the end of the string. */
offset             65 ext/intl/breakiterator/codepointiterator_internal.h 		virtual int32_t following(int32_t offset);
offset             67 ext/intl/breakiterator/codepointiterator_internal.h 		virtual int32_t preceding(int32_t offset);
offset             69 ext/intl/breakiterator/codepointiterator_internal.h 		virtual UBool isBoundary(int32_t offset);
offset            139 ext/intl/collator/collator_class.c 	Collator_handlers.offset = XtOffsetOf(Collator_object, zo);
offset           1087 ext/intl/converter/converter.c 	php_converter_object_handlers.offset = XtOffsetOf(php_converter_object, obj);
offset            201 ext/intl/dateformat/dateformat_class.c 	IntlDateFormatter_handlers.offset = XtOffsetOf(IntlDateFormatter_object, zo);
offset            196 ext/intl/formatter/formatter_class.c 	NumberFormatter_handlers.offset = XtOffsetOf(NumberFormatter_object, zo);
offset            113 ext/intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            128 ext/intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            141 ext/intl/grapheme/grapheme_string.c 	found = php_memnstr(haystack + offset, needle, needle_len, haystack + haystack_len);
offset            154 ext/intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strpos_utf16(haystack, haystack_len, needle, needle_len, offset, NULL, 0 /* fIgnoreCase */, 0 /* last */ );
offset            173 ext/intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            189 ext/intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            207 ext/intl/grapheme/grapheme_string.c 		found = php_memnstr(haystack_dup + offset, needle_dup, needle_len, haystack_dup + haystack_len);
offset            223 ext/intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strpos_utf16(haystack, haystack_len, needle, needle_len, offset, NULL, 1 /* fIgnoreCase */, 0 /*last */ );
offset            241 ext/intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            257 ext/intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            270 ext/intl/grapheme/grapheme_string.c 		ret_pos = grapheme_strrpos_ascii(haystack, haystack_len, needle, needle_len, offset);
offset            285 ext/intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strpos_utf16(haystack, haystack_len, needle, needle_len, offset, NULL, 0 /* f_ignore_case */, 1/* last */);
offset            304 ext/intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            320 ext/intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            339 ext/intl/grapheme/grapheme_string.c 		ret_pos = grapheme_strrpos_ascii(haystack_dup, haystack_len, needle_dup, needle_len, offset);
offset            357 ext/intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strpos_utf16(haystack, haystack_len, needle, needle_len, offset, NULL,  1 /* f_ignore_case */, 1 /*last */);
offset            133 ext/intl/grapheme/grapheme_util.c int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset, int32_t *puchar_pos, int f_ignore_case, int last)
offset            176 ext/intl/grapheme/grapheme_util.c 	if(offset != 0) {
offset            177 ext/intl/grapheme/grapheme_util.c 		offset_pos = grapheme_get_haystack_offset(bi, offset);
offset            298 ext/intl/grapheme/grapheme_util.c int32_t grapheme_get_haystack_offset(UBreakIterator* bi, int32_t offset)
offset            304 ext/intl/grapheme/grapheme_util.c 	if ( 0 == offset ) {
offset            308 ext/intl/grapheme/grapheme_util.c 	if ( offset < 0 ) {
offset            320 ext/intl/grapheme/grapheme_util.c 	while ( pos != UBRK_DONE && offset != 0 ) {
offset            325 ext/intl/grapheme/grapheme_util.c 			offset += iter_incr;
offset            329 ext/intl/grapheme/grapheme_util.c 	if ( offset != 0 ) {
offset            339 ext/intl/grapheme/grapheme_util.c grapheme_strrpos_ascii(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset)
offset            343 ext/intl/grapheme/grapheme_util.c 	if (offset >= 0) {
offset            344 ext/intl/grapheme/grapheme_util.c 		p = haystack + offset;
offset            348 ext/intl/grapheme/grapheme_util.c 		if (needle_len > -offset) {
offset            351 ext/intl/grapheme/grapheme_util.c 			e = haystack + haystack_len + offset;
offset            359 ext/intl/grapheme/grapheme_util.c 				return (e - p + (offset > 0 ? offset : 0));
offset            368 ext/intl/grapheme/grapheme_util.c 			return (e - p + (offset > 0 ? offset : 0));
offset             28 ext/intl/grapheme/grapheme_util.h zend_long grapheme_strrpos_ascii(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset);
offset             30 ext/intl/grapheme/grapheme_util.h int32_t grapheme_strrpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset, int f_ignore_case);
offset             31 ext/intl/grapheme/grapheme_util.h int32_t grapheme_strpos_utf16(char *haystack, size_t haystack_len, char *needle, size_t needle_len, int32_t offset, int *puchar_pos, int f_ignore_case, int last);
offset             39 ext/intl/grapheme/grapheme_util.h int32_t grapheme_get_haystack_offset(UBreakIterator* bi, int32_t offset);
offset             44 ext/intl/grapheme/grapheme_util.h #define OUTSIDE_STRING(offset, max_len) ( offset <= INT32_MIN || offset > INT32_MAX || (offset < 0 ? -offset > (zend_long) max_len : offset >= (zend_long) max_len) )
offset            260 ext/intl/intl_error.c 	if( pe->offset >= 0 ) {
offset            267 ext/intl/intl_error.c 		smart_str_append_long( &ret, (zend_long ) pe->offset );
offset            164 ext/intl/msgformat/msgformat_class.c 	MessageFormatter_handlers.offset = XtOffsetOf(MessageFormatter_object, zo);
offset            216 ext/intl/php_intl.c 	ZEND_ARG_INFO(0, offset)
offset            170 ext/intl/resourcebundle/resourcebundle_class.c static void resourcebundle_array_fetch(zval *object, zval *offset, zval *return_value, int fallback)
offset            181 ext/intl/resourcebundle/resourcebundle_class.c 	if(Z_TYPE_P(offset) == IS_LONG) {
offset            183 ext/intl/resourcebundle/resourcebundle_class.c 		meindex = (int32_t)Z_LVAL_P(offset);
offset            185 ext/intl/resourcebundle/resourcebundle_class.c 	} else if(Z_TYPE_P(offset) == IS_STRING) {
offset            186 ext/intl/resourcebundle/resourcebundle_class.c 		mekey = Z_STRVAL_P(offset);
offset            224 ext/intl/resourcebundle/resourcebundle_class.c zval *resourcebundle_array_get(zval *object, zval *offset, int type, zval *rv)
offset            226 ext/intl/resourcebundle/resourcebundle_class.c 	if(offset == NULL) {
offset            230 ext/intl/resourcebundle/resourcebundle_class.c 	resourcebundle_array_fetch(object, offset, rv, 1);
offset            249 ext/intl/resourcebundle/resourcebundle_class.c 	zval *		offset;
offset            252 ext/intl/resourcebundle/resourcebundle_class.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Oz|b",	&object, ResourceBundle_ce_ptr, &offset, &fallback ) == FAILURE) {
offset            258 ext/intl/resourcebundle/resourcebundle_class.c 	resourcebundle_array_fetch(object, offset, return_value, fallback);
offset            444 ext/intl/resourcebundle/resourcebundle_class.c 	ResourceBundle_object_handlers.offset = XtOffsetOf(ResourceBundle_object, zend);
offset            148 ext/intl/spoofchecker/spoofchecker_class.c 	Spoofchecker_handlers.offset = XtOffsetOf(Spoofchecker_object, zo);
offset            353 ext/intl/transliterator/transliterator_class.c 	Transliterator_handlers.offset = XtOffsetOf(Transliterator_object, zo);
offset             89 ext/libxml/php_libxml.h 	return (php_libxml_node_object *)((char*)(obj) - obj->handlers->offset);
offset            983 ext/mbstring/libmbfl/mbfl/mbfilter.c     int offset,
offset           1051 ext/mbstring/libmbfl/mbfl/mbfilter.c 		while (--offset >= 0) {
offset           1117 ext/mbstring/libmbfl/mbfl/mbfilter.c 		if (offset < 0) {
offset           1118 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (-offset > needle_len) {
offset           1119 ext/mbstring/libmbfl/mbfl/mbfilter.c 				offset += needle_len;
offset           1120 ext/mbstring/libmbfl/mbfl/mbfilter.c 				while (offset < 0) {
offset           1128 ext/mbstring/libmbfl/mbfl/mbfilter.c 						++offset;
offset           1130 ext/mbstring/libmbfl/mbfl/mbfilter.c 						++offset;
offset           1136 ext/mbstring/libmbfl/mbfl/mbfilter.c 			while (--offset >= 0) {
offset            194 ext/mbstring/libmbfl/mbfl/mbfilter.h mbfl_strpos(mbfl_string *haystack, mbfl_string *needle, int offset, int reverse);
offset             31 ext/mbstring/libmbfl/tests/strcut.c 	int offset, length;
offset             53 ext/mbstring/libmbfl/tests/strcut.c 	offset = strtol(argv[3], NULL, 10);
offset            103 ext/mbstring/libmbfl/tests/strcut.c 		if (mbfl_strcut(&string, &result, offset, length)) {
offset            258 ext/mbstring/mbstring.c 	ZEND_ARG_INFO(0, offset)
offset            265 ext/mbstring/mbstring.c 	ZEND_ARG_INFO(0, offset)
offset            272 ext/mbstring/mbstring.c 	ZEND_ARG_INFO(0, offset)
offset            279 ext/mbstring/mbstring.c 	ZEND_ARG_INFO(0, offset)
offset           2265 ext/mbstring/mbstring.c 	zend_long offset = 0;
offset           2277 ext/mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|ls", (char **)&haystack.val, &haystack_len, (char **)&needle.val, &needle_len, &offset, &enc_name, &enc_name_len) == FAILURE) {
offset           2300 ext/mbstring/mbstring.c 	if (offset < 0 || offset > mbfl_strlen(&haystack)) {
offset           2309 ext/mbstring/mbstring.c 	n = mbfl_strpos(&haystack, &needle, offset, reverse);
offset           2343 ext/mbstring/mbstring.c 	long offset = 0, str_flg;
offset           2399 ext/mbstring/mbstring.c 				offset   = Z_LVAL_P(zoffset);
offset           2406 ext/mbstring/mbstring.c 			offset = Z_LVAL_P(zoffset);
offset           2427 ext/mbstring/mbstring.c 		if ((offset > 0 && offset > haystack_char_len) ||
offset           2428 ext/mbstring/mbstring.c 			(offset < 0 && -offset > haystack_char_len)) {
offset           2434 ext/mbstring/mbstring.c 	n = mbfl_strpos(&haystack, &needle, offset, 1);
offset           2448 ext/mbstring/mbstring.c 	zend_long offset = 0;
offset           2453 ext/mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|ls", (char **)&haystack.val, &haystack_len, (char **)&needle.val, &needle_len, &offset, &from_encoding, &from_encoding_len) == FAILURE) {
offset           2472 ext/mbstring/mbstring.c 	n = php_mb_stripos(0, (char *)haystack.val, haystack.len, (char *)needle.val, needle.len, offset, from_encoding);
offset           2487 ext/mbstring/mbstring.c 	zend_long offset = 0;
offset           2492 ext/mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|ls", (char **)&haystack.val, &haystack_len, (char **)&needle.val, &needle_len, &offset, &from_encoding, &from_encoding_len) == FAILURE) {
offset           2507 ext/mbstring/mbstring.c 	n = php_mb_stripos(1, (char *)haystack.val, haystack.len, (char *)needle.val, needle.len, offset, from_encoding);
offset           4815 ext/mbstring/mbstring.c MBSTRING_API int php_mb_stripos(int mode, const char *old_haystack, unsigned int old_haystack_len, const char *old_needle, unsigned int old_needle_len, long offset, const char *from_encoding)
offset           4862 ext/mbstring/mbstring.c  				if ((offset > 0 && offset > haystack_char_len) ||
offset           4863 ext/mbstring/mbstring.c  					(offset < 0 && -offset > haystack_char_len)) {
offset           4868 ext/mbstring/mbstring.c  				if (offset < 0 || offset > haystack_char_len) {
offset           4875 ext/mbstring/mbstring.c 		n = mbfl_strpos(&haystack, &needle, offset, mode);
offset            154 ext/mbstring/mbstring.h MBSTRING_API int php_mb_stripos(int mode, const char *old_haystack, unsigned int old_haystack_len, const char *old_needle, unsigned int old_needle_len, long offset, const char *from_encoding);
offset            179 ext/mbstring/oniguruma/regcomp.c unset_addr_list_add(UnsetAddrList* uslist, int offset, struct _Node* node)
offset            192 ext/mbstring/oniguruma/regcomp.c   uslist->us[uslist->num].offset = offset;
offset           1938 ext/mbstring/oniguruma/regcomp.c   int i, offset;
offset           1946 ext/mbstring/oniguruma/regcomp.c     offset = uslist->us[i].offset;
offset           1948 ext/mbstring/oniguruma/regcomp.c     BBUF_WRITE(reg, offset, &addr, SIZE_ABSADDR);
offset            350 ext/mbstring/oniguruma/regexec.c #define STATE_CHECK_BUFF_INIT(msa, str_len, offset, state_num) do {	\
offset            353 ext/mbstring/oniguruma/regexec.c     offset = ((offset) * (state_num)) >> 3;\
offset            354 ext/mbstring/oniguruma/regexec.c     if (size > 0 && offset < size && size < STATE_CHECK_BUFF_MAX_SIZE) {\
offset            359 ext/mbstring/oniguruma/regexec.c       xmemset(((char* )((msa).state_check_buff)+(offset)), 0, \
offset            360 ext/mbstring/oniguruma/regexec.c               (size_t )(size - (offset))); \
offset            381 ext/mbstring/oniguruma/regexec.c #define STATE_CHECK_BUFF_INIT(msa, str_len, offset, state_num)
offset           3084 ext/mbstring/oniguruma/regexec.c     int offset = at - str;
offset           3085 ext/mbstring/oniguruma/regexec.c     STATE_CHECK_BUFF_INIT(msa, end - str, offset, reg->num_comb_exp_check);
offset           3569 ext/mbstring/oniguruma/regexec.c     int offset = (MIN(start, range) - str);
offset           3570 ext/mbstring/oniguruma/regexec.c     STATE_CHECK_BUFF_INIT(msa, end - str, offset, reg->num_comb_exp_check);
offset            203 ext/mbstring/oniguruma/regparse.h   int           offset;
offset            578 ext/mysqli/mysqli.c 	mysqli_object_handlers.offset = XtOffsetOf(mysqli_object, zo);
offset            771 ext/mysqli/mysqli_api.c 	zend_long		offset;
offset            773 ext/mysqli/mysqli_api.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &mysql_result, mysqli_result_class_entry, &offset) == FAILURE) {
offset            784 ext/mysqli/mysqli_api.c 	if (offset < 0 || (uint64_t)offset >= mysql_num_rows(result)) {
offset            788 ext/mysqli/mysqli_api.c 	mysql_data_seek(result, offset);
offset           1241 ext/mysqli/mysqli_api.c 	zend_long		offset;
offset           1243 ext/mysqli/mysqli_api.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &mysql_result, mysqli_result_class_entry, &offset) == FAILURE) {
offset           1249 ext/mysqli/mysqli_api.c 	if (offset < 0 || offset >= (zend_long) mysql_num_fields(result)) {
offset           1254 ext/mysqli/mysqli_api.c 	if (!(field = mysql_fetch_field_direct(result,offset))) {
offset           2079 ext/mysqli/mysqli_api.c 	zend_long		offset;
offset           2081 ext/mysqli/mysqli_api.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &mysql_stmt, mysqli_stmt_class_entry, &offset) == FAILURE) {
offset           2084 ext/mysqli/mysqli_api.c 	if (offset < 0) {
offset           2091 ext/mysqli/mysqli_api.c 	mysql_stmt_data_seek(stmt->stmt, offset);
offset            210 ext/mysqli/mysqli_fe.c 	ZEND_ARG_INFO(0, offset)
offset            215 ext/mysqli/mysqli_fe.c 	ZEND_ARG_INFO(0, offset)
offset            219 ext/mysqli/mysqli_fe.c 	ZEND_ARG_INFO(0, offset)
offset            106 ext/mysqlnd/mysqlnd.h #define mysqlnd_result_fetch_field_data(res,offset,ret)	(res)->m.fetch_field_data((res), (offset), (ret))
offset            509 ext/mysqlnd/mysqlnd_net.c 		memcpy(dest, buffer->data + buffer->offset, count);
offset            510 ext/mysqlnd/mysqlnd_net.c 		buffer->offset += count;
offset            553 ext/mysqlnd/mysqlnd_net.c 	ret->offset = 0;
offset            554 ext/mysqlnd/mysqlnd_ps_codec.c 		size_t offset = *p - *buf;
offset            556 ext/mysqlnd/mysqlnd_ps_codec.c 		*buf_len = offset + needed_bytes + overalloc;
offset            561 ext/mysqlnd/mysqlnd_ps_codec.c 		memcpy(tmp_buf, *buf, offset);
offset            567 ext/mysqlnd/mysqlnd_ps_codec.c 		*p = *buf + offset;
offset           1812 ext/mysqlnd/mysqlnd_result.c MYSQLND_METHOD(mysqlnd_res, fetch_field_data)(MYSQLND_RES * result, unsigned int offset, zval *return_value)
offset           1819 ext/mysqlnd/mysqlnd_result.c 	DBG_INF_FMT("offset=%u", offset);
offset           1832 ext/mysqlnd/mysqlnd_result.c 	while (i++ < offset) {
offset            278 ext/mysqlnd/mysqlnd_structs.h 	size_t 		offset;
offset            181 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, offset)
offset            212 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, offset)
offset            238 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, offset)
offset            534 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, offset)
offset            558 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, offset)
offset            579 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, offset)
offset            200 ext/oci8/oci8_interface.c 	zend_long offset = 0;
offset            204 ext/oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &data, &data_len, &offset) == FAILURE) {
offset            209 ext/oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|l", &z_descriptor, oci_lob_class_entry_ptr, &data, &data_len, &offset) == FAILURE) {
offset            221 ext/oci8/oci8_interface.c 	if (offset < 0) {
offset            226 ext/oci8/oci8_interface.c 	if (php_oci_lob_write(descriptor, (ub4) offset, data, (ub4) data_len, &bytes_written)) {
offset            453 ext/oci8/oci8_interface.c 	zend_long offset, whence = PHP_OCI_SEEK_SET;
offset            457 ext/oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &offset, &whence) == FAILURE) {
offset            462 ext/oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ol|l", &z_descriptor, oci_lob_class_entry_ptr, &offset, &whence) == FAILURE) {
offset            480 ext/oci8/oci8_interface.c 			descriptor->lob_current_position += (ub4) offset;
offset            483 ext/oci8/oci8_interface.c 			if ((descriptor->lob_size + offset) >= 0) {
offset            484 ext/oci8/oci8_interface.c 				descriptor->lob_current_position = descriptor->lob_size + (ub4) offset;
offset            492 ext/oci8/oci8_interface.c 				descriptor->lob_current_position = (offset > 0) ? (ub4) offset : 0;
offset            665 ext/oci8/oci8_interface.c 	zend_long offset = -1, length = -1;
offset            668 ext/oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "|ll", &offset, &length) == FAILURE) {
offset            672 ext/oci8/oci8_interface.c 		if (ZEND_NUM_ARGS() > 0 && offset < 0) {
offset            683 ext/oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "O|ll", &z_descriptor, oci_lob_class_entry_ptr, &offset, &length) == FAILURE) {
offset            687 ext/oci8/oci8_interface.c 		if (ZEND_NUM_ARGS() > 1 && offset < 0) {
offset            705 ext/oci8/oci8_interface.c 	if (php_oci_lob_erase(descriptor, offset, (ub4) length, &bytes_erased)) {
offset            250 ext/oci8/oci8_lob.c 	oraub8 bytes_read, offset = 0;
offset            289 ext/oci8/oci8_lob.c 	offset = initial_offset;
offset            349 ext/oci8/oci8_lob.c 			(oraub8) offset + 1,							/* offset (starts with 1) */
offset            363 ext/oci8/oci8_lob.c 		offset = descriptor->lob_current_position + chars_read;
offset            365 ext/oci8/oci8_lob.c 		offset = descriptor->lob_current_position + bytes_read;
offset            379 ext/oci8/oci8_lob.c 	descriptor->lob_current_position = (int)offset;
offset            403 ext/oci8/oci8_lob.c int php_oci_lob_write (php_oci_descriptor *descriptor, ub4 offset, char *data, int data_len, ub4 *bytes_written)
offset            419 ext/oci8/oci8_lob.c 	if (offset > descriptor->lob_current_position) {
offset            420 ext/oci8/oci8_lob.c 		offset = descriptor->lob_current_position;
offset            429 ext/oci8/oci8_lob.c 				(ub4) offset + 1,
offset            716 ext/oci8/oci8_lob.c 	ub4 offset = 1;
offset            741 ext/oci8/oci8_lob.c 					offset,
offset            760 ext/oci8/oci8_lob.c 		offset += loblen;
offset            846 ext/oci8/oci8_lob.c int php_oci_lob_erase (php_oci_descriptor *descriptor, zend_long offset, ub4 length, ub4 *bytes_erased)
offset            859 ext/oci8/oci8_lob.c 	if (offset == -1) {
offset            860 ext/oci8/oci8_lob.c 		offset = descriptor->lob_current_position;
offset            867 ext/oci8/oci8_lob.c 	PHP_OCI_CALL_RETURN(errstatus, OCILobErase, (connection->svc, connection->err, lob, (ub4 *)&length, (ub4) offset+1));
offset            443 ext/oci8/php_oci8_int.h int php_oci_lob_write(php_oci_descriptor *descriptor, ub4 offset, char *data, int data_len, ub4 *bytes_written);
offset            455 ext/oci8/php_oci8_int.h int php_oci_lob_erase(php_oci_descriptor *descriptor, zend_long offset, ub4 length, ub4 *bytes_erased);
offset             45 ext/opcache/Optimizer/optimize_temp_vars_5.c 	int offset = op_array->last_var;
offset             70 ext/opcache/Optimizer/optimize_temp_vars_5.c 			start_of_T[VAR_NUM(ZEND_RESULT(opline).var) - offset] = opline;
offset             83 ext/opcache/Optimizer/optimize_temp_vars_5.c 			currT = VAR_NUM(ZEND_OP1(opline).var) - offset;
offset             97 ext/opcache/Optimizer/optimize_temp_vars_5.c 				ZEND_OP1(opline).var = NUM_VAR(var + offset);
offset            138 ext/opcache/Optimizer/optimize_temp_vars_5.c 				ZEND_OP1(opline).var = NUM_VAR(map_T[currT] + offset);
offset            150 ext/opcache/Optimizer/optimize_temp_vars_5.c 			currT = VAR_NUM(ZEND_OP2(opline).var) - offset;
offset            156 ext/opcache/Optimizer/optimize_temp_vars_5.c 			ZEND_OP2(opline).var = NUM_VAR(map_T[currT] + offset);
offset            162 ext/opcache/Optimizer/optimize_temp_vars_5.c 			currT = VAR_NUM(opline->extended_value) - offset;
offset            168 ext/opcache/Optimizer/optimize_temp_vars_5.c 			opline->extended_value = NUM_VAR(map_T[currT] + offset);
offset            175 ext/opcache/Optimizer/optimize_temp_vars_5.c 			currT = VAR_NUM(ZEND_OP2(opline + 1).var) - offset;
offset            180 ext/opcache/Optimizer/optimize_temp_vars_5.c 			ZEND_OP2(opline + 1).var = NUM_VAR(i + offset);
offset            185 ext/opcache/Optimizer/optimize_temp_vars_5.c 			currT = VAR_NUM(ZEND_RESULT(opline).var) - offset;
offset            195 ext/opcache/Optimizer/optimize_temp_vars_5.c 				ZEND_RESULT(opline).var = NUM_VAR(map_T[currT] + offset);
offset            215 ext/opcache/Optimizer/optimize_temp_vars_5.c 				ZEND_RESULT(opline).var = NUM_VAR(i + offset);
offset            251 ext/opcache/Optimizer/pass1_5.c 				zval *offset;
offset            256 ext/opcache/Optimizer/pass1_5.c 				if ((offset = zend_get_constant_str("__COMPILER_HALT_OFFSET__", sizeof("__COMPILER_HALT_OFFSET__") - 1)) != NULL) {
offset            259 ext/opcache/Optimizer/pass1_5.c 					if (zend_optimizer_replace_by_const(op_array, opline, IS_TMP_VAR, tv, offset)) {
offset           2530 ext/opcache/ZendAccelerator.c static int accel_remap_huge_pages(void *start, size_t size, const char *name, size_t offset)
offset           2597 ext/opcache/ZendAccelerator.c 		long unsigned int  start, end, offset, inode;
offset           2601 ext/opcache/ZendAccelerator.c 		ret = fscanf(f, "%lx-%lx %4s %lx %5s %ld %s\n", &start, &end, perm, &offset, dev, &inode, name);
offset           2608 ext/opcache/ZendAccelerator.c 				accel_remap_huge_pages((void*)seg_start, seg_end - seg_start, name, offset + seg_start - start);
offset             57 ext/opcache/zend_file_cache.c 	OVERLAPPED offset = {0,0,0,0,NULL};
offset             60 ext/opcache/zend_file_cache.c 		               LOCKFILE_EXCLUSIVE_LOCK, 0, 1, 0, &offset) == TRUE) {
offset             65 ext/opcache/zend_file_cache.c 		               0, 0, 1, 0, &offset) == TRUE) {
offset             70 ext/opcache/zend_file_cache.c 		                 0, 1, 0, &offset) == TRUE) {
offset            458 ext/opcache/zend_persist.c 		zval *offset;
offset            463 ext/opcache/zend_persist.c 		if ((offset = zend_get_constant_str("__COMPILER_HALT_OFFSET__", sizeof("__COMPILER_HALT_OFFSET__") - 1)) != NULL) {
offset            464 ext/opcache/zend_persist.c 			main_persistent_script->compiler_halt_offset = Z_LVAL_P(offset);
offset            516 ext/opcache/zend_persist.c 		int offset = 0;
offset            518 ext/opcache/zend_persist.c 		for (; opline < end ; opline++, offset++) {
offset           4021 ext/pcre/pcrelib/pcre_compile.c int offset;
offset           4030 ext/pcre/pcrelib/pcre_compile.c     offset = (int)GET(hc, 0);
offset           4031 ext/pcre/pcrelib/pcre_compile.c     if (cd->start_code + offset == ptr + 1) break;
offset           4039 ext/pcre/pcrelib/pcre_compile.c     offset = (int)GET(ptr, 1);
offset           4040 ext/pcre/pcrelib/pcre_compile.c     if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust);
offset           4051 ext/pcre/pcrelib/pcre_compile.c   offset = (int)GET(hc, 0);
offset           4052 ext/pcre/pcrelib/pcre_compile.c   PUT(hc, 0, offset + adjust);
offset           5713 ext/pcre/pcrelib/pcre_compile.c         int offset = GET(cd->hwm, -LINK_SIZE);
offset           5714 ext/pcre/pcrelib/pcre_compile.c         if (offset == previous + 1 - cd->start_code)
offset           5715 ext/pcre/pcrelib/pcre_compile.c           PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE);
offset           6050 ext/pcre/pcrelib/pcre_compile.c           int offset;
offset           6061 ext/pcre/pcrelib/pcre_compile.c           offset = (bralink == NULL)? 0 : (int)(previous - bralink);
offset           6063 ext/pcre/pcrelib/pcre_compile.c           PUTINC(previous, 0, offset);
offset           6187 ext/pcre/pcrelib/pcre_compile.c             int offset;
offset           6189 ext/pcre/pcrelib/pcre_compile.c             offset = (bralink == NULL)? 0 : (int)(code - bralink);
offset           6191 ext/pcre/pcrelib/pcre_compile.c             PUTINC(code, 0, offset);
offset           6224 ext/pcre/pcrelib/pcre_compile.c           int offset = (int)(code - bralink + 1);
offset           6225 ext/pcre/pcrelib/pcre_compile.c           pcre_uchar *bra = code - offset;
offset           6229 ext/pcre/pcrelib/pcre_compile.c           PUTINC(code, 0, offset);
offset           6230 ext/pcre/pcrelib/pcre_compile.c           PUT(bra, 1, offset);
offset           6889 ext/pcre/pcrelib/pcre_compile.c           int offset = i++;
offset           6903 ext/pcre/pcrelib/pcre_compile.c             PUT2(code, 2+LINK_SIZE, offset);
offset           9461 ext/pcre/pcrelib/pcre_compile.c     int offset, recno;
offset           9463 ext/pcre/pcrelib/pcre_compile.c     offset = GET(cd->hwm, 0);
offset           9468 ext/pcre/pcrelib/pcre_compile.c     if (offset == 0 || codestart[offset-1] != OP_RECURSE)
offset           9474 ext/pcre/pcrelib/pcre_compile.c     recno = GET(codestart, offset);
offset           9481 ext/pcre/pcrelib/pcre_compile.c       else PUT(((pcre_uchar *)codestart), offset, (int)(groupptr - codestart));
offset            163 ext/pcre/pcrelib/pcre_exec.c match_ref(int offset, register PCRE_PUCHAR eptr, int length, match_data *md,
offset            167 ext/pcre/pcrelib/pcre_exec.c register PCRE_PUCHAR p = md->start_subject + md->offset_vector[offset];
offset            650 ext/pcre/pcrelib/pcre_exec.c int offset;
offset            957 ext/pcre/pcrelib/pcre_exec.c     offset = number << 1;
offset            966 ext/pcre/pcrelib/pcre_exec.c     if (offset < md->offset_max)
offset            968 ext/pcre/pcrelib/pcre_exec.c       save_offset1 = md->offset_vector[offset];
offset            969 ext/pcre/pcrelib/pcre_exec.c       save_offset2 = md->offset_vector[offset+1];
offset           1014 ext/pcre/pcrelib/pcre_exec.c       md->offset_vector[offset] = save_offset1;
offset           1015 ext/pcre/pcrelib/pcre_exec.c       md->offset_vector[offset+1] = save_offset2;
offset           1128 ext/pcre/pcrelib/pcre_exec.c     offset = number << 1;
offset           1137 ext/pcre/pcrelib/pcre_exec.c     if (offset >= md->offset_max) goto POSSESSIVE_NON_CAPTURE;
offset           1142 ext/pcre/pcrelib/pcre_exec.c     save_offset1 = md->offset_vector[offset];
offset           1143 ext/pcre/pcrelib/pcre_exec.c     save_offset2 = md->offset_vector[offset+1];
offset           1200 ext/pcre/pcrelib/pcre_exec.c       md->offset_vector[offset] = save_offset1;
offset           1201 ext/pcre/pcrelib/pcre_exec.c       md->offset_vector[offset+1] = save_offset2;
offset           1358 ext/pcre/pcrelib/pcre_exec.c       offset = GET2(ecode, 1) << 1;  /* Doubled ref number */
offset           1359 ext/pcre/pcrelib/pcre_exec.c       condition = offset < offset_top && md->offset_vector[offset] >= 0;
offset           1368 ext/pcre/pcrelib/pcre_exec.c           offset = GET2(slot, 0) << 1;
offset           1369 ext/pcre/pcrelib/pcre_exec.c           condition = offset < offset_top && md->offset_vector[offset] >= 0;
offset           1454 ext/pcre/pcrelib/pcre_exec.c     offset = number << 1;
offset           1462 ext/pcre/pcrelib/pcre_exec.c     if (offset >= md->offset_max) md->capture_last |= OVFLBIT; else
offset           1464 ext/pcre/pcrelib/pcre_exec.c       md->offset_vector[offset] =
offset           1466 ext/pcre/pcrelib/pcre_exec.c       md->offset_vector[offset+1] = (int)(eptr - md->start_subject);
offset           1472 ext/pcre/pcrelib/pcre_exec.c       if (offset >= offset_top)
offset           1475 ext/pcre/pcrelib/pcre_exec.c         register int *iend = md->offset_vector + offset;
offset           1477 ext/pcre/pcrelib/pcre_exec.c         offset_top = offset + 2;
offset           1950 ext/pcre/pcrelib/pcre_exec.c       offset = number << 1;
offset           1969 ext/pcre/pcrelib/pcre_exec.c       if (offset >= md->offset_max) md->capture_last |= OVFLBIT; else
offset           1981 ext/pcre/pcrelib/pcre_exec.c         if (offset > offset_top)
offset           1984 ext/pcre/pcrelib/pcre_exec.c           register int *iend = md->offset_vector + offset;
offset           1990 ext/pcre/pcrelib/pcre_exec.c         md->offset_vector[offset] =
offset           1992 ext/pcre/pcrelib/pcre_exec.c         md->offset_vector[offset+1] = (int)(eptr - md->start_subject);
offset           1993 ext/pcre/pcrelib/pcre_exec.c         if (offset_top <= offset) offset_top = offset + 2;
offset           2714 ext/pcre/pcrelib/pcre_exec.c       offset = 0;
offset           2718 ext/pcre/pcrelib/pcre_exec.c         offset = GET2(slot, 0) << 1;
offset           2719 ext/pcre/pcrelib/pcre_exec.c         if (offset < offset_top && md->offset_vector[offset] >= 0)
offset           2721 ext/pcre/pcrelib/pcre_exec.c           length = md->offset_vector[offset+1] - md->offset_vector[offset];
offset           2732 ext/pcre/pcrelib/pcre_exec.c     offset = GET2(ecode, 1) << 1;               /* Doubled ref number */
offset           2734 ext/pcre/pcrelib/pcre_exec.c     if (offset >= offset_top || md->offset_vector[offset] < 0)
offset           2737 ext/pcre/pcrelib/pcre_exec.c       length = md->offset_vector[offset+1] - md->offset_vector[offset];
offset           2767 ext/pcre/pcrelib/pcre_exec.c       if ((length = match_ref(offset, eptr, length, md, caseless)) < 0)
offset           2793 ext/pcre/pcrelib/pcre_exec.c       if ((slength = match_ref(offset, eptr, length, md, caseless)) < 0)
offset           2817 ext/pcre/pcrelib/pcre_exec.c         if ((slength = match_ref(offset, eptr, length, md, caseless)) < 0)
offset           2836 ext/pcre/pcrelib/pcre_exec.c         if ((slength = match_ref(offset, eptr, length, md, caseless)) < 0)
offset            539 ext/pcre/pcrelib/pcre_jit_compile.c #define GET_LOCAL_BASE(dst, dstw, offset) \
offset            540 ext/pcre/pcrelib/pcre_jit_compile.c   sljit_get_local_base(compiler, (dst), (dstw), (offset))
offset           1431 ext/pcre/pcrelib/pcre_jit_compile.c int offset;
offset           1523 ext/pcre/pcrelib/pcre_jit_compile.c     offset = (GET2(cc, 1 + LINK_SIZE)) << 1;
offset           1524 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(STACK_TOP), stackpos, SLJIT_IMM, OVECTOR(offset));
offset           1526 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           1527 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           5963 ext/pcre/pcrelib/pcre_jit_compile.c unsigned int offset;
offset           5973 ext/pcre/pcrelib/pcre_jit_compile.c   offset = GET2(slot, 0) << 1;
offset           5974 ext/pcre/pcrelib/pcre_jit_compile.c   GET_LOCAL_BASE(TMP2, 0, OVECTOR(offset));
offset           5975 ext/pcre/pcrelib/pcre_jit_compile.c   add_jump(compiler, &found, CMP(SLJIT_NOT_EQUAL, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0));
offset           5979 ext/pcre/pcrelib/pcre_jit_compile.c offset = GET2(slot, 0) << 1;
offset           5980 ext/pcre/pcrelib/pcre_jit_compile.c GET_LOCAL_BASE(TMP2, 0, OVECTOR(offset));
offset           5982 ext/pcre/pcrelib/pcre_jit_compile.c   add_jump(compiler, backtracks, CMP(SLJIT_EQUAL, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0));
offset           5991 ext/pcre/pcrelib/pcre_jit_compile.c int offset = 0;
offset           5998 ext/pcre/pcrelib/pcre_jit_compile.c   offset = GET2(cc, 1) << 1;
offset           5999 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           6012 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           6041 ext/pcre/pcrelib/pcre_jit_compile.c     OP2(SLJIT_SUB | SLJIT_SET_E, TMP2, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), TMP1, 0);
offset           6089 ext/pcre/pcrelib/pcre_jit_compile.c int offset = 0;
offset           6100 ext/pcre/pcrelib/pcre_jit_compile.c   offset = GET2(cc, 1) << 1;
offset           6144 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           6152 ext/pcre/pcrelib/pcre_jit_compile.c       zerolength = CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           6167 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           6172 ext/pcre/pcrelib/pcre_jit_compile.c       zerolength = CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           6225 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           6235 ext/pcre/pcrelib/pcre_jit_compile.c     zerolength = CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           6252 ext/pcre/pcrelib/pcre_jit_compile.c     zerolength = CMP(SLJIT_EQUAL, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           6902 ext/pcre/pcrelib/pcre_jit_compile.c static SLJIT_INLINE int match_capture_common(compiler_common *common, int stacksize, int offset, int private_data_ptr)
offset           6909 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), common->capture_last_ptr, SLJIT_IMM, offset >> 1);
offset           6913 ext/pcre/pcrelib/pcre_jit_compile.c if (common->optimized_cbracket[offset >> 1] == 0)
offset           6915 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           6916 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           6920 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), STR_PTR, 0);
offset           6921 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           6987 ext/pcre/pcrelib/pcre_jit_compile.c int offset = 0;
offset           7054 ext/pcre/pcrelib/pcre_jit_compile.c   offset = GET2(ccbegin, 1 + LINK_SIZE);
offset           7055 ext/pcre/pcrelib/pcre_jit_compile.c   if (common->optimized_cbracket[offset] == 0)
offset           7057 ext/pcre/pcrelib/pcre_jit_compile.c     private_data_ptr = OVECTOR_PRIV(offset);
offset           7058 ext/pcre/pcrelib/pcre_jit_compile.c     offset <<= 1;
offset           7062 ext/pcre/pcrelib/pcre_jit_compile.c     offset <<= 1;
offset           7063 ext/pcre/pcrelib/pcre_jit_compile.c     private_data_ptr = OVECTOR(offset);
offset           7238 ext/pcre/pcrelib/pcre_jit_compile.c   if (common->optimized_cbracket[offset >> 1] != 0)
offset           7240 ext/pcre/pcrelib/pcre_jit_compile.c     SLJIT_ASSERT(private_data_ptr == OVECTOR(offset));
offset           7389 ext/pcre/pcrelib/pcre_jit_compile.c if (offset != 0)
offset           7393 ext/pcre/pcrelib/pcre_jit_compile.c   if (common->optimized_cbracket[offset >> 1] == 0)
offset           7419 ext/pcre/pcrelib/pcre_jit_compile.c if (offset != 0)
offset           7420 ext/pcre/pcrelib/pcre_jit_compile.c   stacksize = match_capture_common(common, stacksize, offset, private_data_ptr);
offset           7431 ext/pcre/pcrelib/pcre_jit_compile.c if (offset != 0 && common->optimized_cbracket[offset >> 1] != 0)
offset           7433 ext/pcre/pcrelib/pcre_jit_compile.c   SLJIT_ASSERT(private_data_ptr == OVECTOR(offset + 0));
offset           7434 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), STR_PTR, 0);
offset           7532 ext/pcre/pcrelib/pcre_jit_compile.c int offset = 0;
offset           7559 ext/pcre/pcrelib/pcre_jit_compile.c   offset = GET2(cc, 1 + LINK_SIZE);
offset           7562 ext/pcre/pcrelib/pcre_jit_compile.c   SLJIT_ASSERT(common->optimized_cbracket[offset] == 0);
offset           7563 ext/pcre/pcrelib/pcre_jit_compile.c   cbraprivptr = OVECTOR_PRIV(offset);
offset           7564 ext/pcre/pcrelib/pcre_jit_compile.c   offset <<= 1;
offset           7577 ext/pcre/pcrelib/pcre_jit_compile.c   if (offset != 0)
offset           7597 ext/pcre/pcrelib/pcre_jit_compile.c   if (offset != 0)
offset           7600 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset));
offset           7601 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, TMP2, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1));
offset           7639 ext/pcre/pcrelib/pcre_jit_compile.c   if (offset == 0)
offset           7660 ext/pcre/pcrelib/pcre_jit_compile.c   if (offset == 0)
offset           7667 ext/pcre/pcrelib/pcre_jit_compile.c   stack -= 1 + (offset == 0);
offset           7670 ext/pcre/pcrelib/pcre_jit_compile.c if (offset != 0)
offset           7689 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0)
offset           7692 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), STR_PTR, 0);
offset           7695 ext/pcre/pcrelib/pcre_jit_compile.c         OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), common->capture_last_ptr, SLJIT_IMM, offset >> 1);
offset           7696 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           7717 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0)
offset           7721 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), STR_PTR, 0);
offset           7724 ext/pcre/pcrelib/pcre_jit_compile.c         OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), common->capture_last_ptr, SLJIT_IMM, offset >> 1);
offset           7725 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           7762 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0)
offset           7769 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0)
offset           8196 ext/pcre/pcrelib/pcre_jit_compile.c int offset = GET2(cc, 1);
offset           8197 ext/pcre/pcrelib/pcre_jit_compile.c BOOL optimized_cbracket = common->optimized_cbracket[offset] != 0;
offset           8204 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, TMP1, 0, SLJIT_MEM1(SLJIT_SP), OVECTOR_PRIV(offset));
offset           8205 ext/pcre/pcrelib/pcre_jit_compile.c offset <<= 1;
offset           8206 ext/pcre/pcrelib/pcre_jit_compile.c OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), STR_PTR, 0);
offset           8208 ext/pcre/pcrelib/pcre_jit_compile.c   OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           8864 ext/pcre/pcrelib/pcre_jit_compile.c int offset = 0;
offset           8910 ext/pcre/pcrelib/pcre_jit_compile.c   offset = (GET2(ccbegin, 1 + LINK_SIZE)) << 1;
offset           8991 ext/pcre/pcrelib/pcre_jit_compile.c if (offset != 0)
offset           8995 ext/pcre/pcrelib/pcre_jit_compile.c     SLJIT_ASSERT(common->optimized_cbracket[offset >> 1] == 0);
offset           9001 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP2, 0);
offset           9002 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), TMP1, 0);
offset           9004 ext/pcre/pcrelib/pcre_jit_compile.c   else if (common->optimized_cbracket[offset >> 1] == 0)
offset           9009 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           9010 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), TMP2, 0);
offset           9131 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0)
offset           9135 ext/pcre/pcrelib/pcre_jit_compile.c       if (common->optimized_cbracket[offset >> 1] == 0)
offset           9161 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0)
offset           9162 ext/pcre/pcrelib/pcre_jit_compile.c       stacksize = match_capture_common(common, stacksize, offset, private_data_ptr);
offset           9167 ext/pcre/pcrelib/pcre_jit_compile.c     if (offset != 0 && ket == OP_KETRMAX && common->optimized_cbracket[offset >> 1] != 0)
offset           9170 ext/pcre/pcrelib/pcre_jit_compile.c       SLJIT_ASSERT(private_data_ptr == OVECTOR(offset + 0));
offset           9171 ext/pcre/pcrelib/pcre_jit_compile.c       OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), STR_PTR, 0);
offset           9223 ext/pcre/pcrelib/pcre_jit_compile.c if (offset != 0)
offset           9226 ext/pcre/pcrelib/pcre_jit_compile.c   if (common->optimized_cbracket[offset >> 1] != 0)
offset           9231 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           9232 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), TMP2, 0);
offset           9323 ext/pcre/pcrelib/pcre_jit_compile.c int offset;
offset           9330 ext/pcre/pcrelib/pcre_jit_compile.c     offset = (GET2(current->cc, 1 + LINK_SIZE)) << 1;
offset           9333 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset), TMP1, 0);
offset           9336 ext/pcre/pcrelib/pcre_jit_compile.c     OP1(SLJIT_MOV, SLJIT_MEM1(SLJIT_SP), OVECTOR(offset + 1), TMP2, 0);
offset            315 ext/pcre/pcrelib/pcre_printint.c int offset = re->name_table_offset;
offset            321 ext/pcre/pcrelib/pcre_printint.c   offset = ((offset << 8) & 0xff00) | ((offset >> 8) & 0xff);
offset            330 ext/pcre/pcrelib/pcre_printint.c code = codestart = (pcre_uchar *)re + offset + count * size;
offset            431 ext/pcre/pcrelib/pcre_printint.c       pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
offset            449 ext/pcre/pcrelib/pcre_printint.c       pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
offset            615 ext/pcre/pcrelib/pcre_printint.c       pcre_uchar *entry = (pcre_uchar *)re + offset + (GET2(code, 1) * size) +
offset            139 ext/pcre/pcrelib/sljit/sljitExecAllocator.c #define AS_BLOCK_HEADER(base, offset) \
offset            140 ext/pcre/pcrelib/sljit/sljitExecAllocator.c 	((struct block_header*)(((sljit_ub*)base) + offset))
offset            141 ext/pcre/pcrelib/sljit/sljitExecAllocator.c #define AS_FREE_BLOCK(base, offset) \
offset            142 ext/pcre/pcrelib/sljit/sljitExecAllocator.c 	((struct free_block*)(((sljit_ub*)base) + offset))
offset           1448 ext/pcre/pcrelib/sljit/sljitLir.c static SLJIT_INLINE CHECK_RETURN_TYPE check_sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
offset           1450 ext/pcre/pcrelib/sljit/sljitLir.c 	SLJIT_UNUSED_ARG(offset);
offset           1459 ext/pcre/pcrelib/sljit/sljitLir.c 		fprintf(compiler->verbose, ", #%" SLJIT_PRINT_D "d\n", offset);
offset           1692 ext/pcre/pcrelib/sljit/sljitLir.c SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
offset           1695 ext/pcre/pcrelib/sljit/sljitLir.c 	CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
offset           1697 ext/pcre/pcrelib/sljit/sljitLir.c 	ADJUST_LOCAL_OFFSET(SLJIT_MEM1(SLJIT_SP), offset);
offset           1702 ext/pcre/pcrelib/sljit/sljitLir.c 	if (offset != 0)
offset           1703 ext/pcre/pcrelib/sljit/sljitLir.c 		return sljit_emit_op2(compiler, SLJIT_ADD | SLJIT_KEEP_FLAGS, dst, dstw, SLJIT_SP, 0, SLJIT_IMM, offset);
offset           1995 ext/pcre/pcrelib/sljit/sljitLir.c SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
offset           2000 ext/pcre/pcrelib/sljit/sljitLir.c 	SLJIT_UNUSED_ARG(offset);
offset           1080 ext/pcre/pcrelib/sljit/sljitLir.h SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset);
offset           2848 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_get_local_base(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw, sljit_sw offset)
offset           2851 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 	CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset));
offset           2860 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 	ADJUST_LOCAL_OFFSET(SLJIT_MEM1(SLJIT_SP), offset);
offset           2863 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 	if (NOT_HALFWORD(offset)) {
offset           2864 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 		FAIL_IF(emit_load_imm64(compiler, TMP_REG1, offset));
offset           2874 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 	if (offset != 0)
offset           2875 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 		return emit_lea_binary(compiler, SLJIT_KEEP_FLAGS, dst, dstw, SLJIT_SP, 0, SLJIT_IMM, offset);
offset            570 ext/pcre/php_pcre.c static inline void add_offset_pair(zval *result, char *str, int len, int offset, char *name)
offset            579 ext/pcre/php_pcre.c 	ZVAL_LONG(&tmp, offset);
offset           2126 ext/pcre/php_pcre.c     ZEND_ARG_INFO(0, offset)
offset           2134 ext/pcre/php_pcre.c     ZEND_ARG_INFO(0, offset)
offset           1397 ext/pdo/pdo_dbh.c 	pdo_dbh_object_handlers.offset = XtOffsetOf(pdo_dbh_object_t, std);
offset             51 ext/pdo/pdo_stmt.c 	ZEND_ARG_INFO(0, offset)
offset            678 ext/pdo/pdo_stmt.c static int do_fetch_common(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, zend_long offset, int do_bind) /* {{{ */
offset            688 ext/pdo/pdo_stmt.c 	if (!stmt->methods->fetcher(stmt, ori, offset)) {
offset            834 ext/pdo/pdo_stmt.c static int do_fetch(pdo_stmt_t *stmt, int do_bind, zval *return_value, enum pdo_fetch_type how, enum pdo_fetch_orientation ori, zend_long offset, zval *return_all) /* {{{ */
offset            847 ext/pdo/pdo_stmt.c 	if (!do_fetch_common(stmt, ori, offset, do_bind)) {
offset           2281 ext/pdo/pdo_stmt.c 	pdo_dbstmt_object_handlers.offset = XtOffsetOf(pdo_stmt_t, std);
offset           2573 ext/pdo/pdo_stmt.c static void row_prop_delete(zval *object, zval *offset, void **cache_slot)
offset           2578 ext/pdo/pdo_stmt.c static void row_dim_delete(zval *object, zval *offset)
offset            330 ext/pdo/php_pdo_driver.h 	enum pdo_fetch_orientation ori, zend_long offset);
offset            168 ext/pdo_dblib/dblib_stmt.c 	enum pdo_fetch_orientation ori, zend_long offset)
offset            156 ext/pdo_firebird/firebird_statement.c 	enum pdo_fetch_orientation ori, zend_long offset)
offset            613 ext/pdo_mysql/mysql_statement.c static int pdo_mysql_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori, zend_long offset) /* {{{ */
offset            405 ext/pdo_oci/oci_statement.c 						ub4 amt, offset = 1;
offset            421 ext/pdo_oci/oci_statement.c 											&amt, offset, consume, (ub4) n,
offset            424 ext/pdo_oci/oci_statement.c 									offset += amt;
offset            440 ext/pdo_oci/oci_statement.c 											&amt, offset, consume, (ub4) n,
offset            462 ext/pdo_oci/oci_statement.c static int oci_stmt_fetch(pdo_stmt_t *stmt, enum pdo_fetch_orientation ori,	zend_long offset) /* {{{ */
offset            478 ext/pdo_oci/oci_statement.c 	S->last_err = OCIStmtFetch2(S->stmt, S->err, 1, ociori, (sb4) offset, OCI_DEFAULT);
offset            639 ext/pdo_oci/oci_statement.c 	ub4 offset;
offset            650 ext/pdo_oci/oci_statement.c 		&amt, self->offset, (char*)buf, (ub4) count,
offset            658 ext/pdo_oci/oci_statement.c 	self->offset += amt;
offset            670 ext/pdo_oci/oci_statement.c 		&amt, self->offset, buf, (ub4) count,
offset            677 ext/pdo_oci/oci_statement.c 	self->offset += amt;
offset            710 ext/pdo_oci/oci_statement.c static int oci_blob_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset)
offset            714 ext/pdo_oci/oci_statement.c 	if (offset >= PDO_OCI_LOBMAXSIZE) {
offset            717 ext/pdo_oci/oci_statement.c 		self->offset = (ub4) offset + 1;  /* Oracle LOBS are 1-based, but PHP is 0-based */
offset            741 ext/pdo_oci/oci_statement.c 	self->offset = 1; /* 1-based */
offset            527 ext/pdo_odbc/odbc_stmt.c 	enum pdo_fetch_orientation ori, zend_long offset)
offset            544 ext/pdo_odbc/odbc_stmt.c 	rc = SQLFetchScroll(S->stmt, odbcori, offset);
offset            166 ext/pdo_pgsql/pgsql_driver.c static int pgsql_lob_seek(php_stream *stream, zend_off_t offset, int whence,
offset            171 ext/pdo_pgsql/pgsql_driver.c 	zend_off_t pos = lo_lseek64(self->conn, self->lfd, offset, whence);
offset            173 ext/pdo_pgsql/pgsql_driver.c 	zend_off_t pos = lo_lseek(self->conn, self->lfd, offset, whence);
offset            389 ext/pdo_pgsql/pgsql_statement.c 	enum pdo_fetch_orientation ori, zend_long offset)
offset            403 ext/pdo_pgsql/pgsql_statement.c 			case PDO_FETCH_ORI_ABS:		spprintf(&ori_str, 0, "ABSOLUTE %pd", offset); break;
offset            404 ext/pdo_pgsql/pgsql_statement.c 			case PDO_FETCH_ORI_REL:		spprintf(&ori_str, 0, "RELATIVE %pd", offset); break;
offset            202 ext/pdo_sqlite/sqlite_statement.c 	enum pdo_fetch_orientation ori, zend_long offset)
offset            288 ext/pgsql/pgsql.c 	ZEND_ARG_INFO(0, offset)
offset            370 ext/pgsql/pgsql.c 	ZEND_ARG_INFO(0, offset)
offset           3776 ext/pgsql/pgsql.c 	zend_long result, offset = 0, whence = SEEK_CUR;
offset           3780 ext/pgsql/pgsql.c 	if (zend_parse_parameters(argc, "rl|l", &pgsql_id, &offset, &whence) == FAILURE) {
offset           3794 ext/pgsql/pgsql.c 		result = lo_lseek64((PGconn *)pgsql->conn, pgsql->lofd, offset, (int)whence);
offset           3796 ext/pgsql/pgsql.c 		result = lo_lseek((PGconn *)pgsql->conn, pgsql->lofd, (int)offset, (int)whence);
offset           3799 ext/pgsql/pgsql.c 	result = lo_lseek((PGconn *)pgsql->conn, pgsql->lofd, offset, whence);
offset           3814 ext/pgsql/pgsql.c 	zend_long offset = 0;
offset           3828 ext/pgsql/pgsql.c 		offset = lo_tell64((PGconn *)pgsql->conn, pgsql->lofd);
offset           3830 ext/pgsql/pgsql.c 		offset = lo_tell((PGconn *)pgsql->conn, pgsql->lofd);
offset           3833 ext/pgsql/pgsql.c 	offset = lo_tell((PGconn *)pgsql->conn, pgsql->lofd);
offset           3835 ext/pgsql/pgsql.c 	RETURN_LONG(offset);
offset             61 ext/phar/dirstream.c static int phar_dir_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) /* {{{ */
offset             71 ext/phar/dirstream.c 		offset = zend_hash_num_elements(data) + offset;
offset             78 ext/phar/dirstream.c 	if (offset < 0) {
offset             82 ext/phar/dirstream.c 		while (*newoffset < offset && zend_hash_move_forward(data) == SUCCESS) {
offset             34 ext/phar/dirstream.h static int    phar_dir_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
offset            101 ext/phar/func_interceptors.c 	zend_long offset = -1;
offset            115 ext/phar/func_interceptors.c 	if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) {
offset            202 ext/phar/func_interceptors.c 			if (offset > 0 && php_stream_seek(stream, offset, SEEK_SET) < 0) {
offset            203 ext/phar/func_interceptors.c 				php_error_docref(NULL, E_WARNING, "Failed to seek to position %pd in the stream", offset);
offset            660 ext/phar/phar.c 	zend_long offset;
offset           1053 ext/phar/phar.c 	offset = halt_offset + manifest_len + 4;
offset           1090 ext/phar/phar.c 		if (offset == halt_offset + (int)manifest_len + 4) {
offset           1126 ext/phar/phar.c 		entry.offset = entry.offset_abs = offset;
offset           1127 ext/phar/phar.c 		offset += entry.compressed_filesize;
offset           2394 ext/phar/phar.c 		entry->offset = entry->offset_abs =
offset           2505 ext/phar/phar.c 	zend_long offset;
offset           2686 ext/phar/phar.c 	offset = 0;
offset           2738 ext/phar/phar.c 		offset += 4 + entry->filename_len + sizeof(entry_buffer) + (entry->metadata_str.s ? ZSTR_LEN(entry->metadata_str.s) : 0) + (entry->is_dir ? 1 : 0);
offset           2864 ext/phar/phar.c 	manifest_len = offset + phar->alias_len + sizeof(manifest) + (main_metadata_str.s ? ZSTR_LEN(main_metadata_str.s) : 0);
offset           3015 ext/phar/phar.c 	offset = php_stream_tell(newfile);
offset           3057 ext/phar/phar.c 		entry->offset = entry->offset_abs = offset;
offset           3058 ext/phar/phar.c 		offset += entry->compressed_filesize;
offset            252 ext/phar/phar_internal.h 	zend_long                     offset;
offset            335 ext/phar/phar_internal.h 	zend_long                     offset;
offset            416 ext/phar/phar_internal.h static inline void phar_set_fp_type(phar_entry_info *entry, enum phar_fp_type type, zend_off_t offset)
offset            422 ext/phar/phar_internal.h 		entry->offset = offset;
offset            427 ext/phar/phar_internal.h 	data->offset = offset;
offset            441 ext/phar/phar_internal.h 		return entry->offset;
offset            444 ext/phar/phar_internal.h 		if (!PHAR_G(cached_fp)[entry->phar->phar_pos].manifest[entry->manifest_pos].offset) {
offset            445 ext/phar/phar_internal.h 			PHAR_G(cached_fp)[entry->phar->phar_pos].manifest[entry->manifest_pos].offset = entry->offset;
offset            448 ext/phar/phar_internal.h 	return PHAR_G(cached_fp)[entry->phar->phar_pos].manifest[entry->manifest_pos].offset;
offset            571 ext/phar/phar_internal.h int phar_seek_efp(phar_entry_info *entry, zend_off_t offset, int whence, zend_off_t position, int follow_links);
offset           1132 ext/phar/phar_object.c 	phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
offset           1370 ext/phar/phar_object.c 	phar_archive_object *phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); \
offset           1383 ext/phar/phar_object.c 	phar_archive_object *phar_obj = (phar_archive_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
offset           1470 ext/phar/phar_object.c 				spl_filesystem_object *intern = (spl_filesystem_object*)((char*)Z_OBJ_P(value) - Z_OBJ_P(value)->handlers->offset);
offset           1692 ext/phar/phar_object.c 		data->internal_file->offset_abs = data->internal_file->offset = php_stream_tell(p_obj->fp);
offset           1696 ext/phar/phar_object.c 			php_stream_tell(p_obj->fp) - data->internal_file->offset;
offset           1956 ext/phar/phar_object.c 	zend_off_t offset;
offset           1973 ext/phar/phar_object.c 	offset = php_stream_tell(fp);
offset           1994 ext/phar/phar_object.c 	entry->offset = offset;
offset           4403 ext/phar/phar_object.c 	entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
offset           4454 ext/phar/phar_object.c 	phar_entry_object *entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset); \
offset           4467 ext/phar/phar_object.c 	phar_entry_object *entry_obj = (phar_entry_object*)((char*)Z_OBJ_P(zobj) - Z_OBJ_P(zobj)->handlers->offset);
offset           5083 ext/phar/phar_object.c 	ZEND_ARG_INFO(0, offset)
offset            168 ext/phar/pharzip.h 	char offset[4];            /* relative offset of local header 4 bytes */
offset            265 ext/phar/stream.c 				entry->offset = entry->offset_abs = 0;
offset            393 ext/phar/stream.c static int phar_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) /* {{{ */
offset            408 ext/phar/stream.c 			temp = data->zero + entry->uncompressed_filesize + offset;
offset            411 ext/phar/stream.c 			temp = data->zero + data->position + offset;
offset            414 ext/phar/stream.c 			temp = data->zero + offset;
offset             37 ext/phar/stream.h static int    phar_stream_seek( php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
offset            466 ext/phar/tar.c 		entry.offset = entry.offset_abs = pos; /* header_offset unused in tar */
offset            841 ext/phar/tar.c 	entry->offset = entry->offset_abs = pos;
offset            873 ext/phar/tar.c 	entry->offset = entry->offset_abs = 0;
offset            120 ext/phar/util.c int phar_seek_efp(phar_entry_info *entry, zend_off_t offset, int whence, zend_off_t position, int follow_links) /* {{{ */
offset            145 ext/phar/util.c 			temp = eoffset + entry->uncompressed_filesize + offset;
offset            148 ext/phar/util.c 			temp = eoffset + position + offset;
offset            151 ext/phar/util.c 			temp = eoffset + offset;
offset            666 ext/phar/util.c 	dest->offset = 0;
offset            737 ext/phar/util.c 		dummy.zero = entry->offset;
offset            755 ext/phar/util.c 	dummy.zero = entry->offset;
offset            802 ext/phar/util.c 	dummy.zero = entry->offset;
offset            826 ext/phar/util.c 		entry->offset = 0;
offset            859 ext/phar/util.c 	entry->offset = 0;
offset            902 ext/phar/util.c 	entry->offset = 0;
offset            363 ext/phar/zip.c 		entry.header_offset = PHAR_GET_32(zipentry.offset);
offset            364 ext/phar/zip.c 		entry.offset = entry.offset_abs = PHAR_GET_32(zipentry.offset) + sizeof(phar_zip_file_header) + PHAR_GET_16(zipentry.filename_len) +
offset            548 ext/phar/zip.c 			php_stream_seek(fp, PHAR_GET_32(zipentry.offset), SEEK_SET);
offset            562 ext/phar/zip.c 			entry.offset = entry.offset_abs =
offset            564 ext/phar/zip.c 			php_stream_seek(fp, entry.offset, SEEK_SET);
offset            568 ext/phar/zip.c 			php_stream_seek(fp, entry.offset, SEEK_SET);
offset            795 ext/phar/zip.c 	zend_off_t offset;
offset            847 ext/phar/zip.c 	PHAR_SET_32(central.offset, php_stream_tell(p->filefp));
offset            978 ext/phar/zip.c 	offset = entry->header_offset + sizeof(local) + entry->filename_len + (entry->is_dir ? 1 : 0) + sizeof(perms);
offset           1081 ext/phar/zip.c 	entry->offset = entry->offset_abs = offset;
offset            199 ext/reflection/php_reflection.c 	uint32_t offset;
offset            631 ext/reflection/php_reflection.c static zend_op* _get_recv_op(zend_op_array *op_array, uint32_t offset)
offset            636 ext/reflection/php_reflection.c 	++offset;
offset            639 ext/reflection/php_reflection.c 		    || op->opcode == ZEND_RECV_VARIADIC) && op->op1.num == (zend_long)offset)
offset            650 ext/reflection/php_reflection.c static void _parameter_string(string *str, zend_function *fptr, struct _zend_arg_info *arg_info, uint32_t offset, uint32_t required, char* indent)
offset            652 ext/reflection/php_reflection.c 	string_printf(str, "Parameter #%d [ ", offset);
offset            653 ext/reflection/php_reflection.c 	if (offset >= required) {
offset            686 ext/reflection/php_reflection.c 		string_printf(str, "$param%d", offset);
offset            688 ext/reflection/php_reflection.c 	if (fptr->type == ZEND_USER_FUNCTION && offset >= required) {
offset            689 ext/reflection/php_reflection.c 		zend_op *precv = _get_recv_op((zend_op_array*)fptr, offset);
offset           1213 ext/reflection/php_reflection.c static void reflection_parameter_factory(zend_function *fptr, zval *closure_object, struct _zend_arg_info *arg_info, uint32_t offset, uint32_t required, zval *object)
offset           1233 ext/reflection/php_reflection.c 	reference->offset = offset;
offset           1488 ext/reflection/php_reflection.c 	precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
offset           2503 ext/reflection/php_reflection.c 	ref->offset = (uint32_t)position;
offset           2529 ext/reflection/php_reflection.c 	_parameter_string(&str, param->fptr, param->arg_info, param->offset, param->required, "");
offset           2793 ext/reflection/php_reflection.c 	RETVAL_LONG(param->offset);
offset           2809 ext/reflection/php_reflection.c 	RETVAL_BOOL(param->offset >= param->required);
offset           2831 ext/reflection/php_reflection.c 	precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
offset           3737 ext/reflection/php_reflection.c 			prop = &ce->default_static_members_table[prop_info->offset];
offset           3739 ext/reflection/php_reflection.c 			prop = &ce->default_properties_table[OBJ_PROP_TO_NUM(prop_info->offset)];
offset           4331 ext/reflection/php_reflection.c 		property_info.offset = -1;
offset           5371 ext/reflection/php_reflection.c 		if (Z_TYPE(CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) == IS_UNDEF) {
offset           5375 ext/reflection/php_reflection.c 		ZVAL_DUP(return_value, &CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]);
offset           5423 ext/reflection/php_reflection.c 		if (Z_TYPE(CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) == IS_UNDEF) {
offset           5427 ext/reflection/php_reflection.c 		variable_ptr = &CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset];
offset           6519 ext/reflection/php_reflection.c 	reflection_object_handlers.offset = XtOffsetOf(reflection_object, zo);
offset           3026 ext/session/session.c 			Z_LVAL_P(progress->current_file_bytes_processed) = data->offset + data->length;
offset             73 ext/shmop/shmop.c 	ZEND_ARG_INFO(0, offset)
offset            308 ext/shmop/shmop.c 	zend_long offset;
offset            312 ext/shmop/shmop.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rSl", &shmid, &data, &offset) == FAILURE) {
offset            325 ext/shmop/shmop.c 	if (offset < 0 || offset > shmop->size) {
offset            330 ext/shmop/shmop.c 	writesize = (ZSTR_LEN(data) < shmop->size - offset) ? ZSTR_LEN(data) : shmop->size - offset;
offset            331 ext/shmop/shmop.c 	memcpy(shmop->addr + offset, ZSTR_VAL(data), writesize);
offset            130 ext/simplexml/simplexml.c static xmlNodePtr sxe_get_element_by_offset(php_sxe_object *sxe, zend_long offset, xmlNodePtr node, zend_long *cnt) /* {{{ */
offset            135 ext/simplexml/simplexml.c 		if (offset == 0) {
offset            144 ext/simplexml/simplexml.c 	while (node && nodendx <= offset) {
offset            149 ext/simplexml/simplexml.c 				if (nodendx == offset) {
offset            380 ext/simplexml/simplexml.c static zval *sxe_dimension_read(zval *object, zval *offset, int type, zval *rv)
offset            382 ext/simplexml/simplexml.c 	return sxe_prop_dim_read(object, offset, 0, 1, type, rv);
offset            668 ext/simplexml/simplexml.c static void sxe_dimension_write(zval *object, zval *offset, zval *value)
offset            670 ext/simplexml/simplexml.c 	sxe_prop_dim_write(object, offset, value, 0, 1, NULL);
offset            954 ext/simplexml/simplexml.c static void sxe_dimension_delete(zval *object, zval *offset)
offset            956 ext/simplexml/simplexml.c 	sxe_prop_dim_delete(object, offset, 0, 1);
offset           2714 ext/simplexml/simplexml.c 	sxe_object_handlers.offset = XtOffsetOf(php_sxe_object, zo);
offset            375 ext/snmp/snmp.c 	int offset;
offset            725 ext/snmp/snmp.c 		objid_query->offset = objid_query->count;
offset            764 ext/snmp/snmp.c 			for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query->offset++, count++){
offset            766 ext/snmp/snmp.c 					if ((snmp_errno = snmp_add_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length, objid_query->vars[objid_query->offset].type, objid_query->vars[objid_query->offset].value))) {
offset            767 ext/snmp/snmp.c 						snprint_objid(buf, sizeof(buf), objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length);
offset            768 ext/snmp/snmp.c 						php_snmp_error(getThis(), NULL, PHP_SNMP_ERRNO_OID_PARSING_ERROR, "Could not add variable: OID='%s' type='%c' value='%s': %s", buf, objid_query->vars[objid_query->offset].type, objid_query->vars[objid_query->offset].value, snmp_api_errstring(snmp_errno));
offset            775 ext/snmp/snmp.c 					snmp_add_null_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length);
offset            791 ext/snmp/snmp.c 					if (objid_query->offset < objid_query->count) { /* we have unprocessed OIDs */
offset            822 ext/snmp/snmp.c 							objid_query->offset = 0;
offset            887 ext/snmp/snmp.c 				if (objid_query->offset < objid_query->count) { /* we have unprocessed OIDs */
offset            903 ext/snmp/snmp.c 						objid_query->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->step) : 0 );
offset           1097 ext/snmp/snmp.c 		for (objid_query->offset = 0; objid_query->offset < objid_query->count; objid_query->offset++) {
offset           1098 ext/snmp/snmp.c 			objid_query->vars[objid_query->offset].name_length = MAX_OID_LEN;
offset           1099 ext/snmp/snmp.c 			if (!snmp_parse_oid(objid_query->vars[objid_query->offset].oid, objid_query->vars[objid_query->offset].name, &(objid_query->vars[objid_query->offset].name_length))) {
offset           1100 ext/snmp/snmp.c 				php_snmp_error(object, NULL, PHP_SNMP_ERRNO_OID_PARSING_ERROR, "Invalid object identifier: %s", objid_query->vars[objid_query->offset].oid);
offset           1106 ext/snmp/snmp.c 	objid_query->offset = 0;
offset           2368 ext/snmp/snmp.c 	php_snmp_object_handlers.offset = XtOffsetOf(php_snmp_object, zo);
offset            130 ext/sockets/conversions.c static inline void *accounted_safe_ecalloc(size_t nmemb, size_t alloc_size, size_t offset, ser_context *ctx)
offset            132 ext/sockets/conversions.c 	void *ret = safe_emalloc(nmemb, alloc_size, offset);
offset            133 ext/sockets/conversions.c 	memset(ret, '\0', nmemb * alloc_size + offset);
offset            831 ext/sockets/conversions.c 									size_t				*offset,
offset            886 ext/sockets/conversions.c 	space_left = *control_len - *offset;
offset            887 ext/sockets/conversions.c 	assert(*control_len >= *offset);
offset            892 ext/sockets/conversions.c 		memset((char *)*control_buf + *offset, '\0', *control_len - *offset);
offset            896 ext/sockets/conversions.c 	cmsghdr = (struct cmsghdr*)(((char*)*control_buf) + *offset);
offset            904 ext/sockets/conversions.c 	*offset += req_space;
offset            278 ext/spl/spl_array.c static zval *spl_array_get_dimension_ptr(int check_inherited, zval *object, zval *offset, int type) /* {{{ */
offset            286 ext/spl/spl_array.c 	if (!offset || Z_ISUNDEF_P(offset)) {
offset            296 ext/spl/spl_array.c 	switch (Z_TYPE_P(offset)) {
offset            301 ext/spl/spl_array.c 	   offset_key = Z_STR_P(offset);
offset            342 ext/spl/spl_array.c 		zend_error(E_NOTICE, "Resource ID#%pd used as offset, casting to integer (%pd)", Z_RES_P(offset)->handle, Z_RES_P(offset)->handle);
offset            343 ext/spl/spl_array.c 		index = Z_RES_P(offset)->handle;
offset            346 ext/spl/spl_array.c 		index = (zend_long)Z_DVAL_P(offset);
offset            355 ext/spl/spl_array.c 		index = Z_LVAL_P(offset);
offset            376 ext/spl/spl_array.c 		ZVAL_DEREF(offset);
offset            385 ext/spl/spl_array.c static zval *spl_array_read_dimension_ex(int check_inherited, zval *object, zval *offset, int type, zval *rv) /* {{{ */
offset            393 ext/spl/spl_array.c 			if (!offset) {
offset            395 ext/spl/spl_array.c 				offset = &tmp;
offset            397 ext/spl/spl_array.c 				SEPARATE_ARG_IF_REF(offset);
offset            399 ext/spl/spl_array.c 			zend_call_method_with_1_params(object, Z_OBJCE_P(object), &intern->fptr_offset_get, "offsetGet", rv, offset);
offset            400 ext/spl/spl_array.c 			zval_ptr_dtor(offset);
offset            408 ext/spl/spl_array.c 	ret = spl_array_get_dimension_ptr(check_inherited, object, offset, type);
offset            424 ext/spl/spl_array.c static zval *spl_array_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */
offset            426 ext/spl/spl_array.c 	return spl_array_read_dimension_ex(1, object, offset, type, rv);
offset            429 ext/spl/spl_array.c static void spl_array_write_dimension_ex(int check_inherited, zval *object, zval *offset, zval *value) /* {{{ */
offset            438 ext/spl/spl_array.c 		if (!offset) {
offset            440 ext/spl/spl_array.c 			offset = &tmp;
offset            442 ext/spl/spl_array.c 			SEPARATE_ARG_IF_REF(offset);
offset            444 ext/spl/spl_array.c 		zend_call_method_with_2_params(object, Z_OBJCE_P(object), &intern->fptr_offset_set, "offsetSet", NULL, offset, value);
offset            445 ext/spl/spl_array.c 		zval_ptr_dtor(offset);
offset            458 ext/spl/spl_array.c 	if (!offset) {
offset            465 ext/spl/spl_array.c 	switch (Z_TYPE_P(offset)) {
offset            468 ext/spl/spl_array.c 			zend_symtable_update_ind(ht, Z_STR_P(offset), value);
offset            471 ext/spl/spl_array.c 			index = (zend_long)Z_DVAL_P(offset);
offset            474 ext/spl/spl_array.c 			index = Z_RES_HANDLE_P(offset);
offset            483 ext/spl/spl_array.c 			index = Z_LVAL_P(offset);
offset            493 ext/spl/spl_array.c 			ZVAL_DEREF(offset);
offset            502 ext/spl/spl_array.c static void spl_array_write_dimension(zval *object, zval *offset, zval *value) /* {{{ */
offset            504 ext/spl/spl_array.c 	spl_array_write_dimension_ex(1, object, offset, value);
offset            507 ext/spl/spl_array.c static void spl_array_unset_dimension_ex(int check_inherited, zval *object, zval *offset) /* {{{ */
offset            514 ext/spl/spl_array.c 		SEPARATE_ARG_IF_REF(offset);
offset            515 ext/spl/spl_array.c 		zend_call_method_with_1_params(object, Z_OBJCE_P(object), &intern->fptr_offset_del, "offsetUnset", NULL, offset);
offset            516 ext/spl/spl_array.c 		zval_ptr_dtor(offset);
offset            526 ext/spl/spl_array.c 	switch (Z_TYPE_P(offset)) {
offset            530 ext/spl/spl_array.c 			if (zend_delete_global_variable(Z_STR_P(offset))) {
offset            531 ext/spl/spl_array.c 				zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            534 ext/spl/spl_array.c 			zval *data = zend_symtable_find(ht, Z_STR_P(offset));
offset            540 ext/spl/spl_array.c 						zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            550 ext/spl/spl_array.c 				} else if (zend_symtable_del(ht, Z_STR_P(offset)) == FAILURE) {
offset            551 ext/spl/spl_array.c 					zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            554 ext/spl/spl_array.c 				zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            559 ext/spl/spl_array.c 		index = (zend_long)Z_DVAL_P(offset);
offset            562 ext/spl/spl_array.c 		index = Z_RES_HANDLE_P(offset);
offset            571 ext/spl/spl_array.c 		index = Z_LVAL_P(offset);
offset            579 ext/spl/spl_array.c 		ZVAL_DEREF(offset);
offset            587 ext/spl/spl_array.c static void spl_array_unset_dimension(zval *object, zval *offset) /* {{{ */
offset            589 ext/spl/spl_array.c 	spl_array_unset_dimension_ex(1, object, offset);
offset            592 ext/spl/spl_array.c static int spl_array_has_dimension_ex(int check_inherited, zval *object, zval *offset, int check_empty) /* {{{ */
offset            599 ext/spl/spl_array.c 		SEPARATE_ARG_IF_REF(offset);
offset            600 ext/spl/spl_array.c 		zend_call_method_with_1_params(object, Z_OBJCE_P(object), &intern->fptr_offset_has, "offsetExists", &rv, offset);
offset            601 ext/spl/spl_array.c 		zval_ptr_dtor(offset);
offset            608 ext/spl/spl_array.c 				value = spl_array_read_dimension_ex(1, object, offset, BP_VAR_R, &rv);
offset            620 ext/spl/spl_array.c 		switch (Z_TYPE_P(offset)) {
offset            622 ext/spl/spl_array.c 				if ((tmp = zend_symtable_find(ht, Z_STR_P(offset))) != NULL) {
offset            632 ext/spl/spl_array.c 				index = (zend_long)Z_DVAL_P(offset);
offset            635 ext/spl/spl_array.c 				index = Z_RES_HANDLE_P(offset);
offset            644 ext/spl/spl_array.c 				index = Z_LVAL_P(offset);
offset            655 ext/spl/spl_array.c 				ZVAL_DEREF(offset);
offset            663 ext/spl/spl_array.c 			value = spl_array_read_dimension_ex(1, object, offset, BP_VAR_R, &rv);
offset            678 ext/spl/spl_array.c static int spl_array_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */
offset            680 ext/spl/spl_array.c 	return spl_array_has_dimension_ex(1, object, offset, check_empty);
offset           1930 ext/spl/spl_array.c 	spl_handler_ArrayObject.offset = XtOffsetOf(spl_array_object, std);
offset           3103 ext/spl/spl_directory.c 	spl_filesystem_object_handlers.offset = XtOffsetOf(spl_filesystem_object, std);
offset            170 ext/spl/spl_dllist.c static spl_ptr_llist_element *spl_ptr_llist_offset(spl_ptr_llist *llist, zend_long offset, int backward) /* {{{ */
offset            182 ext/spl/spl_dllist.c 	while (current && pos < offset) {
offset           1396 ext/spl/spl_dllist.c 	spl_handler_SplDoublyLinkedList.offset = XtOffsetOf(spl_dllist_object, std);
offset             41 ext/spl/spl_engine.c PHPAPI zend_long spl_offset_convert_to_long(zval *offset) /* {{{ */
offset             46 ext/spl/spl_engine.c 	switch (Z_TYPE_P(offset)) {
offset             48 ext/spl/spl_engine.c 		if (ZEND_HANDLE_NUMERIC(Z_STR_P(offset), idx)) {
offset             53 ext/spl/spl_engine.c 		return (zend_long)Z_DVAL_P(offset);
offset             55 ext/spl/spl_engine.c 		return Z_LVAL_P(offset);
offset             61 ext/spl/spl_engine.c 		offset = Z_REFVAL_P(offset);
offset             64 ext/spl/spl_engine.c 		return Z_RES_HANDLE_P(offset);
offset             30 ext/spl/spl_engine.h PHPAPI zend_long spl_offset_convert_to_long(zval *offset);
offset            327 ext/spl/spl_fixedarray.c static inline zval *spl_fixedarray_object_read_dimension_helper(spl_fixedarray_object *intern, zval *offset) /* {{{ */
offset            333 ext/spl/spl_fixedarray.c 	if (!offset) {
offset            338 ext/spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            339 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
offset            341 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            355 ext/spl/spl_fixedarray.c static zval *spl_fixedarray_object_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */
offset            363 ext/spl/spl_fixedarray.c 		if (!offset) {
offset            365 ext/spl/spl_fixedarray.c 			offset = &tmp;
offset            367 ext/spl/spl_fixedarray.c 			SEPARATE_ARG_IF_REF(offset);
offset            369 ext/spl/spl_fixedarray.c 		zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_get, "offsetGet", rv, offset);
offset            370 ext/spl/spl_fixedarray.c 		zval_ptr_dtor(offset);
offset            377 ext/spl/spl_fixedarray.c 	return spl_fixedarray_object_read_dimension_helper(intern, offset);
offset            381 ext/spl/spl_fixedarray.c static inline void spl_fixedarray_object_write_dimension_helper(spl_fixedarray_object *intern, zval *offset, zval *value) /* {{{ */
offset            385 ext/spl/spl_fixedarray.c 	if (!offset) {
offset            391 ext/spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            392 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
offset            394 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            410 ext/spl/spl_fixedarray.c static void spl_fixedarray_object_write_dimension(zval *object, zval *offset, zval *value) /* {{{ */
offset            418 ext/spl/spl_fixedarray.c 		if (!offset) {
offset            420 ext/spl/spl_fixedarray.c 			offset = &tmp;
offset            422 ext/spl/spl_fixedarray.c 			SEPARATE_ARG_IF_REF(offset);
offset            425 ext/spl/spl_fixedarray.c 		zend_call_method_with_2_params(object, intern->std.ce, &intern->fptr_offset_set, "offsetSet", NULL, offset, value);
offset            427 ext/spl/spl_fixedarray.c 		zval_ptr_dtor(offset);
offset            431 ext/spl/spl_fixedarray.c 	spl_fixedarray_object_write_dimension_helper(intern, offset, value);
offset            435 ext/spl/spl_fixedarray.c static inline void spl_fixedarray_object_unset_dimension_helper(spl_fixedarray_object *intern, zval *offset) /* {{{ */
offset            439 ext/spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            440 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
offset            442 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            455 ext/spl/spl_fixedarray.c static void spl_fixedarray_object_unset_dimension(zval *object, zval *offset) /* {{{ */
offset            462 ext/spl/spl_fixedarray.c 		SEPARATE_ARG_IF_REF(offset);
offset            463 ext/spl/spl_fixedarray.c 		zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_del, "offsetUnset", NULL, offset);
offset            464 ext/spl/spl_fixedarray.c 		zval_ptr_dtor(offset);
offset            468 ext/spl/spl_fixedarray.c 	spl_fixedarray_object_unset_dimension_helper(intern, offset);
offset            473 ext/spl/spl_fixedarray.c static inline int spl_fixedarray_object_has_dimension_helper(spl_fixedarray_object *intern, zval *offset, int check_empty) /* {{{ */
offset            478 ext/spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            479 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
offset            481 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            504 ext/spl/spl_fixedarray.c static int spl_fixedarray_object_has_dimension(zval *object, zval *offset, int check_empty) /* {{{ */
offset            512 ext/spl/spl_fixedarray.c 		SEPARATE_ARG_IF_REF(offset);
offset            513 ext/spl/spl_fixedarray.c 		zend_call_method_with_1_params(object, intern->std.ce, &intern->fptr_offset_has, "offsetExists", &rv, offset);
offset            514 ext/spl/spl_fixedarray.c 		zval_ptr_dtor(offset);
offset            523 ext/spl/spl_fixedarray.c 	return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty);
offset           1098 ext/spl/spl_fixedarray.c 	spl_handler_SplFixedArray.offset          = XtOffsetOf(spl_fixedarray_object, std);
offset           1205 ext/spl/spl_heap.c 	spl_handler_SplHeap.offset         = XtOffsetOf(spl_heap_object, std);
offset           1227 ext/spl/spl_heap.c 	spl_handler_SplPriorityQueue.offset         = XtOffsetOf(spl_heap_object, std);
offset           1468 ext/spl/spl_iterators.c 			intern->u.limit.offset = 0; /* start at beginning */
offset           1470 ext/spl/spl_iterators.c 			if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "O|ll", &zobject, ce_inner, &intern->u.limit.offset, &intern->u.limit.count) == FAILURE) {
offset           1473 ext/spl/spl_iterators.c 			if (intern->u.limit.offset < 0) {
offset           2482 ext/spl/spl_iterators.c 	if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit.count) {
offset           2494 ext/spl/spl_iterators.c 	if (pos < intern->u.limit.offset) {
offset           2495 ext/spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0, "Cannot seek to %pd which is below the offset %pd", pos, intern->u.limit.offset);
offset           2498 ext/spl/spl_iterators.c 	if (pos >= intern->u.limit.offset + intern->u.limit.count && intern->u.limit.count != -1) {
offset           2499 ext/spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0, "Cannot seek to %pd which is behind offset %pd plus count %pd", pos, intern->u.limit.offset, intern->u.limit.count);
offset           2543 ext/spl/spl_iterators.c 	spl_limit_it_seek(intern, intern->u.limit.offset);
offset           2555 ext/spl/spl_iterators.c 	RETURN_BOOL((intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) && Z_TYPE(intern->current.data) != IS_UNDEF);
offset           2567 ext/spl/spl_iterators.c 	if (intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) {
offset           2608 ext/spl/spl_iterators.c 	ZEND_ARG_INFO(0, offset)
offset           3689 ext/spl/spl_iterators.c 	spl_handlers_rec_it_it.offset = XtOffsetOf(spl_recursive_it_object, std);
offset           3696 ext/spl/spl_iterators.c 	spl_handlers_dual_it.offset = XtOffsetOf(spl_dual_it_object, std);
offset            142 ext/spl/spl_iterators.h 			zend_long             offset;
offset           1236 ext/spl/spl_observer.c 	spl_handler_SplObjectStorage.offset          = XtOffsetOf(spl_SplObjectStorage, std);
offset            954 ext/sqlite3/libsqlite/sqlite3.c   int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
offset           9540 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor*, u32 offset, u32 amt, void*);
offset           9544 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeData(BtCursor*, u32 offset, u32 amt, void*);
offset           9549 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor*, u32 offset, u32 amt, void*);
offset           10730 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file*, void*, int amt, i64 offset);
offset           10731 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file*, const void*, int amt, i64 offset);
offset           16535 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3OsRead(sqlite3_file *id, void *pBuf, int amt, i64 offset){
offset           16537 ext/sqlite3/libsqlite/sqlite3.c   return id->pMethods->xRead(id, pBuf, amt, offset);
offset           16539 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3OsWrite(sqlite3_file *id, const void *pBuf, int amt, i64 offset){
offset           16541 ext/sqlite3/libsqlite/sqlite3.c   return id->pMethods->xWrite(id, pBuf, amt, offset);
offset           16603 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3OsShmLock(sqlite3_file *id, int offset, int n, int flags){
offset           16604 ext/sqlite3/libsqlite/sqlite3.c   return id->pMethods->xShmLock(id, offset, n, flags);
offset           28088 ext/sqlite3/libsqlite/sqlite3.c   unsigned long long offset;        /* offset to first byte to lock */
offset           28107 ext/sqlite3/libsqlite/sqlite3.c   unsigned long long offset,     /* First byte to be locked */
offset           28116 ext/sqlite3/libsqlite/sqlite3.c   pb.offset = offset;
offset           28122 ext/sqlite3/libsqlite/sqlite3.c     offset, length));
offset           28584 ext/sqlite3/libsqlite/sqlite3.c static int seekAndRead(unixFile *id, sqlite3_int64 offset, void *pBuf, int cnt){
offset           28596 ext/sqlite3/libsqlite/sqlite3.c     got = osPread(id->h, pBuf, cnt, offset);
offset           28599 ext/sqlite3/libsqlite/sqlite3.c     got = osPread64(id->h, pBuf, cnt, offset);
offset           28602 ext/sqlite3/libsqlite/sqlite3.c     newOffset = lseek(id->h, offset, SEEK_SET);
offset           28604 ext/sqlite3/libsqlite/sqlite3.c     if( newOffset!=offset ){
offset           28622 ext/sqlite3/libsqlite/sqlite3.c       offset += got;
offset           28629 ext/sqlite3/libsqlite/sqlite3.c             id->h, got+prior, offset-prior, TIMER_ELAPSED));
offset           28642 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_int64 offset
offset           28647 ext/sqlite3/libsqlite/sqlite3.c   assert( offset>=0 );
offset           28654 ext/sqlite3/libsqlite/sqlite3.c        || offset>=PENDING_BYTE+512
offset           28655 ext/sqlite3/libsqlite/sqlite3.c        || offset+amt<=PENDING_BYTE 
offset           28662 ext/sqlite3/libsqlite/sqlite3.c   if( offset<pFile->mmapSize ){
offset           28663 ext/sqlite3/libsqlite/sqlite3.c     if( offset+amt <= pFile->mmapSize ){
offset           28664 ext/sqlite3/libsqlite/sqlite3.c       memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt);
offset           28667 ext/sqlite3/libsqlite/sqlite3.c       int nCopy = pFile->mmapSize - offset;
offset           28668 ext/sqlite3/libsqlite/sqlite3.c       memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy);
offset           28671 ext/sqlite3/libsqlite/sqlite3.c       offset += nCopy;
offset           28676 ext/sqlite3/libsqlite/sqlite3.c   got = seekAndRead(pFile, offset, pBuf, amt);
offset           28743 ext/sqlite3/libsqlite/sqlite3.c static int seekAndWrite(unixFile *id, i64 offset, const void *pBuf, int cnt){
offset           28744 ext/sqlite3/libsqlite/sqlite3.c   return seekAndWriteFd(id->h, offset, pBuf, cnt, &id->lastErrno);
offset           28756 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_int64 offset 
offset           28767 ext/sqlite3/libsqlite/sqlite3.c        || offset>=PENDING_BYTE+512
offset           28768 ext/sqlite3/libsqlite/sqlite3.c        || offset+amt<=PENDING_BYTE 
offset           28781 ext/sqlite3/libsqlite/sqlite3.c     if( offset<=24 && offset+amt>=27 ){
offset           28787 ext/sqlite3/libsqlite/sqlite3.c       if( rc!=4 || memcmp(oldCntr, &((char*)pBuf)[24-offset], 4)!=0 ){
offset           28797 ext/sqlite3/libsqlite/sqlite3.c   if( offset<pFile->mmapSize ){
offset           28798 ext/sqlite3/libsqlite/sqlite3.c     if( offset+amt <= pFile->mmapSize ){
offset           28799 ext/sqlite3/libsqlite/sqlite3.c       memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt);
offset           28802 ext/sqlite3/libsqlite/sqlite3.c       int nCopy = pFile->mmapSize - offset;
offset           28803 ext/sqlite3/libsqlite/sqlite3.c       memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy);
offset           28806 ext/sqlite3/libsqlite/sqlite3.c       offset += nCopy;
offset           28811 ext/sqlite3/libsqlite/sqlite3.c   while( amt>0 && (wrote = seekAndWrite(pFile, offset, pBuf, amt))>0 ){
offset           28813 ext/sqlite3/libsqlite/sqlite3.c     offset += wrote;
offset           35718 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_int64 offset       /* Begin reading at this offset */
offset           35729 ext/sqlite3/libsqlite/sqlite3.c   assert( offset>=0 );
offset           35733 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pBuf, amt, offset, pFile->locktype));
offset           35738 ext/sqlite3/libsqlite/sqlite3.c   if( offset<pFile->mmapSize ){
offset           35739 ext/sqlite3/libsqlite/sqlite3.c     if( offset+amt <= pFile->mmapSize ){
offset           35740 ext/sqlite3/libsqlite/sqlite3.c       memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], amt);
offset           35745 ext/sqlite3/libsqlite/sqlite3.c       int nCopy = (int)(pFile->mmapSize - offset);
offset           35746 ext/sqlite3/libsqlite/sqlite3.c       memcpy(pBuf, &((u8 *)(pFile->pMapRegion))[offset], nCopy);
offset           35749 ext/sqlite3/libsqlite/sqlite3.c       offset += nCopy;
offset           35755 ext/sqlite3/libsqlite/sqlite3.c   if( winSeekFile(pFile, offset) ){
offset           35763 ext/sqlite3/libsqlite/sqlite3.c   overlapped.Offset = (LONG)(offset & 0xffffffff);
offset           35764 ext/sqlite3/libsqlite/sqlite3.c   overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
offset           35798 ext/sqlite3/libsqlite/sqlite3.c   sqlite3_int64 offset            /* Offset into the file to begin writing at */
offset           35811 ext/sqlite3/libsqlite/sqlite3.c            pFile->h, pBuf, amt, offset, pFile->locktype));
offset           35816 ext/sqlite3/libsqlite/sqlite3.c   if( offset<pFile->mmapSize ){
offset           35817 ext/sqlite3/libsqlite/sqlite3.c     if( offset+amt <= pFile->mmapSize ){
offset           35818 ext/sqlite3/libsqlite/sqlite3.c       memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, amt);
offset           35823 ext/sqlite3/libsqlite/sqlite3.c       int nCopy = (int)(pFile->mmapSize - offset);
offset           35824 ext/sqlite3/libsqlite/sqlite3.c       memcpy(&((u8 *)(pFile->pMapRegion))[offset], pBuf, nCopy);
offset           35827 ext/sqlite3/libsqlite/sqlite3.c       offset += nCopy;
offset           35833 ext/sqlite3/libsqlite/sqlite3.c   rc = winSeekFile(pFile, offset);
offset           35848 ext/sqlite3/libsqlite/sqlite3.c     overlapped.Offset = (LONG)(offset & 0xffffffff);
offset           35849 ext/sqlite3/libsqlite/sqlite3.c     overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
offset           35867 ext/sqlite3/libsqlite/sqlite3.c       offset += nWrite;
offset           35868 ext/sqlite3/libsqlite/sqlite3.c       overlapped.Offset = (LONG)(offset & 0xffffffff);
offset           35869 ext/sqlite3/libsqlite/sqlite3.c       overlapped.OffsetHigh = (LONG)((offset>>32) & 0x7fffffff);
offset           42685 ext/sqlite3/libsqlite/sqlite3.c static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){
offset           42687 ext/sqlite3/libsqlite/sqlite3.c   int rc = sqlite3OsRead(fd, ac, sizeof(ac), offset);
offset           42704 ext/sqlite3/libsqlite/sqlite3.c static int write32bits(sqlite3_file *fd, i64 offset, u32 val){
offset           42707 ext/sqlite3/libsqlite/sqlite3.c   return sqlite3OsWrite(fd, ac, 4, offset);
offset           42924 ext/sqlite3/libsqlite/sqlite3.c   i64 offset = 0;
offset           42927 ext/sqlite3/libsqlite/sqlite3.c     offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager);
offset           42929 ext/sqlite3/libsqlite/sqlite3.c   assert( offset%JOURNAL_HDR_SZ(pPager)==0 );
offset           42930 ext/sqlite3/libsqlite/sqlite3.c   assert( offset>=c );
offset           42931 ext/sqlite3/libsqlite/sqlite3.c   assert( (offset-c)<JOURNAL_HDR_SZ(pPager) );
offset           42932 ext/sqlite3/libsqlite/sqlite3.c   return offset;
offset           44988 ext/sqlite3/libsqlite/sqlite3.c     i64 offset = (i64)pSavepoint->iSubRec*(4+pPager->pageSize);
offset           44994 ext/sqlite3/libsqlite/sqlite3.c       assert( offset==(i64)ii*(4+pPager->pageSize) );
offset           44995 ext/sqlite3/libsqlite/sqlite3.c       rc = pager_playback_one_page(pPager, &offset, pDone, 0, 1);
offset           45888 ext/sqlite3/libsqlite/sqlite3.c       i64 offset = (pgno-1)*(i64)pPager->pageSize;   /* Offset to write */
offset           45898 ext/sqlite3/libsqlite/sqlite3.c       rc = sqlite3OsWrite(pPager->fd, pData, pPager->pageSize, offset);
offset           45981 ext/sqlite3/libsqlite/sqlite3.c       i64 offset = (i64)pPager->nSubRec*(4+pPager->pageSize);
offset           45986 ext/sqlite3/libsqlite/sqlite3.c       rc = write32bits(pPager->sjfd, offset, pPg->pgno);
offset           45988 ext/sqlite3/libsqlite/sqlite3.c         rc = sqlite3OsWrite(pPager->sjfd, pData2, pPager->pageSize, offset+4);
offset           53916 ext/sqlite3/libsqlite/sqlite3.c   int offset;       /* Offset in pointer map page */
offset           53936 ext/sqlite3/libsqlite/sqlite3.c   offset = PTRMAP_PTROFFSET(iPtrmap, key);
offset           53937 ext/sqlite3/libsqlite/sqlite3.c   if( offset<0 ){
offset           53941 ext/sqlite3/libsqlite/sqlite3.c   assert( offset <= (int)pBt->usableSize-5 );
offset           53944 ext/sqlite3/libsqlite/sqlite3.c   if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){
offset           53948 ext/sqlite3/libsqlite/sqlite3.c       pPtrmap[offset] = eType;
offset           53949 ext/sqlite3/libsqlite/sqlite3.c       put4byte(&pPtrmap[offset+1], parent);
offset           53968 ext/sqlite3/libsqlite/sqlite3.c   int offset;        /* Offset of entry in pointer map */
offset           53980 ext/sqlite3/libsqlite/sqlite3.c   offset = PTRMAP_PTROFFSET(iPtrmap, key);
offset           53981 ext/sqlite3/libsqlite/sqlite3.c   if( offset<0 ){
offset           53985 ext/sqlite3/libsqlite/sqlite3.c   assert( offset <= (int)pBt->usableSize-5 );
offset           53987 ext/sqlite3/libsqlite/sqlite3.c   *pEType = pPtrmap[offset];
offset           53988 ext/sqlite3/libsqlite/sqlite3.c   if( pPgno ) *pPgno = get4byte(&pPtrmap[offset+1]);
offset           57243 ext/sqlite3/libsqlite/sqlite3.c   u32 offset,          /* Begin reading this far into payload */
offset           57262 ext/sqlite3/libsqlite/sqlite3.c   assert( eOp!=2 || offset==0 );    /* Always start from beginning for eOp==2 */
offset           57267 ext/sqlite3/libsqlite/sqlite3.c   bEnd = offset+amt==pCur->info.nPayload;
offset           57269 ext/sqlite3/libsqlite/sqlite3.c   assert( offset+amt <= pCur->info.nPayload );
offset           57277 ext/sqlite3/libsqlite/sqlite3.c   if( offset<pCur->info.nLocal ){
offset           57279 ext/sqlite3/libsqlite/sqlite3.c     if( a+offset>pCur->info.nLocal ){
offset           57280 ext/sqlite3/libsqlite/sqlite3.c       a = pCur->info.nLocal - offset;
offset           57282 ext/sqlite3/libsqlite/sqlite3.c     rc = copyPayload(&aPayload[offset], pBuf, a, (eOp & 0x01), pPage->pDbPage);
offset           57283 ext/sqlite3/libsqlite/sqlite3.c     offset = 0;
offset           57287 ext/sqlite3/libsqlite/sqlite3.c     offset -= pCur->info.nLocal;
offset           57329 ext/sqlite3/libsqlite/sqlite3.c      && pCur->aOverflow[offset/ovflSize]
offset           57331 ext/sqlite3/libsqlite/sqlite3.c       iIdx = (offset/ovflSize);
offset           57333 ext/sqlite3/libsqlite/sqlite3.c       offset = (offset%ovflSize);
offset           57344 ext/sqlite3/libsqlite/sqlite3.c       if( offset>=ovflSize ){
offset           57362 ext/sqlite3/libsqlite/sqlite3.c         offset -= ovflSize;
offset           57371 ext/sqlite3/libsqlite/sqlite3.c         if( a + offset > ovflSize ){
offset           57372 ext/sqlite3/libsqlite/sqlite3.c           a = ovflSize - offset;
offset           57391 ext/sqlite3/libsqlite/sqlite3.c          && offset==0                                          /* (2) */
offset           57416 ext/sqlite3/libsqlite/sqlite3.c             rc = copyPayload(&aPayload[offset+4], pBuf, a, (eOp&0x01), pDbPage);
offset           57418 ext/sqlite3/libsqlite/sqlite3.c             offset = 0;
offset           57445 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeKey(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){
offset           57450 ext/sqlite3/libsqlite/sqlite3.c   return accessPayload(pCur, offset, amt, (unsigned char*)pBuf, 0);
offset           57462 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3BtreeData(BtCursor *pCur, u32 offset, u32 amt, void *pBuf){
offset           57477 ext/sqlite3/libsqlite/sqlite3.c     rc = accessPayload(pCur, offset, amt, pBuf, 0);
offset           62180 ext/sqlite3/libsqlite/sqlite3.c SQLITE_PRIVATE int sqlite3BtreePutData(BtCursor *pCsr, u32 offset, u32 amt, void *z){
offset           62222 ext/sqlite3/libsqlite/sqlite3.c   return accessPayload(pCsr, offset, amt, (unsigned char *)z, 1);
offset           64038 ext/sqlite3/libsqlite/sqlite3.c   u32 offset,       /* Offset from the start of data to return bytes from. */
offset           64060 ext/sqlite3/libsqlite/sqlite3.c   if( offset+amt<=available ){
offset           64061 ext/sqlite3/libsqlite/sqlite3.c     pMem->z = &zData[offset];
offset           64068 ext/sqlite3/libsqlite/sqlite3.c         rc = sqlite3BtreeKey(pCur, offset, amt, pMem->z);
offset           64070 ext/sqlite3/libsqlite/sqlite3.c         rc = sqlite3BtreeData(pCur, offset, amt, pMem->z);
offset           66825 ext/sqlite3/libsqlite/sqlite3.c     i64 offset = 0;
offset           66884 ext/sqlite3/libsqlite/sqlite3.c         rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
offset           66885 ext/sqlite3/libsqlite/sqlite3.c         offset += sqlite3Strlen30(zFile)+1;
offset           73142 ext/sqlite3/libsqlite/sqlite3.c   u32 offset;        /* Offset into the data */
offset           73210 ext/sqlite3/libsqlite/sqlite3.c     pC->iHdrOffset = getVarint32(pC->aRow, offset);
offset           73212 ext/sqlite3/libsqlite/sqlite3.c     aOffset[0] = offset;
offset           73223 ext/sqlite3/libsqlite/sqlite3.c     if( offset > 98307 || offset > pC->payloadSize ){
offset           73228 ext/sqlite3/libsqlite/sqlite3.c     if( avail<offset ){
offset           73269 ext/sqlite3/libsqlite/sqlite3.c       offset = aOffset[i];
offset           73282 ext/sqlite3/libsqlite/sqlite3.c         offset += szField;
offset           73283 ext/sqlite3/libsqlite/sqlite3.c         if( offset<szField ){  /* True if offset overflows */
offset           73288 ext/sqlite3/libsqlite/sqlite3.c         aOffset[i] = offset;
offset           73305 ext/sqlite3/libsqlite/sqlite3.c       if( (zHdr>=zEndHdr && (zHdr>zEndHdr || offset!=pC->payloadSize))
offset           73306 ext/sqlite3/libsqlite/sqlite3.c        || (offset > pC->payloadSize)
offset           115385 ext/sqlite3/libsqlite/sqlite3.c static void callFinaliser(sqlite3 *db, int offset){
offset           115393 ext/sqlite3/libsqlite/sqlite3.c         x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset);
offset            747 ext/sqlite3/libsqlite/sqlite3.h   int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
offset           1105 ext/sqlite3/sqlite3.c static int php_sqlite3_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset           1111 ext/sqlite3/sqlite3.c 			if (offset < 0) {
offset           1112 ext/sqlite3/sqlite3.c 				if (sqlite3_stream->position < (size_t)(-offset)) {
offset           1117 ext/sqlite3/sqlite3.c 					sqlite3_stream->position = sqlite3_stream->position + offset;
offset           1123 ext/sqlite3/sqlite3.c 				if (sqlite3_stream->position + (size_t)(offset) > sqlite3_stream->size) {
offset           1128 ext/sqlite3/sqlite3.c 					sqlite3_stream->position = sqlite3_stream->position + offset;
offset           1135 ext/sqlite3/sqlite3.c 			if (sqlite3_stream->size < (size_t)(offset)) {
offset           1140 ext/sqlite3/sqlite3.c 				sqlite3_stream->position = offset;
offset           1146 ext/sqlite3/sqlite3.c 			if (offset > 0) {
offset           1150 ext/sqlite3/sqlite3.c 			} else if (sqlite3_stream->size < (size_t)(-offset)) {
offset           1155 ext/sqlite3/sqlite3.c 				sqlite3_stream->position = sqlite3_stream->size + offset;
offset           2219 ext/sqlite3/sqlite3.c 	sqlite3_object_handlers.offset = XtOffsetOf(php_sqlite3_db_object, zo);
offset           2227 ext/sqlite3/sqlite3.c 	sqlite3_stmt_object_handlers.offset = XtOffsetOf(php_sqlite3_stmt, zo);
offset           2235 ext/sqlite3/sqlite3.c 	sqlite3_result_object_handlers.offset = XtOffsetOf(php_sqlite3_result, zo);
offset           2395 ext/standard/array.c static void php_splice(HashTable *in_hash, int offset, int length, HashTable *replace, HashTable *removed) /* {{{ */
offset           2409 ext/standard/array.c 	if (offset > num_in) {
offset           2410 ext/standard/array.c 		offset = num_in;
offset           2411 ext/standard/array.c 	} else if (offset < 0 && (offset = (num_in + offset)) < 0) {
offset           2412 ext/standard/array.c 		offset = 0;
offset           2417 ext/standard/array.c 		length = num_in - offset + length;
offset           2418 ext/standard/array.c 	} else if (((unsigned)offset + (unsigned)length) > (unsigned)num_in) {
offset           2419 ext/standard/array.c 		length = num_in - offset;
offset           2426 ext/standard/array.c 	for (pos = 0, idx = 0; pos < offset && idx < in_hash->nNumUsed; idx++) {
offset           2449 ext/standard/array.c 		for ( ; pos < offset + length && idx < in_hash->nNumUsed; idx++) {
offset           2472 ext/standard/array.c 		for ( ; pos2 < offset + length && idx < in_hash->nNumUsed; idx++) {
offset           2824 ext/standard/array.c 	zend_long offset,
offset           2828 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/l|lz/", &array, &offset, &length, &repl_array) == FAILURE) {
offset           2849 ext/standard/array.c 		if (offset > num_in) {
offset           2850 ext/standard/array.c 			offset = num_in;
offset           2851 ext/standard/array.c 		} else if (offset < 0 && (offset = (num_in + offset)) < 0) {
offset           2852 ext/standard/array.c 			offset = 0;
offset           2857 ext/standard/array.c 			size = num_in - offset + length;
offset           2858 ext/standard/array.c 		} else if (((zend_ulong) offset + (zend_ulong) length) > (uint32_t) num_in) {
offset           2859 ext/standard/array.c 			size = num_in - offset;
offset           2868 ext/standard/array.c 	php_splice(Z_ARRVAL_P(array), (int)offset, (int)length, repl_array ? Z_ARRVAL_P(repl_array) : NULL, rem_hash);
offset           2879 ext/standard/array.c 	zend_long	 offset,		/* Offset to get elements from */
offset           2888 ext/standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "al|zb", &input, &offset, &z_length, &preserve_keys) == FAILURE) {
offset           2894 ext/standard/array.c 		Z_PARAM_LONG(offset)
offset           2912 ext/standard/array.c 	if (offset > num_in) {
offset           2915 ext/standard/array.c 	} else if (offset < 0 && (offset = (num_in + offset)) < 0) {
offset           2916 ext/standard/array.c 		offset = 0;
offset           2921 ext/standard/array.c 		length = num_in - offset + length;
offset           2922 ext/standard/array.c 	} else if (((zend_ulong) offset + (zend_ulong) length) > (unsigned) num_in) {
offset           2923 ext/standard/array.c 		length = num_in - offset;
offset           2941 ext/standard/array.c 				if (pos <= offset) {
offset           2944 ext/standard/array.c 				if (pos > offset + length) {
offset           2954 ext/standard/array.c 			if (pos <= offset) {
offset           2957 ext/standard/array.c 			if (pos > offset + length) {
offset            382 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset            389 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           1040 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           1130 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           1991 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           2242 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           2248 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           2254 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           2260 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           2422 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset           2473 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, offset)
offset            521 ext/standard/file.c 	zend_long offset = -1;
offset            528 ext/standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) {
offset            546 ext/standard/file.c 	if (offset > 0 && php_stream_seek(stream, offset, SEEK_SET) < 0) {
offset            547 ext/standard/file.c 		php_error_docref(NULL, E_WARNING, "Failed to seek to position " ZEND_LONG_FMT " in the stream", offset);
offset           1302 ext/standard/file.c 	zend_long offset, whence = SEEK_SET;
offset           1306 ext/standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl|l", &res, &offset, &whence) == FAILURE) {
offset           1312 ext/standard/file.c 		Z_PARAM_LONG(offset)
offset           1320 ext/standard/file.c 	RETURN_LONG(php_stream_seek(stream, offset, (int) whence));
offset           1780 ext/standard/filters.c 	zend_off_t offset;
offset           1797 ext/standard/filters.c 	if (data->offset == ~0) {
offset           1798 ext/standard/filters.c 		data->offset = php_stream_tell(stream);
offset           1809 ext/standard/filters.c 		php_stream_seek(stream, data->offset + data->consumed, SEEK_SET);
offset           1847 ext/standard/filters.c 	data->offset = ~0;
offset            126 ext/standard/flock_compat.c     OVERLAPPED offset =
offset            135 ext/standard/flock_compat.c     UnlockFileEx(hdl, 0, low, high, &offset);
offset            140 ext/standard/flock_compat.c                            0, low, high, &offset))
offset            145 ext/standard/flock_compat.c                            0, low, high, &offset))
offset             72 ext/standard/microtime.c 		timelib_time_offset *offset;
offset             74 ext/standard/microtime.c 		offset = timelib_get_time_zone_info(tp.tv_sec, get_timezone_info());
offset             80 ext/standard/microtime.c 		add_assoc_long(return_value, "minuteswest", -offset->offset / SEC_IN_MIN);
offset             81 ext/standard/microtime.c 		add_assoc_long(return_value, "dsttime", offset->is_dst);
offset             83 ext/standard/microtime.c 		timelib_time_offset_dtor(offset);
offset            121 ext/standard/php_fopen_wrapper.c static int php_stream_input_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) /* {{{ */
offset            126 ext/standard/php_fopen_wrapper.c 		int sought = php_stream_seek(input->body, offset, whence);
offset           1956 ext/standard/string.c 	zend_long  offset = 0;
offset           1959 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sz|l", &haystack, &needle, &offset) == FAILURE) {
offset           1967 ext/standard/string.c 		Z_PARAM_LONG(offset)
offset           1971 ext/standard/string.c 	if (offset < 0 || (size_t)offset > ZSTR_LEN(haystack)) {
offset           1982 ext/standard/string.c 		found = (char*)php_memnstr(ZSTR_VAL(haystack) + offset,
offset           1992 ext/standard/string.c 		found = (char*)php_memnstr(ZSTR_VAL(haystack) + offset,
offset           2012 ext/standard/string.c 	zend_long offset = 0;
offset           2017 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sz|l", &haystack, &needle, &offset) == FAILURE) {
offset           2021 ext/standard/string.c 	if (offset < 0 || (size_t)offset > ZSTR_LEN(haystack)) {
offset           2037 ext/standard/string.c 		found = (char*)php_memnstr(ZSTR_VAL(haystack_dup) + offset,
offset           2046 ext/standard/string.c 		found = (char*)php_memnstr(ZSTR_VAL(haystack_dup) + offset,
offset           2074 ext/standard/string.c 	zend_long offset = 0;
offset           2079 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sz|l", &haystack, &zneedle, &offset) == FAILURE) {
offset           2087 ext/standard/string.c 		Z_PARAM_LONG(offset)
offset           2107 ext/standard/string.c 	if (offset >= 0) {
offset           2108 ext/standard/string.c 		if ((size_t)offset > ZSTR_LEN(haystack)) {
offset           2112 ext/standard/string.c 		p = ZSTR_VAL(haystack) + (size_t)offset;
offset           2115 ext/standard/string.c 		if (offset < -INT_MAX || (size_t)(-offset) > ZSTR_LEN(haystack)) {
offset           2120 ext/standard/string.c 		if (-offset < needle_len) {
offset           2123 ext/standard/string.c 			e = ZSTR_VAL(haystack) + ZSTR_LEN(haystack) + offset + needle_len;
offset           2142 ext/standard/string.c 	zend_long offset = 0;
offset           2149 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sz|l", &haystack, &zneedle, &offset) == FAILURE) {
offset           2173 ext/standard/string.c 		if (offset >= 0) {
offset           2174 ext/standard/string.c 			if ((size_t)offset > ZSTR_LEN(haystack)) {
offset           2179 ext/standard/string.c 			p = ZSTR_VAL(haystack) + (size_t)offset;
offset           2183 ext/standard/string.c 			if (offset < -INT_MAX || (size_t)(-offset) > ZSTR_LEN(haystack)) {
offset           2188 ext/standard/string.c 			e = ZSTR_VAL(haystack) + ZSTR_LEN(haystack) + (size_t)offset;
offset           2195 ext/standard/string.c 				RETURN_LONG(e - p + (offset > 0 ? offset : 0));
offset           2204 ext/standard/string.c 	if (offset >= 0) {
offset           2205 ext/standard/string.c 		if ((size_t)offset > ZSTR_LEN(haystack)) {
offset           2211 ext/standard/string.c 		p = ZSTR_VAL(haystack_dup) + offset;
offset           2214 ext/standard/string.c 		if (offset < -INT_MAX || (size_t)(-offset) > ZSTR_LEN(haystack)) {
offset           2221 ext/standard/string.c 		if (-offset < ZSTR_LEN(needle)) {
offset           2224 ext/standard/string.c 			e = ZSTR_VAL(haystack_dup) + ZSTR_LEN(haystack) + offset + ZSTR_LEN(needle);
offset           3878 ext/standard/string.c 	size_t offset;
offset           3908 ext/standard/string.c 	offset = source - (char *)ZSTR_VAL(str);
offset           3909 ext/standard/string.c 	new_str = zend_string_safe_alloc(2, ZSTR_LEN(str) - offset, offset, 0);
offset           3910 ext/standard/string.c 	memcpy(ZSTR_VAL(new_str), ZSTR_VAL(str), offset);
offset           3911 ext/standard/string.c 	target = ZSTR_VAL(new_str) + offset;
offset           5273 ext/standard/string.c 	zend_long offset = 0, length = 0;
offset           5279 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|ll", &haystack, &haystack_len, &needle, &needle_len, &offset, &length) == FAILURE) {
offset           5291 ext/standard/string.c 	if (offset < 0) {
offset           5296 ext/standard/string.c 	if ((size_t)offset > haystack_len) {
offset           5297 ext/standard/string.c 		php_error_docref(NULL, E_WARNING, "Offset value " ZEND_LONG_FMT " exceeds string length", offset);
offset           5300 ext/standard/string.c 	p += offset;
offset           5308 ext/standard/string.c 		if (length > (haystack_len - offset)) {
offset           5703 ext/standard/string.c 	zend_long offset, len=0;
offset           5707 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "SSl|lb", &s1, &s2, &offset, &len, &cs) == FAILURE) {
offset           5720 ext/standard/string.c 	if (offset < 0) {
offset           5721 ext/standard/string.c 		offset = ZSTR_LEN(s1) + offset;
offset           5722 ext/standard/string.c 		offset = (offset < 0) ? 0 : offset;
offset           5725 ext/standard/string.c 	if ((size_t)offset >= ZSTR_LEN(s1)) {
offset           5730 ext/standard/string.c 	cmp_len = (size_t) (len ? len : MAX(ZSTR_LEN(s2), (ZSTR_LEN(s1) - offset)));
offset           5733 ext/standard/string.c 		RETURN_LONG(zend_binary_strncmp(ZSTR_VAL(s1) + offset, (ZSTR_LEN(s1) - offset), ZSTR_VAL(s2), ZSTR_LEN(s2), cmp_len));
offset           5735 ext/standard/string.c 		RETURN_LONG(zend_binary_strncasecmp_l(ZSTR_VAL(s1) + offset, (ZSTR_LEN(s1) - offset), ZSTR_VAL(s2), ZSTR_LEN(s2), cmp_len));
offset           1049 ext/tidy/tidy.c 	tidy_object_handlers_node.offset = tidy_object_handlers_doc.offset = XtOffsetOf(PHPTidyObj, std);
offset           1309 ext/xmlreader/php_xmlreader.c 	xmlreader_object_handlers.offset = XtOffsetOf(xmlreader_object, std);
offset             29 ext/xmlrpc/libxmlrpc/base64.c   b->offset = 0;
offset             35 ext/xmlrpc/libxmlrpc/base64.c   b->offset++;
offset             36 ext/xmlrpc/libxmlrpc/base64.c   if (b->offset == b->length) {
offset             39 ext/xmlrpc/libxmlrpc/base64.c     b->ptr = b->data + b->offset;
offset             47 ext/xmlrpc/libxmlrpc/base64.c   b->offset = 0;
offset             55 ext/xmlrpc/libxmlrpc/base64.c   int offset = 0;
offset             81 ext/xmlrpc/libxmlrpc/base64.c       offset++;
offset             82 ext/xmlrpc/libxmlrpc/base64.c       if (offset > length) {
offset            106 ext/xmlrpc/libxmlrpc/base64.c 	if (!(b->offset % 72)) {
offset            120 ext/xmlrpc/libxmlrpc/base64.c     int offset = 0;
offset            152 ext/xmlrpc/libxmlrpc/base64.c 	      offset++;
offset            153 ext/xmlrpc/libxmlrpc/base64.c 	      if (offset > length) endoffile = 1;
offset             17 ext/xmlrpc/libxmlrpc/base64.h   int offset;
offset            108 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c             XMLRPC_SetValueBase64(xCurrent, buf.data, buf.offset);
offset            231 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c                simplestring_addn(&elem_val->text, buf.data, buf.offset );
offset            367 ext/xmlrpc/libxmlrpc/xml_to_soap.c 				XMLRPC_SetValueBase64(xCurrent, buf.data, buf.offset);
offset            533 ext/xmlrpc/libxmlrpc/xml_to_soap.c 				simplestring_addn(&elem_val->text, buf.data, buf.offset );
offset            143 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          XMLRPC_SetValueBase64(current_val, buf.data, buf.offset);
offset            245 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                simplestring_addn(&elem_val->text, buf.data, buf.offset );
offset           1844 ext/xmlwriter/php_xmlwriter.c 	xmlwriter_object_handlers.offset = XtOffsetOf(ze_xmlwriter_object, std);
offset            134 ext/xsl/php_xsl.c 	xsl_object_handlers.offset = XtOffsetOf(xsl_object, std);
offset            253 ext/zip/lib/zip.h     zip_int64_t offset;
offset             64 ext/zip/lib/zip_buffer.c     return buffer->ok && buffer->offset == buffer->size;
offset             73 ext/zip/lib/zip_buffer.c     if (!buffer->ok || buffer->offset + length < length || buffer->offset + length > buffer->size) {
offset             78 ext/zip/lib/zip_buffer.c     data = buffer->data + buffer->offset;
offset             79 ext/zip/lib/zip_buffer.c     buffer->offset += length;
offset            140 ext/zip/lib/zip_buffer.c     return buffer->ok ? buffer->size - buffer->offset : 0;
offset            166 ext/zip/lib/zip_buffer.c     buffer->offset = 0;
offset            195 ext/zip/lib/zip_buffer.c     return buffer->ok ? buffer->offset : 0;
offset            292 ext/zip/lib/zip_buffer.c _zip_buffer_set_offset(zip_buffer_t *buffer, zip_uint64_t offset)
offset            294 ext/zip/lib/zip_buffer.c     if (offset > buffer->size) {
offset            300 ext/zip/lib/zip_buffer.c     buffer->offset = offset;
offset            308 ext/zip/lib/zip_buffer.c     zip_uint64_t offset = buffer->offset + length;
offset            310 ext/zip/lib/zip_buffer.c     if (offset < buffer->offset) {
offset            314 ext/zip/lib/zip_buffer.c     return _zip_buffer_set_offset(buffer, offset);
offset            158 ext/zip/lib/zip_close.c         de->offset = (zip_uint64_t)off;
offset            182 ext/zip/lib/zip_close.c 	    zip_uint64_t offset;
offset            190 ext/zip/lib/zip_close.c 	    if ((offset=_zip_file_get_offset(za, i, &za->error)) == 0) {
offset            194 ext/zip/lib/zip_close.c 	    if (zip_source_seek(za->src, (zip_int64_t)offset, SEEK_SET) < 0) {
offset             87 ext/zip/lib/zip_dirent.c     cd->size = cd->offset = 0;
offset             97 ext/zip/lib/zip_dirent.c     zip_uint64_t offset, size;
offset            110 ext/zip/lib/zip_dirent.c     offset = (zip_uint64_t)off;
offset            127 ext/zip/lib/zip_dirent.c     size = (zip_uint64_t)off - offset;
offset            129 ext/zip/lib/zip_dirent.c     if (offset > ZIP_UINT32_MAX || survivors > ZIP_UINT16_MAX)
offset            148 ext/zip/lib/zip_dirent.c 	_zip_buffer_put_64(buffer, offset);
offset            151 ext/zip/lib/zip_dirent.c 	_zip_buffer_put_64(buffer, offset+size);
offset            160 ext/zip/lib/zip_dirent.c     _zip_buffer_put_32(buffer, offset >= ZIP_UINT32_MAX ? ZIP_UINT32_MAX : (zip_uint32_t)offset);
offset            259 ext/zip/lib/zip_dirent.c     de->offset = 0;
offset            267 ext/zip/lib/zip_dirent.c 	|| ((flags & ZIP_FL_CENTRAL) && de->offset >= ZIP_UINT32_MAX))
offset            357 ext/zip/lib/zip_dirent.c 	zde->offset = 0;
offset            363 ext/zip/lib/zip_dirent.c 	zde->offset = _zip_buffer_get_32(buffer);
offset            462 ext/zip/lib/zip_dirent.c     if (zde->uncomp_size == ZIP_UINT32_MAX || zde->comp_size == ZIP_UINT32_MAX || zde->offset == ZIP_UINT32_MAX) {
offset            492 ext/zip/lib/zip_dirent.c 	    if (zde->offset == ZIP_UINT32_MAX)
offset            493 ext/zip/lib/zip_dirent.c 		zde->offset = _zip_buffer_get_64(ef_buffer);
offset            521 ext/zip/lib/zip_dirent.c     if (zde->offset > ZIP_INT64_MAX) {
offset            672 ext/zip/lib/zip_dirent.c             if ((flags & ZIP_FL_FORCE_ZIP64) || de->comp_size > ZIP_UINT32_MAX || de->uncomp_size > ZIP_UINT32_MAX || de->offset > ZIP_UINT32_MAX) {
offset            679 ext/zip/lib/zip_dirent.c                 if (de->offset >= ZIP_UINT32_MAX) {
offset            680 ext/zip/lib/zip_dirent.c                     _zip_buffer_put_64(ef_buffer, de->offset);
offset            753 ext/zip/lib/zip_dirent.c 	if (de->offset < ZIP_UINT32_MAX)
offset            754 ext/zip/lib/zip_dirent.c 	    _zip_buffer_put_32(buffer, (zip_uint32_t)de->offset);
offset            379 ext/zip/lib/zip_extra_field.c     if (e->orig->offset + 26 > ZIP_INT64_MAX) {
offset            384 ext/zip/lib/zip_extra_field.c     if (zip_source_seek(za->src, (zip_int64_t)(e->orig->offset + 26), SEEK_SET) < 0) {
offset             53 ext/zip/lib/zip_file_get_offset.c     zip_uint64_t offset;
offset             56 ext/zip/lib/zip_file_get_offset.c     offset = za->entry[idx].orig->offset;
offset             58 ext/zip/lib/zip_file_get_offset.c     if (zip_source_seek(za->src, (zip_int64_t)offset, SEEK_SET) < 0) {
offset             67 ext/zip/lib/zip_file_get_offset.c     if (offset+(zip_uint32_t)size > ZIP_INT64_MAX) {
offset             72 ext/zip/lib/zip_file_get_offset.c     return offset + (zip_uint32_t)size;
offset            311 ext/zip/lib/zip_open.c     if (cd->offset + cd->size > buf_offset + eocd_offset) {
offset            338 ext/zip/lib/zip_open.c     if (cd->offset >= buf_offset) {
offset            341 ext/zip/lib/zip_open.c         _zip_buffer_set_offset(buffer, cd->offset - buf_offset);
offset            357 ext/zip/lib/zip_open.c         if (zip_source_seek(za->src, (zip_int64_t)cd->offset, SEEK_SET) < 0) {
offset            364 ext/zip/lib/zip_open.c 	if (zip_source_tell(za->src) != (zip_int64_t)cd->offset) {
offset            398 ext/zip/lib/zip_open.c             zip_int64_t offset = zip_source_tell(za->src);
offset            400 ext/zip/lib/zip_open.c             if (offset < 0) {
offset            406 ext/zip/lib/zip_open.c             ok = ((zip_uint64_t)offset == cd->offset + cd->size);
offset            437 ext/zip/lib/zip_open.c 	max = cd->entry[0].orig->offset;
offset            438 ext/zip/lib/zip_open.c 	min = cd->entry[0].orig->offset;
offset            444 ext/zip/lib/zip_open.c 	if (cd->entry[i].orig->offset < min)
offset            445 ext/zip/lib/zip_open.c 	    min = cd->entry[i].orig->offset;
offset            446 ext/zip/lib/zip_open.c 	if (min > (zip_uint64_t)cd->offset) {
offset            451 ext/zip/lib/zip_open.c 	j = cd->entry[i].orig->offset + cd->entry[i].orig->comp_size
offset            455 ext/zip/lib/zip_open.c 	if (max > (zip_uint64_t)cd->offset) {
offset            460 ext/zip/lib/zip_open.c         if (zip_source_seek(za->src, (zip_int64_t)cd->entry[i].orig->offset, SEEK_SET) < 0) {
offset            670 ext/zip/lib/zip_open.c     zip_uint64_t i, nentry, size, offset, eocd_offset;
offset            697 ext/zip/lib/zip_open.c     offset = _zip_buffer_get_32(buffer);
offset            699 ext/zip/lib/zip_open.c     if (offset+size < offset) {
offset            704 ext/zip/lib/zip_open.c     if (offset+size > buf_offset + eocd_offset) {
offset            710 ext/zip/lib/zip_open.c     if ((flags & ZIP_CHECKCONS) && offset+size != buf_offset + eocd_offset) {
offset            719 ext/zip/lib/zip_open.c     cd->offset = offset;
offset            729 ext/zip/lib/zip_open.c     zip_uint64_t offset;
offset            822 ext/zip/lib/zip_open.c     offset = _zip_buffer_get_64(buffer);
offset            836 ext/zip/lib/zip_open.c     if (offset > ZIP_INT64_MAX || offset+size < offset) {
offset            840 ext/zip/lib/zip_open.c     if ((flags & ZIP_CHECKCONS) && offset+size != eocd_offset) {
offset            850 ext/zip/lib/zip_open.c     cd->offset = offset;
offset             50 ext/zip/lib/zip_source_buffer.c     zip_uint64_t offset;		/* current offset */
offset            152 ext/zip/lib/zip_source_buffer.c 	    ctx->in->offset = 0;
offset            212 ext/zip/lib/zip_source_buffer.c             if (ctx->in->offset > ZIP_INT64_MAX) {
offset            216 ext/zip/lib/zip_source_buffer.c 	    return (zip_int64_t)ctx->in->offset;
offset            220 ext/zip/lib/zip_source_buffer.c             if (ctx->out->offset > ZIP_INT64_MAX) {
offset            224 ext/zip/lib/zip_source_buffer.c 	    return (zip_int64_t)ctx->out->offset;
offset            269 ext/zip/lib/zip_source_buffer.c     buffer->offset = 0;
offset            333 ext/zip/lib/zip_source_buffer.c     length = ZIP_MIN(length, buffer->size - buffer->offset);
offset            342 ext/zip/lib/zip_source_buffer.c     i = buffer->offset / buffer->fragment_size;
offset            343 ext/zip/lib/zip_source_buffer.c     fragment_offset = buffer->offset % buffer->fragment_size;
offset            355 ext/zip/lib/zip_source_buffer.c     buffer->offset += n;
offset            363 ext/zip/lib/zip_source_buffer.c     zip_int64_t new_offset = zip_source_seek_compute_offset(buffer->offset, buffer->size, data, len, error);
offset            369 ext/zip/lib/zip_source_buffer.c     buffer->offset = (zip_uint64_t)new_offset;
offset            380 ext/zip/lib/zip_source_buffer.c     if (buffer->offset + length + buffer->fragment_size - 1 < length) {
offset            386 ext/zip/lib/zip_source_buffer.c     if (buffer->offset + length > buffer->nfragments * buffer->fragment_size) {
offset            387 ext/zip/lib/zip_source_buffer.c 	zip_uint64_t needed_fragments = (buffer->offset + length + buffer->fragment_size - 1) / buffer->fragment_size;
offset            416 ext/zip/lib/zip_source_buffer.c     i = buffer->offset / buffer->fragment_size;
offset            417 ext/zip/lib/zip_source_buffer.c     fragment_offset = buffer->offset % buffer->fragment_size;
offset            429 ext/zip/lib/zip_source_buffer.c     buffer->offset += n;
offset            430 ext/zip/lib/zip_source_buffer.c     if (buffer->offset > buffer->size) {
offset            431 ext/zip/lib/zip_source_buffer.c 	buffer->size = buffer->offset;
offset            185 ext/zip/lib/zip_source_crc.c             if (zip_source_seek(src, args->offset, args->whence) < 0 || (new_position = zip_source_tell(src)) < 0) {
offset             86 ext/zip/lib/zip_source_filep.c static int _zip_fseek_u(FILE *f, zip_uint64_t offset, int whence, zip_error_t *error);
offset             87 ext/zip/lib/zip_source_filep.c static int _zip_fseek(FILE *f, zip_int64_t offset, int whence, zip_error_t *error);
offset            348 ext/zip/lib/zip_source_filep.c                     new_current = args->offset;
offset            353 ext/zip/lib/zip_source_filep.c                         if (_zip_fseek(ctx->f, args->offset, SEEK_END, &ctx->error) < 0) {
offset            363 ext/zip/lib/zip_source_filep.c                         new_current = (zip_int64_t)ctx->end + args->offset;
offset            367 ext/zip/lib/zip_source_filep.c                     new_current = (zip_int64_t)ctx->current + args->offset;
offset            398 ext/zip/lib/zip_source_filep.c             if (_zip_fseek(ctx->fout, args->offset, args->whence, &ctx->error) < 0) {
offset            481 ext/zip/lib/zip_source_filep.c _zip_fseek_u(FILE *f, zip_uint64_t offset, int whence, zip_error_t *error)
offset            483 ext/zip/lib/zip_source_filep.c     if (offset > ZIP_INT64_MAX) {
offset            487 ext/zip/lib/zip_source_filep.c     return _zip_fseek(f, (zip_int64_t)offset, whence, error);
offset            492 ext/zip/lib/zip_source_filep.c _zip_fseek(FILE *f, zip_int64_t offset, int whence, zip_error_t *error)
offset            494 ext/zip/lib/zip_source_filep.c     if (offset > ZIP_FSEEK_MAX || offset < ZIP_FSEEK_MIN) {
offset            498 ext/zip/lib/zip_source_filep.c     if (fseeko(f, (off_t)offset, whence) < 0) {
offset             39 ext/zip/lib/zip_source_seek.c zip_source_seek(zip_source_t *src, zip_int64_t offset, int whence)
offset             51 ext/zip/lib/zip_source_seek.c     args.offset = offset;
offset             59 ext/zip/lib/zip_source_seek.c zip_source_seek_compute_offset(zip_uint64_t offset, zip_uint64_t length, void *data, zip_uint64_t data_length, zip_error_t *error)
offset             70 ext/zip/lib/zip_source_seek.c             new_offset = (zip_int64_t)offset + args->offset;
offset             74 ext/zip/lib/zip_source_seek.c             new_offset = (zip_int64_t)length + args->offset;
offset             78 ext/zip/lib/zip_source_seek.c             new_offset = args->offset;
offset             39 ext/zip/lib/zip_source_seek_write.c zip_source_seek_write(zip_source_t *src, zip_int64_t offset, int whence)
offset             48 ext/zip/lib/zip_source_seek_write.c     args.offset = offset;
offset             45 ext/zip/lib/zip_source_win32handle.c static int _zip_seek_win32_u(void *h, zip_uint64_t offset, int whence, zip_error_t *error);
offset             46 ext/zip/lib/zip_source_win32handle.c static int _zip_seek_win32(void *h, zip_int64_t offset, int whence, zip_error_t *error);
offset            267 ext/zip/lib/zip_source_win32handle.c 	    new_current = args->offset;
offset            275 ext/zip/lib/zip_source_win32handle.c 		if (_zip_seek_win32(ctx->h, args->offset, SEEK_END, &ctx->error) < 0) {
offset            287 ext/zip/lib/zip_source_win32handle.c 		new_current = (zip_int64_t)ctx->end + args->offset;
offset            291 ext/zip/lib/zip_source_win32handle.c 	    new_current = (zip_int64_t)ctx->current + args->offset;
offset            322 ext/zip/lib/zip_source_win32handle.c 	if (_zip_seek_win32(ctx->hout, args->offset, args->whence, &ctx->error) < 0) {
offset            379 ext/zip/lib/zip_source_win32handle.c 	LARGE_INTEGER offset;
offset            382 ext/zip/lib/zip_source_win32handle.c 	if (!SetFilePointerEx(ctx->hout, zero, &offset, FILE_CURRENT)) {
offset            387 ext/zip/lib/zip_source_win32handle.c 	return offset.QuadPart;
offset            474 ext/zip/lib/zip_source_win32handle.c _zip_seek_win32_u(HANDLE h, zip_uint64_t offset, int whence, zip_error_t *error)
offset            476 ext/zip/lib/zip_source_win32handle.c     if (offset > ZIP_INT64_MAX) {
offset            480 ext/zip/lib/zip_source_win32handle.c     return _zip_seek_win32(h, (zip_int64_t)offset, whence, error);
offset            485 ext/zip/lib/zip_source_win32handle.c _zip_seek_win32(HANDLE h, zip_int64_t offset, int whence, zip_error_t *error)
offset            505 ext/zip/lib/zip_source_win32handle.c     li.QuadPart = (LONGLONG)offset;
offset             43 ext/zip/lib/zip_source_window.c     zip_uint64_t offset;
offset            149 ext/zip/lib/zip_source_window.c 	    ctx->offset = ctx->start;
offset            153 ext/zip/lib/zip_source_window.c             if (len > ctx->end - ctx->offset)
offset            154 ext/zip/lib/zip_source_window.c                 len = ctx->end - ctx->offset;
offset            160 ext/zip/lib/zip_source_window.c                 if (zip_source_seek(src, (zip_int64_t)ctx->offset, SEEK_SET) < 0) {
offset            171 ext/zip/lib/zip_source_window.c             ctx->offset += (zip_uint64_t)ret;
offset            174 ext/zip/lib/zip_source_window.c                 if (ctx->offset < ctx->end) {
offset            183 ext/zip/lib/zip_source_window.c             zip_int64_t new_offset = zip_source_seek_compute_offset(ctx->offset - ctx->start, ctx->end - ctx->start, data, len, &ctx->error);
offset            189 ext/zip/lib/zip_source_window.c             ctx->offset = (zip_uint64_t)new_offset + ctx->start;
offset            209 ext/zip/lib/zip_source_window.c             return (zip_int64_t)(ctx->offset - ctx->start);
offset             46 ext/zip/lib/zip_source_zip_new.c     zip_uint64_t offset;
offset            104 ext/zip/lib/zip_source_zip_new.c     if ((offset=_zip_file_get_offset(srcza, srcidx, &za->error)) == 0)
offset            120 ext/zip/lib/zip_source_zip_new.c 	if ((src = _zip_source_window_new(srcza->src, offset+start, st2.size, &st2, &za->error)) == NULL) {
offset            125 ext/zip/lib/zip_source_zip_new.c 	if ((src = _zip_source_window_new(srcza->src, offset, st.comp_size, &st, &za->error)) == NULL) {
offset            223 ext/zip/lib/zip_utf-8.c     zip_uint32_t buflen, i, offset;
offset            240 ext/zip/lib/zip_utf-8.c     offset = 0;
offset            242 ext/zip/lib/zip_utf-8.c 	offset += _zip_unicode_to_utf8(_cp437_to_unicode[cp437buf[i]],
offset            243 ext/zip/lib/zip_utf-8.c 				       utf8buf+offset);
offset            358 ext/zip/lib/zipint.h     zip_uint64_t offset;		/* (c)  offset of local header */
offset            369 ext/zip/lib/zipint.h     zip_uint64_t offset;		/* offset of central directory in file */
offset            438 ext/zip/lib/zipint.h     zip_uint64_t offset;
offset            484 ext/zip/lib/zipint.h int _zip_buffer_set_offset(zip_buffer_t *buffer, zip_uint64_t offset);
offset            529 ext/zip/lib/zipint.h int _zip_filerange_crc(zip_source_t *src, zip_uint64_t offset, zip_uint64_t length, uLong *crcp, zip_error_t *error);
offset            546 ext/zip/lib/zipint.h int _zip_read_at_offset(zip_source_t *src, zip_uint64_t offset, unsigned char *b, size_t length, zip_error_t *error);
offset           3012 ext/zip/php_zip.c 	zip_object_handlers.offset = XtOffsetOf(ze_zip_object, zo);
offset           1276 ext/zlib/zlib.c 	ZEND_ARG_INFO(0, offset)
offset             61 ext/zlib/zlib_fopen_wrapper.c static int php_gziop_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset             71 ext/zlib/zlib_fopen_wrapper.c 	*newoffs = gzseek(self->gz_file, offset, whence);
offset            128 main/php_streams.h 	int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
offset            299 main/php_streams.h PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence);
offset            301 main/php_streams.h #define php_stream_seek(stream, offset, whence)	_php_stream_seek((stream), (offset), (whence))
offset            797 main/rfc1867.c 		zend_off_t offset;
offset           1007 main/rfc1867.c 			offset = 0;
offset           1034 main/rfc1867.c 					event_file_data.offset = offset;
offset           1075 main/rfc1867.c 					offset += wlen;
offset             54 main/rfc1867.h 	zend_off_t	offset;
offset            183 main/streams/glob_wrapper.c static int php_glob_stream_rewind(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs) /* {{{ */
offset            134 main/streams/memory.c static int php_stream_memory_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset            141 main/streams/memory.c 			if (offset < 0) {
offset            142 main/streams/memory.c 				if (ms->fpos < (size_t)(-offset)) {
offset            147 main/streams/memory.c 					ms->fpos = ms->fpos + offset;
offset            153 main/streams/memory.c 				if (ms->fpos + (size_t)(offset) > ms->fsize) {
offset            158 main/streams/memory.c 					ms->fpos = ms->fpos + offset;
offset            165 main/streams/memory.c 			if (ms->fsize < (size_t)(offset)) {
offset            170 main/streams/memory.c 				ms->fpos = offset;
offset            176 main/streams/memory.c 			if (offset > 0) {
offset            180 main/streams/memory.c 			} else if (ms->fsize < (size_t)(-offset)) {
offset            185 main/streams/memory.c 				ms->fpos = ms->fsize + offset;
offset            453 main/streams/memory.c static int php_stream_temp_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset            464 main/streams/memory.c 	ret = php_stream_seek(ts->innerstream, offset, whence);
offset             25 main/streams/mmap.c PHPAPI char *_php_stream_mmap_range(php_stream *stream, size_t offset, size_t length, php_stream_mmap_access_t mode, size_t *mapped_len)
offset             29 main/streams/mmap.c 	range.offset = offset;
offset             51 main/streams/php_stream_mmap.h 	size_t offset;
offset             70 main/streams/php_stream_mmap.h PHPAPI char *_php_stream_mmap_range(php_stream *stream, size_t offset, size_t length, php_stream_mmap_access_t mode, size_t *mapped_len);
offset             71 main/streams/php_stream_mmap.h #define php_stream_mmap_range(stream, offset, length, mode, mapped_len)	_php_stream_mmap_range((stream), (offset), (length), (mode), (mapped_len))
offset            501 main/streams/plain_wrapper.c static int php_stdiop_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset)
offset            516 main/streams/plain_wrapper.c 		result = zend_lseek(data->fd, offset, whence);
offset            524 main/streams/plain_wrapper.c 		ret = zend_fseek(data->file, offset, whence);
offset            690 main/streams/plain_wrapper.c 						if (range->length == 0 && range->offset > 0 && range->offset < data->sb.st_size) {
offset            691 main/streams/plain_wrapper.c 							range->length = data->sb.st_size - range->offset;
offset            696 main/streams/plain_wrapper.c 						if (range->offset >= data->sb.st_size) {
offset            697 main/streams/plain_wrapper.c 							range->offset = data->sb.st_size;
offset            720 main/streams/plain_wrapper.c 						range->mapped = (char*)mmap(NULL, range->length, prot, flags, fd, range->offset);
offset            782 main/streams/plain_wrapper.c 						if (range->length == 0 && range->offset > 0 && range->offset < size) {
offset            783 main/streams/plain_wrapper.c 							range->length = size - range->offset;
offset            788 main/streams/plain_wrapper.c 						if (range->offset >= size) {
offset            789 main/streams/plain_wrapper.c 							range->offset = size;
offset            794 main/streams/plain_wrapper.c 						if (range->offset != 0) {
offset            800 main/streams/plain_wrapper.c 							loffs = ((DWORD)range->offset / gran) * gran;
offset            801 main/streams/plain_wrapper.c 							delta = (DWORD)range->offset - loffs;
offset            896 main/streams/plain_wrapper.c static int php_plain_files_dirstream_rewind(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset           1207 main/streams/plain_wrapper.c 		int offset = 0;
offset           1218 main/streams/plain_wrapper.c 			offset = p - buf + 1;
offset           1226 main/streams/plain_wrapper.c 			while ( (p = strrchr(buf + offset, DEFAULT_SLASH)) || (offset != 1 && (p = strrchr(buf, DEFAULT_SLASH))) ) {
offset           1266 main/streams/streams.c PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence)
offset           1277 main/streams/streams.c 				if (offset > 0 && offset <= stream->writepos - stream->readpos) {
offset           1278 main/streams/streams.c 					stream->readpos += offset; /* if offset = ..., then readpos = writepos */
offset           1279 main/streams/streams.c 					stream->position += offset;
offset           1285 main/streams/streams.c 				if (offset > stream->position &&
offset           1286 main/streams/streams.c 						offset <= stream->position + stream->writepos - stream->readpos) {
offset           1287 main/streams/streams.c 					stream->readpos += offset - stream->position;
offset           1288 main/streams/streams.c 					stream->position = offset;
offset           1306 main/streams/streams.c 				offset = stream->position + offset;
offset           1310 main/streams/streams.c 		ret = stream->ops->seek(stream, offset, whence, &stream->position);
offset           1327 main/streams/streams.c 	if (whence == SEEK_CUR && offset >= 0) {
offset           1330 main/streams/streams.c 		while(offset > 0) {
offset           1331 main/streams/streams.c 			if ((didread = php_stream_read(stream, tmp, MIN(offset, sizeof(tmp)))) == 0) {
offset           1334 main/streams/streams.c 			offset -= didread;
offset            764 main/streams/userspace.c static int php_userstreamop_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset            776 main/streams/userspace.c 	ZVAL_LONG(&args[0], offset);
offset           1465 main/streams/userspace.c static int php_userstreamop_rewinddir(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffs)
offset             44 netware/start.c 	int		(*readRoutineP)( int conn, void *fileHandle, size_t offset,
offset             59 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset);
offset             61 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset);
offset             63 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset);
offset             64 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_boolean(zval *value, void **config, intptr_t offset);
offset             65 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_string(zval *value, void **config, intptr_t offset);
offset             66 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_log_level(zval *value, void **config, intptr_t offset);
offset             67 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_rlimit_core(zval *value, void **config, intptr_t offset);
offset             68 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_pm(zval *value, void **config, intptr_t offset);
offset             70 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_syslog_facility(zval *value, void **config, intptr_t offset);
offset            209 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_boolean(zval *value, void **config, intptr_t offset) /* {{{ */
offset            219 sapi/fpm/fpm/fpm_conf.c 	* (int *) ((char *) *config + offset) = value_y ? 1 : 0;
offset            224 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_string(zval *value, void **config, intptr_t offset) /* {{{ */
offset            226 sapi/fpm/fpm/fpm_conf.c 	char **config_val = (char **) ((char *) *config + offset);
offset            249 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_integer(zval *value, void **config, intptr_t offset) /* {{{ */
offset            261 sapi/fpm/fpm/fpm_conf.c 	* (int *) ((char *) *config + offset) = atoi(val);
offset            267 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_long(zval *value, void **config, intptr_t offset) /* {{{ */
offset            278 sapi/fpm/fpm/fpm_conf.c 	* (long int *) ((char *) *config + offset) = atol(val);
offset            284 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_time(zval *value, void **config, intptr_t offset) /* {{{ */
offset            319 sapi/fpm/fpm/fpm_conf.c 	* (int *) ((char *) *config + offset) = seconds;
offset            324 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_log_level(zval *value, void **config, intptr_t offset) /* {{{ */
offset            343 sapi/fpm/fpm/fpm_conf.c 	* (int *) ((char *) *config + offset) = log_level;
offset            349 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_syslog_facility(zval *value, void **config, intptr_t offset) /* {{{ */
offset            352 sapi/fpm/fpm/fpm_conf.c 	int *conf = (int *) ((char *) *config + offset);
offset            499 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_rlimit_core(zval *value, void **config, intptr_t offset) /* {{{ */
offset            502 sapi/fpm/fpm/fpm_conf.c 	int *ptr = (int *) ((char *) *config + offset);
offset            528 sapi/fpm/fpm/fpm_conf.c static char *fpm_conf_set_pm(zval *value, void **config, intptr_t offset) /* {{{ */
offset           1383 sapi/fpm/fpm/fpm_conf.c 			ret = parser->parser(value, &config, parser->offset);
offset            105 sapi/fpm/fpm/fpm_conf.h 	intptr_t offset;
offset             85 sapi/fpm/fpm/fpm_trace_mach.c 	size_t offset = ((uintptr_t) (addr) % fpm_pagesize);
offset             86 sapi/fpm/fpm/fpm_trace_mach.c 	vm_offset_t base = (uintptr_t) (addr) - offset;
offset             94 sapi/fpm/fpm/fpm_trace_mach.c 	*data = * (long *) (local_page + offset);
offset            126 sapi/phpdbg/phpdbg_list.c void phpdbg_list_file(zend_string *filename, uint count, int offset, uint highlight) /* {{{ */
offset            144 sapi/phpdbg/phpdbg_list.c 	if (offset < 0) {
offset            145 sapi/phpdbg/phpdbg_list.c 		count += offset;
offset            146 sapi/phpdbg/phpdbg_list.c 		offset = 0;
offset            149 sapi/phpdbg/phpdbg_list.c 	lastline = offset + count;
offset            157 sapi/phpdbg/phpdbg_list.c 	for (line = offset; line < lastline;) {
offset             50 win32/readdir.c 	dp->offset = 0;
offset             75 win32/readdir.c 	if (dp->offset != 0) {
offset             81 win32/readdir.c 	dp->offset++;
offset             86 win32/readdir.c 	dp->dent.d_off = dp->offset;
offset             98 win32/readdir.c 	if (dp->offset != 0) {
offset            105 win32/readdir.c 	dp->offset++;
offset            110 win32/readdir.c 	dp->dent.d_off = dp->offset;
offset            145 win32/readdir.c 	dp->offset = 0;
offset             35 win32/readdir.h 	int offset;					/* offset into directory */