offset            104 com_dotnet/com_handlers.c 				DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, 1, &offset, 0, 0 TSRMLS_CC)) {
offset            109 com_dotnet/com_handlers.c 		convert_to_long(offset);
offset            112 com_dotnet/com_handlers.c 			if (php_com_safearray_get_elem(&obj->v, &v, Z_LVAL_P(offset) TSRMLS_CC)) {
offset            117 com_dotnet/com_handlers.c 			php_com_saproxy_create(object, return_value, offset TSRMLS_CC);
offset            137 com_dotnet/com_handlers.c 		args[0] = offset;
offset            155 com_dotnet/com_handlers.c 			convert_to_long(offset);
offset            156 com_dotnet/com_handlers.c 			indices = Z_LVAL_P(offset);
offset            141 com_dotnet/com_persist.c 	off_t offset;
offset            159 com_dotnet/com_persist.c 	offset = (off_t) dlibMove.QuadPart;
offset            161 com_dotnet/com_persist.c 	ret = php_stream_seek(stm->stream, offset, whence);
offset            115 com_dotnet/com_saproxy.c 		args[i-1] = offset;
offset            129 com_dotnet/com_saproxy.c 			php_com_saproxy_create(object, return_value, offset TSRMLS_CC);
offset            142 com_dotnet/com_saproxy.c 	convert_to_long(offset);
offset            157 com_dotnet/com_saproxy.c 	if (Z_LVAL_P(offset) < lbound || Z_LVAL_P(offset) > ubound) {
offset            179 com_dotnet/com_saproxy.c 		indices[dims-1] = Z_LVAL_P(offset);
offset            205 com_dotnet/com_saproxy.c 		php_com_saproxy_create(object, return_value, offset TSRMLS_CC);
offset            227 com_dotnet/com_saproxy.c 		args[i-1] = offset;
offset            253 com_dotnet/com_saproxy.c 		convert_to_long(offset);
offset            254 com_dotnet/com_saproxy.c 		indices[dims-1] = Z_LVAL_P(offset);
offset            818 date/lib/parse_date.c 		long offset;
offset            823 date/lib/parse_date.c 		offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found);
offset            847 date/lib/parse_date.c 		retval = offset;
offset            135 date/lib/parse_tz.c 		tz->type[i].offset = (buffer[j] * 16777216) + (buffer[j + 1] * 65536) + (buffer[j + 2] * 256) + buffer[j + 3];
offset            163 date/lib/parse_tz.c 			tz->leap_times[i].offset = timelib_conv_int(leap_buffer[i * 2 + 1]);
offset            233 date/lib/parse_tz.c 		(long int) tz->type[0].offset,
offset            243 date/lib/parse_tz.c 			(long int) tz->type[tz->trans_idx[i]].offset,
offset            255 date/lib/parse_tz.c 			tz->leap_times[i].offset);
offset            410 date/lib/parse_tz.c 	int32_t offset = 0, leap_secs = 0;
offset            416 date/lib/parse_tz.c 		offset = to->offset;
offset            421 date/lib/parse_tz.c 		offset = 0;
offset            428 date/lib/parse_tz.c 		leap_secs = -tl->offset;
offset            431 date/lib/parse_tz.c 	tmp->offset = offset;
offset            450 date/lib/parse_tz.c 			retval = gmt_offset->offset;
offset             82 date/lib/timelib_structs.h 	int32_t      offset;
offset             93 date/lib/timelib_structs.h 	int32_t  offset;
offset            146 date/lib/timelib_structs.h 	int32_t      offset;
offset            395 date/lib/tm2unixtime.c 				after = timelib_get_time_zone_info(tz->sse - before->offset, tzi);
offset            399 date/lib/tm2unixtime.c 					((tz->sse - after->offset) >= (after->transistion_time + (before->offset - after->offset))) &&
offset            400 date/lib/tm2unixtime.c 					((tz->sse - after->offset) < after->transistion_time)
offset            403 date/lib/tm2unixtime.c 				if ((before->offset != after->offset) && !in_transistion) {
offset            404 date/lib/tm2unixtime.c 					tmp = -after->offset;
offset            415 date/lib/tm2unixtime.c 					tz->z = gmt_offset->offset;
offset            160 date/lib/unixtime2tm.c 			timelib_unixtime2gmt(tm, tm->sse + gmt_offset->offset);
offset            196 date/lib/unixtime2tm.c 			timelib_unixtime2gmt(tm, ts + gmt_offset->offset);
offset            201 date/lib/unixtime2tm.c 			tm->z = gmt_offset->offset;
offset            223 date/lib/unixtime2tm.c 	t->z = gmt_offset->offset;
offset            950 date/php_date.c 	timelib_time_offset *offset = NULL;
offset            961 date/php_date.c 			offset = timelib_time_offset_ctor();
offset            962 date/php_date.c 			offset->offset = (t->z - (t->dst * 60)) * -60;
offset            963 date/php_date.c 			offset->leap_secs = 0;
offset            964 date/php_date.c 			offset->is_dst = t->dst;
offset            965 date/php_date.c 			offset->abbr = strdup(t->tz_abbr);
offset            967 date/php_date.c 			offset = timelib_time_offset_ctor();
offset            968 date/php_date.c 			offset->offset = (t->z) * -60;
offset            969 date/php_date.c 			offset->leap_secs = 0;
offset            970 date/php_date.c 			offset->is_dst = 0;
offset            971 date/php_date.c 			offset->abbr = malloc(9); /* GMT�xxxx\0 */
offset            972 date/php_date.c 			snprintf(offset->abbr, 9, "GMT%c%02d%02d", 
offset            973 date/php_date.c 			                          localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset            974 date/php_date.c 			                          localtime ? abs(offset->offset / 3600) : 0,
offset            975 date/php_date.c 			                          localtime ? abs((offset->offset % 3600) / 60) : 0 );
offset            977 date/php_date.c 			offset = timelib_get_time_zone_info(t->sse, t->tz_info);
offset           1035 date/php_date.c 			case 'I': length = slprintf(buffer, 32, "%d", localtime ? offset->is_dst : 0); break;
offset           1038 date/php_date.c 											localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1039 date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
offset           1041 date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
offset           1044 date/php_date.c 			case 'T': length = slprintf(buffer, 32, "%s", localtime ? offset->abbr : "GMT"); break;
offset           1053 date/php_date.c 								  length = slprintf(buffer, 32, "%s", offset->abbr);
offset           1057 date/php_date.c 												((offset->offset < 0) ? '-' : '+'),
offset           1058 date/php_date.c 												abs(offset->offset / 3600),
offset           1059 date/php_date.c 												abs((offset->offset % 3600) / 60)
offset           1065 date/php_date.c 			case 'Z': length = slprintf(buffer, 32, "%d", localtime ? offset->offset : 0); break;
offset           1071 date/php_date.c 											localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1072 date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
offset           1073 date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
offset           1080 date/php_date.c 											localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1081 date/php_date.c 											localtime ? abs(offset->offset / 3600) : 0,
offset           1082 date/php_date.c 											localtime ? abs((offset->offset % 3600) / 60) : 0
offset           1097 date/php_date.c 		timelib_time_offset_dtor(offset);
offset           1155 date/php_date.c 	timelib_time_offset *offset = NULL;
offset           1172 date/php_date.c 			offset = timelib_time_offset_ctor();
offset           1173 date/php_date.c 			offset->offset = (t->z - (t->dst * 60)) * -60;
offset           1174 date/php_date.c 			offset->leap_secs = 0;
offset           1175 date/php_date.c 			offset->is_dst = t->dst;
offset           1176 date/php_date.c 			offset->abbr = strdup(t->tz_abbr);
offset           1178 date/php_date.c 			offset = timelib_time_offset_ctor();
offset           1179 date/php_date.c 			offset->offset = (t->z - (t->dst * 60)) * -60;
offset           1180 date/php_date.c 			offset->leap_secs = 0;
offset           1181 date/php_date.c 			offset->is_dst = t->dst;
offset           1182 date/php_date.c 			offset->abbr = malloc(9); /* GMT�xxxx\0 */
offset           1183 date/php_date.c 			snprintf(offset->abbr, 9, "GMT%c%02d%02d", 
offset           1184 date/php_date.c 			                          !localtime ? ((offset->offset < 0) ? '-' : '+') : '+',
offset           1185 date/php_date.c 			                          !localtime ? abs(offset->offset / 3600) : 0,
offset           1186 date/php_date.c 			                          !localtime ? abs((offset->offset % 3600) / 60) : 0 );
offset           1188 date/php_date.c 			offset = timelib_get_time_zone_info(t->sse, t->tz_info);
offset           1229 date/php_date.c 		case 'I': retval = (int) (!localtime ? offset->is_dst : 0); break;
offset           1230 date/php_date.c 		case 'Z': retval = (int) (!localtime ? offset->offset : 0); break;
offset           1236 date/php_date.c 		timelib_time_offset_dtor(offset);
offset           1527 date/php_date.c 	timelib_time_offset *offset = NULL;
offset           1566 date/php_date.c 		offset = timelib_get_time_zone_info(timestamp, tzi);
offset           1568 date/php_date.c 		ta.tm_isdst = offset->is_dst;
offset           1570 date/php_date.c 		ta.tm_gmtoff = offset->offset;
offset           1573 date/php_date.c 		ta.tm_zone = offset->abbr;
offset           1588 date/php_date.c 		timelib_time_offset_dtor(offset);
offset           2961 date/php_date.c 	timelib_time_offset *offset;
offset           2971 date/php_date.c 				offset = timelib_get_time_zone_info(dateobj->time->sse, dateobj->time->tz_info);
offset           2972 date/php_date.c 				RETVAL_LONG(offset->offset);
offset           2973 date/php_date.c 				timelib_time_offset_dtor(offset);
offset           3277 date/php_date.c 	timelib_time_offset *offset;
offset           3289 date/php_date.c 			offset = timelib_get_time_zone_info(dateobj->time->sse, tzobj->tzi.tz);
offset           3290 date/php_date.c 			RETVAL_LONG(offset->offset);
offset           3291 date/php_date.c 			timelib_time_offset_dtor(offset);
offset           3327 date/php_date.c 		add_assoc_long(element, "offset", tzobj->tzi.tz->type[0].offset); \
offset           3337 date/php_date.c 		add_assoc_long(element, "offset", tzobj->tzi.tz->type[tzobj->tzi.tz->trans_idx[i]].offset); \
offset            229 dba/dba_cdb.c  	php_stream_seek(fp, offset, whence);
offset            234 dba/dba_cdb.c  	return lseek(fd, offset, whence);
offset            179 dom/characterdata.c 	long        offset, count;
offset            183 dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILURE) {
offset            196 dom/characterdata.c 	if (offset < 0 || count < 0 || offset > length) {
offset            202 dom/characterdata.c 	if ((offset + count) > length) {
offset            203 dom/characterdata.c 		count = length - offset;
offset            206 dom/characterdata.c 	substring = xmlUTF8Strsub(cur, offset, count);
offset            262 dom/characterdata.c 	long        offset;
offset            266 dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ols", &id, dom_characterdata_class_entry, &offset, &arg, &arg_len) == FAILURE) {
offset            279 dom/characterdata.c 	if (offset < 0 || offset > length) {
offset            285 dom/characterdata.c 	first = xmlUTF8Strndup(cur, offset);
offset            286 dom/characterdata.c 	second = xmlUTF8Strsub(cur, offset, length - offset);
offset            309 dom/characterdata.c 	long        offset, count;
offset            313 dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oll", &id, dom_characterdata_class_entry, &offset, &count) == FAILURE) {
offset            326 dom/characterdata.c 	if (offset < 0 || count < 0 || offset > length) {
offset            332 dom/characterdata.c 	if (offset > 0) {
offset            333 dom/characterdata.c 		substring = xmlUTF8Strsub(cur, 0, offset);
offset            338 dom/characterdata.c 	if ((offset + count) > length) {
offset            339 dom/characterdata.c 		count = length - offset;
offset            342 dom/characterdata.c 	second = xmlUTF8Strsub(cur, offset + count, length - offset);
offset            365 dom/characterdata.c 	long        offset, count;
offset            369 dom/characterdata.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Olls", &id, dom_characterdata_class_entry, &offset, &count, &arg, &arg_len) == FAILURE) {
offset            382 dom/characterdata.c 	if (offset < 0 || count < 0 || offset > length) {
offset            388 dom/characterdata.c 	if (offset > 0) {
offset            389 dom/characterdata.c 		substring = xmlUTF8Strsub(cur, 0, offset);
offset            394 dom/characterdata.c 	if ((offset + count) > length) {
offset            395 dom/characterdata.c 		count = length - offset;
offset            398 dom/characterdata.c 	if (offset < length) {
offset            399 dom/characterdata.c 		second = xmlUTF8Strsub(cur, offset + count, length - offset);
offset            153 dom/text.c     	long        offset;
offset            158 dom/text.c     	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_text_class_entry, &offset) == FAILURE) {
offset            173 dom/text.c     	if (offset > length || offset < 0) {
offset            178 dom/text.c     	first = xmlUTF8Strndup(cur, offset);
offset            179 dom/text.c     	second = xmlUTF8Strsub(cur, offset, length - offset);
offset            102 ereg/regex/debug.c 	register sopno offset = 2;
offset            103 ereg/regex/debug.c #	define	GAP()	{	if (offset % 5 == 0) { \
offset            113 ereg/regex/debug.c 				offset++; \
offset            992 exif/exif.c    	int              offset;
offset           1055 exif/exif.c    				p += slprintf(buf+p, sizeof(buf)-p, "\n%08X: ", i+offset);
offset           1506 exif/exif.c    	size_t          offset;
offset           2456 exif/exif.c    	if (!ImageInfo->read_thumbnail || !ImageInfo->Thumbnail.offset || !ImageInfo->Thumbnail.size) {
offset           2548 exif/exif.c    	 || ImageInfo->Thumbnail.offset <= 0
offset           2554 exif/exif.c    	if ((ImageInfo->Thumbnail.offset + ImageInfo->Thumbnail.size) > length) {
offset           2558 exif/exif.c    	ImageInfo->Thumbnail.data = estrndup(offset + ImageInfo->Thumbnail.offset, ImageInfo->Thumbnail.size);
offset           2743 exif/exif.c    	dir_start = value_ptr + maker_note->offset;
offset           2746 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           2773 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           2930 exif/exif.c    					ImageInfo->Thumbnail.offset = exif_convert_any_to_int(value_ptr, format, ImageInfo->motorola_intel TSRMLS_CC);
offset           3170 exif/exif.c    			&&  ImageInfo->Thumbnail.offset
offset           3682 exif/exif.c    							&&  ImageInfo->Thumbnail.offset
offset           3686 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           3690 exif/exif.c    									php_stream_seek(ImageInfo->infile, ImageInfo->Thumbnail.offset, SEEK_SET);
offset           3720 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           3722 exif/exif.c    					if (!ImageInfo->Thumbnail.data && ImageInfo->Thumbnail.offset && ImageInfo->Thumbnail.size && ImageInfo->read_thumbnail) {
offset           3724 exif/exif.c    						php_stream_seek(ImageInfo->infile, ImageInfo->Thumbnail.offset, SEEK_SET);
offset           1232 fileinfo/libmagic/apprentice.c 	m->offset = (uint32_t)strtoul(l, &t, 0);
offset           2507 fileinfo/libmagic/apprentice.c 	m->offset = swap4((uint32_t)m->offset);
offset            270 fileinfo/libmagic/file.h 	uint32_t offset;	/* offset to magic number */
offset            367 fileinfo/libmagic/file.h 	uint32_t offset;
offset            379 fileinfo/libmagic/file.h 		size_t offset;		/* starting offset in source: XXX - should this be off_t? */
offset            298 fileinfo/libmagic/readelf.c 	size_t offset;
offset            344 fileinfo/libmagic/readelf.c 		offset = 0;
offset            346 fileinfo/libmagic/readelf.c 			if (offset >= (size_t)bufsize)
offset            348 fileinfo/libmagic/readelf.c 			offset = donote(ms, nbuf, offset, (size_t)bufsize,
offset            350 fileinfo/libmagic/readelf.c 			if (offset == 0)
offset            371 fileinfo/libmagic/readelf.c 	(void)memcpy(xnh_addr, &nbuf[offset], xnh_sizeof);
offset            372 fileinfo/libmagic/readelf.c 	offset += xnh_sizeof;
offset            380 fileinfo/libmagic/readelf.c 		return (offset >= size) ? offset : size;
offset            386 fileinfo/libmagic/readelf.c 	    return offset;
offset            392 fileinfo/libmagic/readelf.c 	    return offset;
offset            396 fileinfo/libmagic/readelf.c 	noff = offset;
offset            397 fileinfo/libmagic/readelf.c 	doff = ELF_ALIGN(offset + namesz);
offset            399 fileinfo/libmagic/readelf.c 	if (offset + namesz > size) {
offset            406 fileinfo/libmagic/readelf.c 	offset = ELF_ALIGN(doff + descsz);
offset            411 fileinfo/libmagic/readelf.c 		return (offset >= size) ? offset : size;
offset            789 fileinfo/libmagic/readelf.c 	return offset;
offset           1040 fileinfo/libmagic/readelf.c 	size_t offset, align;
offset           1103 fileinfo/libmagic/readelf.c 			offset = 0;
offset           1105 fileinfo/libmagic/readelf.c 				if (offset >= (size_t)bufsize)
offset           1107 fileinfo/libmagic/readelf.c 				offset = donote(ms, nbuf, offset,
offset           1110 fileinfo/libmagic/readelf.c 				if (offset == 0)
offset            144 fileinfo/libmagic/softmagic.c 		ms->offset = m->offset;
offset            218 fileinfo/libmagic/softmagic.c 			ms->offset = m->offset;
offset            220 fileinfo/libmagic/softmagic.c 				ms->offset += ms->c.li[cont_level - 1].off;
offset            368 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(char);
offset            390 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(short);
offset            411 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(int32_t);
offset            420 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(int64_t);
offset            430 fileinfo/libmagic/softmagic.c 			t = ms->offset + m->vallen;
offset            437 fileinfo/libmagic/softmagic.c 			t = ms->offset + strlen(p->s);
offset            449 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(time_t);
offset            458 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(time_t);
offset            467 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint64_t);
offset            476 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(uint64_t);
offset            496 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(float);
offset            516 fileinfo/libmagic/softmagic.c 		t = ms->offset + sizeof(double);
offset            532 fileinfo/libmagic/softmagic.c 			t = ms->search.offset;
offset            534 fileinfo/libmagic/softmagic.c 			t = ms->search.offset + ms->search.rm_len;
offset            542 fileinfo/libmagic/softmagic.c 			t = ms->search.offset;
offset            544 fileinfo/libmagic/softmagic.c 			t = ms->search.offset + m->vallen;
offset            550 fileinfo/libmagic/softmagic.c 		t = ms->offset;
offset            554 fileinfo/libmagic/softmagic.c 		t = ms->offset;
offset            569 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(char)));
offset            574 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(short)));
offset            580 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(int32_t)));
offset            585 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(int64_t)));
offset            592 fileinfo/libmagic/softmagic.c 			return ms->offset + m->vallen;
offset            599 fileinfo/libmagic/softmagic.c 			t = CAST(uint32_t, (ms->offset + strlen(p->s)));
offset            609 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(time_t)));
offset            615 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(time_t)));
offset            620 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(uint64_t)));
offset            625 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(uint64_t)));
offset            630 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(float)));
offset            635 fileinfo/libmagic/softmagic.c 		return CAST(int32_t, (ms->offset + sizeof(double)));
offset            639 fileinfo/libmagic/softmagic.c 			return CAST(int32_t, ms->search.offset);
offset            641 fileinfo/libmagic/softmagic.c 			return CAST(int32_t, (ms->search.offset +
offset            646 fileinfo/libmagic/softmagic.c 			return CAST(int32_t, ms->search.offset);
offset            648 fileinfo/libmagic/softmagic.c 			return CAST(int32_t, (ms->search.offset + m->vallen));
offset            651 fileinfo/libmagic/softmagic.c 		return ms->offset;
offset            654 fileinfo/libmagic/softmagic.c 		return ms->offset;
offset            882 fileinfo/libmagic/softmagic.c 	(void) fprintf(stderr, "mget @%d: ", offset);
offset            899 fileinfo/libmagic/softmagic.c 			ms->search.s = RCAST(const char *, s) + offset;
offset            900 fileinfo/libmagic/softmagic.c 			ms->search.s_len = nbytes - offset;
offset            901 fileinfo/libmagic/softmagic.c 			ms->search.offset = offset;
offset            917 fileinfo/libmagic/softmagic.c 			buf = RCAST(const char *, s) + offset;
offset            935 fileinfo/libmagic/softmagic.c 			ms->search.offset = offset;
offset            941 fileinfo/libmagic/softmagic.c 			const unsigned char *src = s + offset;
offset            952 fileinfo/libmagic/softmagic.c 				    offset);
offset            977 fileinfo/libmagic/softmagic.c 	if (offset >= nbytes) {
offset            981 fileinfo/libmagic/softmagic.c 	if (nbytes - offset < sizeof(*p))
offset            982 fileinfo/libmagic/softmagic.c 		nbytes = nbytes - offset;
offset            986 fileinfo/libmagic/softmagic.c 	(void)memcpy(p, s + offset, nbytes);
offset           1002 fileinfo/libmagic/softmagic.c 	uint32_t offset = ms->offset;
offset           1006 fileinfo/libmagic/softmagic.c 	if (mcopy(ms, p, m->type, m->flag & INDIR, s, offset, nbytes, count) == -1)
offset           1010 fileinfo/libmagic/softmagic.c 		mdebug(offset, (char *)(void *)p, sizeof(union VALUETYPE));
offset           1017 fileinfo/libmagic/softmagic.c 			    ((const void *)(s + offset + off));
offset           1052 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 1))
offset           1057 fileinfo/libmagic/softmagic.c 					offset = p->b & off;
offset           1060 fileinfo/libmagic/softmagic.c 					offset = p->b | off;
offset           1063 fileinfo/libmagic/softmagic.c 					offset = p->b ^ off;
offset           1066 fileinfo/libmagic/softmagic.c 					offset = p->b + off;
offset           1069 fileinfo/libmagic/softmagic.c 					offset = p->b - off;
offset           1072 fileinfo/libmagic/softmagic.c 					offset = p->b * off;
offset           1075 fileinfo/libmagic/softmagic.c 					offset = p->b / off;
offset           1078 fileinfo/libmagic/softmagic.c 					offset = p->b % off;
offset           1082 fileinfo/libmagic/softmagic.c 				offset = p->b;
offset           1084 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1087 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 2))
offset           1092 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1097 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1102 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1107 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1112 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1117 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1122 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1127 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[0]<<8)|
offset           1133 fileinfo/libmagic/softmagic.c 				offset = (short)((p->hs[0]<<8)|
offset           1136 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1139 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 2))
offset           1144 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1149 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1154 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1159 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1164 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1169 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1174 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1179 fileinfo/libmagic/softmagic.c 					offset = (short)((p->hs[1]<<8)|
offset           1185 fileinfo/libmagic/softmagic.c 				offset = (short)((p->hs[1]<<8)|
offset           1188 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1191 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 2))
offset           1196 fileinfo/libmagic/softmagic.c 					offset = p->h & off;
offset           1199 fileinfo/libmagic/softmagic.c 					offset = p->h | off;
offset           1202 fileinfo/libmagic/softmagic.c 					offset = p->h ^ off;
offset           1205 fileinfo/libmagic/softmagic.c 					offset = p->h + off;
offset           1208 fileinfo/libmagic/softmagic.c 					offset = p->h - off;
offset           1211 fileinfo/libmagic/softmagic.c 					offset = p->h * off;
offset           1214 fileinfo/libmagic/softmagic.c 					offset = p->h / off;
offset           1217 fileinfo/libmagic/softmagic.c 					offset = p->h % off;
offset           1222 fileinfo/libmagic/softmagic.c 				offset = p->h;
offset           1224 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1228 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 4))
offset           1233 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1240 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1247 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1254 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1261 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1268 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1275 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1282 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[0]<<24)|
offset           1290 fileinfo/libmagic/softmagic.c 				offset = (int32_t)((p->hl[0]<<24)|
offset           1295 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1299 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 4))
offset           1304 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1311 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1318 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1325 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1332 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1339 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1346 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1353 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[3]<<24)|
offset           1361 fileinfo/libmagic/softmagic.c 				offset = (int32_t)((p->hl[3]<<24)|
offset           1366 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1369 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 4))
offset           1374 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1381 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1388 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1395 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1402 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1409 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1416 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1423 fileinfo/libmagic/softmagic.c 					offset = (int32_t)((p->hl[1]<<24)|
offset           1431 fileinfo/libmagic/softmagic.c 				offset = (int32_t)((p->hl[1]<<24)|
offset           1436 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1439 fileinfo/libmagic/softmagic.c 			if (nbytes < (offset + 4))
offset           1444 fileinfo/libmagic/softmagic.c 					offset = p->l & off;
offset           1447 fileinfo/libmagic/softmagic.c 					offset = p->l | off;
offset           1450 fileinfo/libmagic/softmagic.c 					offset = p->l ^ off;
offset           1453 fileinfo/libmagic/softmagic.c 					offset = p->l + off;
offset           1456 fileinfo/libmagic/softmagic.c 					offset = p->l - off;
offset           1459 fileinfo/libmagic/softmagic.c 					offset = p->l * off;
offset           1462 fileinfo/libmagic/softmagic.c 					offset = p->l / off;
offset           1465 fileinfo/libmagic/softmagic.c 					offset = p->l % off;
offset           1469 fileinfo/libmagic/softmagic.c 				offset = p->l;
offset           1471 fileinfo/libmagic/softmagic.c 				offset = ~offset;
offset           1478 fileinfo/libmagic/softmagic.c 			offset = ((((offset >>  0) & 0x7f) <<  0) |
offset           1479 fileinfo/libmagic/softmagic.c 				 (((offset >>  8) & 0x7f) <<  7) |
offset           1480 fileinfo/libmagic/softmagic.c 				 (((offset >> 16) & 0x7f) << 14) |
offset           1481 fileinfo/libmagic/softmagic.c 				 (((offset >> 24) & 0x7f) << 21)) + 10;
offset           1488 fileinfo/libmagic/softmagic.c 			offset += ms->c.li[cont_level-1].off;
offset           1490 fileinfo/libmagic/softmagic.c 		if (mcopy(ms, p, m->type, 0, s, offset, nbytes, count) == -1)
offset           1492 fileinfo/libmagic/softmagic.c 		ms->offset = offset;
offset           1495 fileinfo/libmagic/softmagic.c 			mdebug(offset, (char *)(void *)p,
offset           1503 fileinfo/libmagic/softmagic.c 		if (nbytes < (offset + 1)) /* should alway be true */
offset           1510 fileinfo/libmagic/softmagic.c 		if (nbytes < (offset + 2))
offset           1529 fileinfo/libmagic/softmagic.c 		if (nbytes < (offset + 4))
offset           1536 fileinfo/libmagic/softmagic.c 		if (nbytes < (offset + 8))
offset           1543 fileinfo/libmagic/softmagic.c 		if (nbytes < (offset + m->vallen))
offset           1548 fileinfo/libmagic/softmagic.c 		if (nbytes < offset)
offset           1556 fileinfo/libmagic/softmagic.c 		if (nbytes < offset)
offset           1558 fileinfo/libmagic/softmagic.c 		return file_softmagic(ms, s + offset, nbytes - offset,
offset           1830 fileinfo/libmagic/softmagic.c 				ms->search.offset += idx;
offset           1910 fileinfo/libmagic/softmagic.c 						zval **match, **offset;
offset           1946 fileinfo/libmagic/softmagic.c 							if (zend_hash_get_current_data_ex(inner_ht, (void**)&offset, &inner_pos) != FAILURE) { 
offset           1948 fileinfo/libmagic/softmagic.c 								offsetcopy = **offset;
offset           1965 fileinfo/libmagic/softmagic.c 						ms->search.offset += (size_t)Z_LVAL_P(pattern_offset); /* this is where the match starts as size_t */
offset           3612 gd/gd.c        	if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
offset           3616 gd/gd.c        	fline = (c - f->offset) * f->h * f->w;
offset           5017 gd/gd.c        	double div, offset;
offset           5021 gd/gd.c        	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "radd", &SIM, &hash_matrix, &div, &offset) == FAILURE) {
offset           5052 gd/gd.c        	res = gdImageConvolution(im_src, matrix, div, offset);
offset           1548 gd/libgd/gd.c  	if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
offset           1551 gd/libgd/gd.c  	fline = (c - f->offset) * f->h * f->w;
offset           1574 gd/libgd/gd.c  	if ((c < f->offset) || (c >= (f->offset + f->nchars))) {
offset           1577 gd/libgd/gd.c  	fline = (c - f->offset) * f->h * f->w;
offset            199 gd/libgd/gd.h  	int offset;
offset            668 gd/libgd/gd.h  int gdImageConvolution(gdImagePtr src, float ft[3][3], float filter_div, float offset);
offset            272 gd/libgd/gd_filter.c 			new_r = (new_r/filter_div)+offset;
offset            273 gd/libgd/gd_filter.c 			new_g = (new_g/filter_div)+offset;
offset            274 gd/libgd/gd_filter.c 			new_b = (new_b/filter_div)+offset;
offset             44 gd/libgd/gd_gd2.c 	int offset;
offset            147 gd/libgd/gd_gd2.c 			if (gdGetInt(&cidx[i].offset, in) != 1) {
offset            204 gd/libgd/gd_gd2.c 	if (gdTell(in) != offset) {
offset            205 gd/libgd/gd_gd2.c 		GD2_DBG(php_gd_error("Positioning in file to %d", offset));
offset            206 gd/libgd/gd_gd2.c 		gdSeek(in, offset);
offset            208 gd/libgd/gd_gd2.c 		GD2_DBG(php_gd_error("Already Positioned in file to %d", offset));
offset            311 gd/libgd/gd_gd2.c 				if (!_gd2ReadChunk(chunkIdx[chunkNum].offset, compBuf, chunkIdx[chunkNum].size, (char *) chunkBuf, &chunkLen, in)) {
offset            547 gd/libgd/gd_gd2.c 				if (!_gd2ReadChunk (chunkIdx[chunkNum].offset, compBuf, chunkIdx[chunkNum].size, (char *)chunkBuf, &chunkLen, in)) {
offset            770 gd/libgd/gd_gd2.c 					chunkIdx[chunkNum].offset = gdTell(out);
offset            772 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 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 gd/libgd/gd_gd2.c 			gdPutInt(chunkIdx[x].offset, out);
offset             67 gd/libgd/gd_gif_out.c 	int offset;
offset            512 gd/libgd/gd_gif_out.c     ctx->offset = 0;
offset            749 iconv/iconv.c  		if ((len += (total_len - offset)) < 0) {
offset            754 iconv/iconv.c  	if (offset < 0) {
offset            755 iconv/iconv.c  		if ((offset += total_len) < 0) {
offset            765 iconv/iconv.c  	if (offset >= total_len) {
offset            769 iconv/iconv.c  	if ((offset + len) > total_len ) {
offset            771 iconv/iconv.c  		len = total_len - offset;
offset            810 iconv/iconv.c  		if (cnt >= (unsigned int)offset) {
offset            959 iconv/iconv.c  		if (offset >= 0) {
offset            960 iconv/iconv.c  			if (cnt >= (unsigned int)offset) {
offset           1997 iconv/iconv.c  	long offset, length = 0;
offset           2004 iconv/iconv.c  		&str, &str_len, &offset, &length,
offset           2018 iconv/iconv.c  	err = _php_iconv_substr(&retval, str, str_len, offset, length, charset);
offset           2039 iconv/iconv.c  	long offset = 0;
offset           2047 iconv/iconv.c  		&offset, &charset, &charset_len) == FAILURE) {
offset           2056 iconv/iconv.c  	if (offset < 0) {
offset           2066 iconv/iconv.c  	                        offset, charset);
offset           3898 imap/php_imap.c 	int offset, bufferLen = 0;
offset           3924 imap/php_imap.c 		offset = 0;
offset           3935 imap/php_imap.c 				offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
offset           3940 imap/php_imap.c 		if (offset>0) {
offset           3941 imap/php_imap.c 			bufferTo[offset-1] = 0;
offset           3953 imap/php_imap.c 		offset = 0;
offset           3964 imap/php_imap.c 				offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
offset           3969 imap/php_imap.c 		if (offset>0) {
offset           3970 imap/php_imap.c 			bufferCc[offset-1] = 0;
offset           3979 imap/php_imap.c 		offset = 0;
offset           3990 imap/php_imap.c 				offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host);
offset           3995 imap/php_imap.c 		if (offset>0) {
offset           3996 imap/php_imap.c 			bufferBcc[offset-1] = 0;
offset           4219 imap/php_imap.c 	long charset_token, encoding_token, end_token, end, offset=0, i;
offset           4233 imap/php_imap.c 	while (offset < end) {	/* Reached end of the string? */
offset           4234 imap/php_imap.c 		if ((charset_token = (long)php_memnstr(&string[offset], "=?", 2, string + end))) {	/* Is there anything encoded in the string? */
offset           4236 imap/php_imap.c 			if (offset != charset_token) {	/* Is there anything before the encoded data? */
offset           4238 imap/php_imap.c 				memcpy(text, &string[offset], charset_token-offset);
offset           4239 imap/php_imap.c 				text[charset_token - offset] = 0x00;
offset           4278 imap/php_imap.c 					offset = end_token+2;
offset           4279 imap/php_imap.c 					for (i = 0; (string[offset + i] == ' ') || (string[offset + i] == 0x0a) || (string[offset + i] == 0x0d) || (string[offset + i] == '\t'); i++);
offset           4280 imap/php_imap.c 					if ((string[offset + i] == '=') && (string[offset + i + 1] == '?') && (offset + i < end)) {
offset           4281 imap/php_imap.c 						offset += i;
offset           4291 imap/php_imap.c 			charset_token = offset;
offset           4303 imap/php_imap.c 		offset = end;	/* We have reached the end of the string. */
offset            115 intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            134 intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            149 intl/grapheme/grapheme_string.c 	found = (unsigned char *)php_memnstr((char *)haystack + offset, (char *)needle, needle_len, (char *)haystack + haystack_len);
offset            163 intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strpos_utf16(haystack, haystack_len, needle, needle_len, offset, &uchar_pos, 0 /* fIgnoreCase */ TSRMLS_CC );
offset            166 intl/grapheme/grapheme_string.c 		RETURN_LONG(ret_pos + offset);
offset            182 intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            202 intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            222 intl/grapheme/grapheme_string.c 		found = (unsigned char*) php_memnstr((char *)haystack_dup + offset, (char *)needle_dup, needle_len, (char *)haystack_dup + haystack_len);
offset            238 intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strpos_utf16(haystack, haystack_len, needle, needle_len, offset, &uchar_pos, 1 /* fIgnoreCase */ TSRMLS_CC );
offset            241 intl/grapheme/grapheme_string.c 		RETURN_LONG(ret_pos + offset);
offset            256 intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            276 intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            291 intl/grapheme/grapheme_string.c 		ret_pos = grapheme_strrpos_ascii(haystack, haystack_len, needle, needle_len, offset);
offset            307 intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strrpos_utf16(haystack, haystack_len, needle, needle_len, offset, 0 /* f_ignore_case */ TSRMLS_CC);
offset            326 intl/grapheme/grapheme_string.c 	int32_t offset = 0;
offset            346 intl/grapheme/grapheme_string.c 	offset = (int32_t) loffset;
offset            367 intl/grapheme/grapheme_string.c 		ret_pos = grapheme_strrpos_ascii(haystack_dup, haystack_len, needle_dup, needle_len, offset);
offset            385 intl/grapheme/grapheme_string.c 	ret_pos = grapheme_strrpos_utf16(haystack, haystack_len, needle, needle_len, offset, 1 /* f_ignore_case */ TSRMLS_CC);
offset            188 intl/grapheme/grapheme_util.c     puhaystack = grapheme_get_haystack_offset(bi, uhaystack, uhaystack_len, offset);
offset            321 intl/grapheme/grapheme_util.c 	puhaystack = grapheme_get_haystack_offset(bi, uhaystack, uhaystack_len, offset);
offset            535 intl/grapheme/grapheme_util.c 	if ( 0 == offset ) {
offset            539 intl/grapheme/grapheme_util.c 	if ( offset < 0 ) {
offset            551 intl/grapheme/grapheme_util.c 	while ( pos != UBRK_DONE && offset != 0 ) {
offset            556 intl/grapheme/grapheme_util.c 			offset += iter_incr;
offset            560 intl/grapheme/grapheme_util.c 	if ( offset != 0 ) {
offset            574 intl/grapheme/grapheme_util.c 	if (offset >= 0) {
offset            575 intl/grapheme/grapheme_util.c 		p = haystack + offset;
offset            579 intl/grapheme/grapheme_util.c 		if (needle_len > -offset) {
offset            582 intl/grapheme/grapheme_util.c 			e = haystack + haystack_len + offset;
offset            590 intl/grapheme/grapheme_util.c 				return (e - p + (offset > 0 ? offset : 0));
offset            599 intl/grapheme/grapheme_util.c 			return (e - p + (offset > 0 ? offset : 0));
offset             57 intl/grapheme/grapheme_util.h #define OUTSIDE_STRING(offset, max_len) ( offset <= INT32_MIN || offset > INT32_MAX || (offset < 0 ? -offset > (long) max_len : offset >= (long) max_len) )
offset            175 intl/resourcebundle/resourcebundle_class.c 	if(Z_TYPE_P(offset) == IS_LONG) {
offset            177 intl/resourcebundle/resourcebundle_class.c 		meindex = Z_LVAL_P(offset);
offset            179 intl/resourcebundle/resourcebundle_class.c 	} else if(Z_TYPE_P(offset) == IS_STRING) {
offset            180 intl/resourcebundle/resourcebundle_class.c 		mekey = Z_STRVAL_P(offset);
offset            181 intl/resourcebundle/resourcebundle_class.c 		mekeylen = Z_STRLEN_P(offset);
offset            223 intl/resourcebundle/resourcebundle_class.c 	if(offset == NULL) {
offset            228 intl/resourcebundle/resourcebundle_class.c 	resourcebundle_array_fetch(object, offset, retval, 1 TSRMLS_CC);
offset            248 intl/resourcebundle/resourcebundle_class.c 	zval *		offset;
offset            251 intl/resourcebundle/resourcebundle_class.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Oz|b",	&object, ResourceBundle_ce_ptr, &offset, &fallback ) == FAILURE) {
offset            257 intl/resourcebundle/resourcebundle_class.c 	resourcebundle_array_fetch(object, offset, return_value, fallback TSRMLS_CC);
offset             72 intl/transliterator/transliterator.c 	if( pe->offset >= 0 ) {
offset             79 intl/transliterator/transliterator.c 		smart_str_append_long( &ret, (long ) pe->offset ); 
offset           1051 mbstring/libmbfl/mbfl/mbfilter.c 		while (--offset >= 0) {
offset           1117 mbstring/libmbfl/mbfl/mbfilter.c 		if (offset < 0) {
offset           1118 mbstring/libmbfl/mbfl/mbfilter.c 			if (-offset > needle_len) {
offset           1119 mbstring/libmbfl/mbfl/mbfilter.c 				offset += needle_len; 
offset           1120 mbstring/libmbfl/mbfl/mbfilter.c 				while (offset < 0) {
offset           1128 mbstring/libmbfl/mbfl/mbfilter.c 						++offset;
offset           1130 mbstring/libmbfl/mbfl/mbfilter.c 						++offset;
offset           1136 mbstring/libmbfl/mbfl/mbfilter.c 			while (--offset >= 0) {
offset             31 mbstring/libmbfl/tests/strcut.c 	int offset, length;
offset             53 mbstring/libmbfl/tests/strcut.c 	offset = strtol(argv[3], NULL, 10);
offset            103 mbstring/libmbfl/tests/strcut.c 		if (mbfl_strcut(&string, &result, offset, length)) {
offset           2226 mbstring/mbstring.c 	long offset;
offset           2237 mbstring/mbstring.c 	offset = 0;
offset           2239 mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|ls", (char **)&haystack.val, &haystack.len, (char **)&needle.val, &needle.len, &offset, &enc_name, &enc_name_len) == FAILURE) {
offset           2251 mbstring/mbstring.c 	if (offset < 0 || offset > mbfl_strlen(&haystack)) {
offset           2260 mbstring/mbstring.c 	n = mbfl_strpos(&haystack, &needle, offset, reverse);
offset           2294 mbstring/mbstring.c 	long offset = 0, str_flg;
offset           2339 mbstring/mbstring.c 				offset   = Z_LVAL_PP(zoffset);
offset           2346 mbstring/mbstring.c 			offset = Z_LVAL_PP(zoffset);
offset           2367 mbstring/mbstring.c 		if ((offset > 0 && offset > haystack_char_len) ||
offset           2368 mbstring/mbstring.c 			(offset < 0 && -offset > haystack_char_len)) {
offset           2374 mbstring/mbstring.c 	n = mbfl_strpos(&haystack, &needle, offset, 1);
offset           2388 mbstring/mbstring.c 	long offset;
offset           2393 mbstring/mbstring.c 	offset = 0;
offset           2395 mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|ls", (char **)&haystack.val, (int *)&haystack.len, (char **)&needle.val, (int *)&needle.len, &offset, &from_encoding, &from_encoding_len) == FAILURE) {
offset           2402 mbstring/mbstring.c 	n = php_mb_stripos(0, (char *)haystack.val, haystack.len, (char *)needle.val, needle.len, offset, from_encoding TSRMLS_CC);
offset           2417 mbstring/mbstring.c 	long offset;
offset           2422 mbstring/mbstring.c 	offset = 0;
offset           2424 mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|ls", (char **)&haystack.val, (int *)&haystack.len, (char **)&needle.val, (int *)&needle.len, &offset, &from_encoding, &from_encoding_len) == FAILURE) {
offset           2428 mbstring/mbstring.c 	n = php_mb_stripos(1, (char *)haystack.val, haystack.len, (char *)needle.val, needle.len, offset, from_encoding TSRMLS_CC);
offset           4704 mbstring/mbstring.c  				if ((offset > 0 && offset > haystack_char_len) ||
offset           4705 mbstring/mbstring.c  					(offset < 0 && -offset > haystack_char_len)) {
offset           4710 mbstring/mbstring.c  				if (offset < 0 || offset > haystack_char_len) {
offset           4717 mbstring/mbstring.c 		n = mbfl_strpos(&haystack, &needle, offset, mode);
offset            170 mbstring/oniguruma/regcomp.c   uslist->us[uslist->num].offset = offset;
offset           1916 mbstring/oniguruma/regcomp.c   int i, offset;
offset           1924 mbstring/oniguruma/regcomp.c     offset = uslist->us[i].offset;
offset           1926 mbstring/oniguruma/regcomp.c     BBUF_WRITE(reg, offset, &addr, SIZE_ABSADDR);
offset            408 mbstring/oniguruma/regexec.c     offset = ((offset) * (state_num)) >> 3;\
offset            409 mbstring/oniguruma/regexec.c     if (size > 0 && offset < size && size < STATE_CHECK_BUFF_MAX_SIZE) {\
offset            414 mbstring/oniguruma/regexec.c       xmemset(((char* )((msa).state_check_buff)+(offset)), 0, \
offset            415 mbstring/oniguruma/regexec.c               (size_t )(size - (offset))); \
offset           3272 mbstring/oniguruma/regexec.c     int offset = at - str;
offset           3273 mbstring/oniguruma/regexec.c     STATE_CHECK_BUFF_INIT(msa, end - str, offset, reg->num_comb_exp_check);
offset           3720 mbstring/oniguruma/regexec.c     int offset = (MIN(start, range) - str);
offset           3721 mbstring/oniguruma/regexec.c     STATE_CHECK_BUFF_INIT(msa, end - str, offset, reg->num_comb_exp_check);
offset            195 mbstring/oniguruma/regparse.h   int offset;
offset            930 mssql/php_mssql.c 	if (dbdata(mssql_ptr->link,offset) == NULL && dbdatlen(mssql_ptr->link,offset) == 0) {
offset            942 mssql/php_mssql.c 			ZVAL_LONG(result, (long) anyintcol(offset));
offset            949 mssql/php_mssql.c 			char *data = charcol(offset);
offset            951 mssql/php_mssql.c 			length=dbdatlen(mssql_ptr->link,offset);
offset            961 mssql/php_mssql.c 			ZVAL_DOUBLE(result, (double) floatcol4(offset));
offset            967 mssql/php_mssql.c 			dbconvert(NULL, column_type, dbdata(mssql_ptr->link,offset), 8, SQLFLT8, (LPBYTE)&res_buf, -1);
offset            972 mssql/php_mssql.c 			ZVAL_DOUBLE(result, (double) floatcol8(offset));
offset            979 mssql/php_mssql.c 			char *data = charcol(offset);
offset            988 mssql/php_mssql.c 			int res_length = dbdatlen(mssql_ptr->link, offset);
offset            993 mssql/php_mssql.c 				ZVAL_STRINGL(result, (char *)dbdata(mssql_ptr->link, offset), res_length, 1);
offset           1002 mssql/php_mssql.c 				int res_length = dbdatlen(mssql_ptr->link,offset);
offset           1027 mssql/php_mssql.c 					res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR,res_buf,-1);
offset           1033 mssql/php_mssql.c 						dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
offset           1036 mssql/php_mssql.c 						dbdatecrack(mssql_ptr->link, &dateinfo, (DBDATETIME *) dbdata(mssql_ptr->link,offset));
offset           1045 mssql/php_mssql.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "column %d has unknown data type (%d)", offset, coltype(offset));
offset           1057 mssql/php_mssql.c 	if (dbdatlen(mssql_ptr->link,offset) == 0) {
offset           1067 mssql/php_mssql.c 		int res_length = dbdatlen(mssql_ptr->link, offset);
offset           1078 mssql/php_mssql.c 		bin = ((DBBINARY *)dbdata(mssql_ptr->link, offset));
offset           1083 mssql/php_mssql.c 	else if  (dbwillconvert(coltype(offset),SQLCHAR)) {
offset           1086 mssql/php_mssql.c 		int res_length = dbdatlen(mssql_ptr->link,offset);
offset           1107 mssql/php_mssql.c 			res_length = dbconvert(NULL,coltype(offset),dbdata(mssql_ptr->link,offset), res_length, SQLCHAR, res_buf, -1);
offset           1113 mssql/php_mssql.c 				dbconvert(NULL, SQLDATETIM4, dbdata(mssql_ptr->link,offset), -1, SQLDATETIME, (LPBYTE) &temp, -1);
offset           1116 mssql/php_mssql.c 				dbdatecrack(mssql_ptr->link, &dateinfo, (DBDATETIME *) dbdata(mssql_ptr->link,offset));
offset           1125 mssql/php_mssql.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "column %d has unknown data type (%d)", offset, coltype(offset));
offset           1610 mssql/php_mssql.c 	long offset;
offset           1613 mssql/php_mssql.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &mssql_result_index, &offset) == FAILURE) {
offset           1619 mssql/php_mssql.c 	if (offset < 0 || offset >= result->num_rows) {
offset           1624 mssql/php_mssql.c 	result->cur_row = offset;
offset           2269 mysql/php_mysql.c 	long offset;
offset           2272 mysql/php_mysql.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result, &offset)) {
offset           2278 mysql/php_mysql.c 	if (offset<0 || offset>=(int)mysql_num_rows(mysql_result)) {
offset           2279 mysql/php_mysql.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Offset %ld is invalid for MySQL result index %ld (or the query data is unbuffered)", offset, Z_LVAL_P(result));
offset           2282 mysql/php_mysql.c 	mysql_data_seek(mysql_result, offset);
offset           2441 mysql/php_mysql.c 	long offset;
offset           2444 mysql/php_mysql.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &result, &offset) == FAILURE) {
offset           2449 mysql/php_mysql.c 	if (offset<0 || offset>=(int)mysql_num_fields(mysql_result)) {
offset           2450 mysql/php_mysql.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Field %ld is invalid for MySQL result index %ld", offset, Z_LVAL_P(result));
offset           2453 mysql/php_mysql.c 	mysql_field_seek(mysql_result, offset);
offset            659 mysqli/mysqli_api.c 	long		offset;
offset            661 mysqli/mysqli_api.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &mysql_result, mysqli_result_class_entry, &offset) == FAILURE) {
offset            672 mysqli/mysqli_api.c 	if (offset < 0 || offset >= mysql_num_rows(result)) {
offset            676 mysqli/mysqli_api.c 	mysql_data_seek(result, offset);
offset           1136 mysqli/mysqli_api.c 	long		offset;
offset           1138 mysqli/mysqli_api.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &mysql_result, mysqli_result_class_entry, &offset) == FAILURE) {
offset           1144 mysqli/mysqli_api.c 	if (offset < 0 || offset >= (long) mysql_num_fields(result)) {
offset           1149 mysqli/mysqli_api.c 	if (!(field = mysql_fetch_field_direct(result,offset))) {
offset           2005 mysqli/mysqli_api.c 	long		offset;
offset           2007 mysqli/mysqli_api.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &mysql_stmt, mysqli_stmt_class_entry, &offset) == FAILURE) {
offset           2010 mysqli/mysqli_api.c 	if (offset < 0) {
offset           2017 mysqli/mysqli_api.c 	mysql_stmt_data_seek(stmt->stmt, offset);
offset            109 mysqlnd/mysqlnd.h #define mysqlnd_result_fetch_field_data(res,offset,ret)	(res)->m.fetch_field_data((res), (offset), (ret) TSRMLS_CC)
offset            433 mysqlnd/mysqlnd_net.c 		memcpy(dest, buffer->data + buffer->offset, count);
offset            434 mysqlnd/mysqlnd_net.c 		buffer->offset += count;
offset            477 mysqlnd/mysqlnd_net.c 	ret->offset = 0;
offset            606 mysqlnd/mysqlnd_ps_codec.c 			unsigned int offset = *p - *buf;
offset            608 mysqlnd/mysqlnd_ps_codec.c 			*buf_len = offset + null_count + 20;
offset            614 mysqlnd/mysqlnd_ps_codec.c 			memcpy(tmp_buf, *buf, offset);
offset            621 mysqlnd/mysqlnd_ps_codec.c 			*p = *buf + offset;
offset            668 mysqlnd/mysqlnd_ps_codec.c 			unsigned int offset = *p - *buf;
offset            670 mysqlnd/mysqlnd_ps_codec.c 			*buf_len = offset + stmt->param_count * 2 + 20;
offset            676 mysqlnd/mysqlnd_ps_codec.c 			memcpy(tmp_buf, *buf, offset);
offset            683 mysqlnd/mysqlnd_ps_codec.c 			*p = *buf + offset;
offset            817 mysqlnd/mysqlnd_ps_codec.c 		unsigned int offset = *p - *buf;
offset            819 mysqlnd/mysqlnd_ps_codec.c 		*buf_len = offset + data_size + 10; /* Allocate + 10 for safety */
offset            825 mysqlnd/mysqlnd_ps_codec.c 		memcpy(tmp_buf, *buf, offset);
offset            836 mysqlnd/mysqlnd_ps_codec.c 		*p = *buf + offset;
offset           1595 mysqlnd/mysqlnd_result.c MYSQLND_METHOD(mysqlnd_res, fetch_field_data)(MYSQLND_RES * result, unsigned int offset, zval *return_value TSRMLS_DC)
offset           1602 mysqlnd/mysqlnd_result.c 	DBG_INF_FMT("offset=%u", offset);
offset           1620 mysqlnd/mysqlnd_result.c 	while (i++ < offset) {
offset            259 mysqlnd/mysqlnd_structs.h 	size_t 		offset;
offset            193 oci8/oci8_interface.c 	long offset = 0;
offset            197 oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &data, &data_len, &offset) == FAILURE) {
offset            202 oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Os|l", &z_descriptor, oci_lob_class_entry_ptr, &data, &data_len, &offset) == FAILURE) {
offset            214 oci8/oci8_interface.c 	if (offset < 0) {
offset            219 oci8/oci8_interface.c 	if (php_oci_lob_write(descriptor, offset, data, data_len, &bytes_written TSRMLS_CC)) {
offset            441 oci8/oci8_interface.c 	long offset, whence = PHP_OCI_SEEK_SET;
offset            445 oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &offset, &whence) == FAILURE) {
offset            450 oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Ol|l", &z_descriptor, oci_lob_class_entry_ptr, &offset, &whence) == FAILURE) {
offset            468 oci8/oci8_interface.c 			descriptor->lob_current_position += offset;
offset            471 oci8/oci8_interface.c 			if ((descriptor->lob_size + offset) >= 0) {
offset            472 oci8/oci8_interface.c 				descriptor->lob_current_position = descriptor->lob_size + offset;
offset            480 oci8/oci8_interface.c 				descriptor->lob_current_position = (offset > 0) ? offset : 0;
offset            649 oci8/oci8_interface.c 	long offset = -1, length = -1;
offset            652 oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ll", &offset, &length) == FAILURE) {
offset            656 oci8/oci8_interface.c 		if (ZEND_NUM_ARGS() > 0 && offset < 0) {
offset            667 oci8/oci8_interface.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|ll", &z_descriptor, oci_lob_class_entry_ptr, &offset, &length) == FAILURE) {
offset            671 oci8/oci8_interface.c 		if (ZEND_NUM_ARGS() > 1 && offset < 0) {
offset            689 oci8/oci8_interface.c 	if (php_oci_lob_erase(descriptor, offset, length, &bytes_erased TSRMLS_CC)) {
offset            244 oci8/oci8_lob.c 	oraub8 bytes_read, offset = 0;
offset            248 oci8/oci8_lob.c 	int bytes_read, offset = 0;
offset            286 oci8/oci8_lob.c 	offset = initial_offset;
offset            347 oci8/oci8_lob.c 			(oraub8) offset + 1,							/* offset (starts with 1) */
offset            361 oci8/oci8_lob.c 		offset = descriptor->lob_current_position + chars_read;
offset            363 oci8/oci8_lob.c 		offset = descriptor->lob_current_position + bytes_read;
offset            379 oci8/oci8_lob.c 			 offset + 1,							 /* offset (starts with 1) */
offset            390 oci8/oci8_lob.c 	offset = descriptor->lob_current_position + bytes_read;
offset            405 oci8/oci8_lob.c 	descriptor->lob_current_position = (int)offset;
offset            442 oci8/oci8_lob.c 	if (offset < 0) {
offset            443 oci8/oci8_lob.c 		offset = 0;
offset            446 oci8/oci8_lob.c 	if (offset > descriptor->lob_current_position) {
offset            447 oci8/oci8_lob.c 		offset = descriptor->lob_current_position;
offset            456 oci8/oci8_lob.c 				(ub4) offset + 1,
offset            725 oci8/oci8_lob.c 	ub4 offset = 1;
offset            749 oci8/oci8_lob.c 					offset,
offset            766 oci8/oci8_lob.c 		offset += loblen;
offset            856 oci8/oci8_lob.c 	if (offset == -1) {
offset            857 oci8/oci8_lob.c 		offset = descriptor->lob_current_position;
offset            864 oci8/oci8_lob.c 	PHP_OCI_CALL_RETURN(connection->errcode, OCILobErase, (connection->svc, connection->err, lob, (ub4 *)&length, offset+1));
offset           2783 pcre/pcrelib/pcre_compile.c   int offset;
offset           2791 pcre/pcrelib/pcre_compile.c     offset = GET(hc, 0);
offset           2792 pcre/pcrelib/pcre_compile.c     if (cd->start_code + offset == ptr + 1)
offset           2794 pcre/pcrelib/pcre_compile.c       PUT(hc, 0, offset + adjust);
offset           2804 pcre/pcrelib/pcre_compile.c     offset = GET(ptr, 1);
offset           2805 pcre/pcrelib/pcre_compile.c     if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust);
offset           4810 pcre/pcrelib/pcre_compile.c         int offset = GET(cd->hwm, -LINK_SIZE);
offset           4811 pcre/pcrelib/pcre_compile.c         if (offset == previous + 1 - cd->start_code)
offset           4812 pcre/pcrelib/pcre_compile.c           PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE);
offset           5184 pcre/pcrelib/pcre_compile.c           int offset;
offset           5195 pcre/pcrelib/pcre_compile.c           offset = (bralink == NULL)? 0 : (int)(previous - bralink);
offset           5197 pcre/pcrelib/pcre_compile.c           PUTINC(previous, 0, offset);
offset           5318 pcre/pcrelib/pcre_compile.c             int offset;
offset           5320 pcre/pcrelib/pcre_compile.c             offset = (bralink == NULL)? 0 : (int)(code - bralink);
offset           5322 pcre/pcrelib/pcre_compile.c             PUTINC(code, 0, offset);
offset           5356 pcre/pcrelib/pcre_compile.c           int offset = (int)(code - bralink + 1);
offset           5357 pcre/pcrelib/pcre_compile.c           pcre_uchar *bra = code - offset;
offset           5361 pcre/pcrelib/pcre_compile.c           PUTINC(code, 0, offset);
offset           5362 pcre/pcrelib/pcre_compile.c           PUT(bra, 1, offset);
offset           7981 pcre/pcrelib/pcre_compile.c     int offset, recno;
offset           7983 pcre/pcrelib/pcre_compile.c     offset = GET(cd->hwm, 0);
offset           7984 pcre/pcrelib/pcre_compile.c     recno = GET(codestart, offset);
offset           7991 pcre/pcrelib/pcre_compile.c       else PUT(((pcre_uchar *)codestart), offset, (int)(groupptr - codestart));
offset            150 pcre/pcrelib/pcre_exec.c register PCRE_PUCHAR p = md->start_subject + md->offset_vector[offset];
offset            618 pcre/pcrelib/pcre_exec.c int offset;
offset            931 pcre/pcrelib/pcre_exec.c     offset = number << 1;
offset            940 pcre/pcrelib/pcre_exec.c     if (offset < md->offset_max)
offset            942 pcre/pcrelib/pcre_exec.c       save_offset1 = md->offset_vector[offset];
offset            943 pcre/pcrelib/pcre_exec.c       save_offset2 = md->offset_vector[offset+1];
offset            988 pcre/pcrelib/pcre_exec.c       md->offset_vector[offset] = save_offset1;
offset            989 pcre/pcrelib/pcre_exec.c       md->offset_vector[offset+1] = save_offset2;
offset           1100 pcre/pcrelib/pcre_exec.c     offset = number << 1;
offset           1109 pcre/pcrelib/pcre_exec.c     if (offset < md->offset_max)
offset           1114 pcre/pcrelib/pcre_exec.c       save_offset1 = md->offset_vector[offset];
offset           1115 pcre/pcrelib/pcre_exec.c       save_offset2 = md->offset_vector[offset+1];
offset           1166 pcre/pcrelib/pcre_exec.c         md->offset_vector[offset] = save_offset1;
offset           1167 pcre/pcrelib/pcre_exec.c         md->offset_vector[offset+1] = save_offset2;
offset           1358 pcre/pcrelib/pcre_exec.c       offset = GET2(ecode, LINK_SIZE+2) << 1;  /* Doubled ref number */
offset           1359 pcre/pcrelib/pcre_exec.c       condition = offset < offset_top && md->offset_vector[offset] >= 0;
offset           1368 pcre/pcrelib/pcre_exec.c         int refno = offset >> 1;
offset           1389 pcre/pcrelib/pcre_exec.c               offset = GET2(slotB, 0) << 1;
offset           1390 pcre/pcrelib/pcre_exec.c               condition = offset < offset_top &&
offset           1391 pcre/pcrelib/pcre_exec.c                 md->offset_vector[offset] >= 0;
offset           1407 pcre/pcrelib/pcre_exec.c                 offset = GET2(slotB, 0) << 1;
offset           1408 pcre/pcrelib/pcre_exec.c                 condition = offset < offset_top &&
offset           1409 pcre/pcrelib/pcre_exec.c                   md->offset_vector[offset] >= 0;
offset           1497 pcre/pcrelib/pcre_exec.c     offset = number << 1;
offset           1505 pcre/pcrelib/pcre_exec.c     if (offset >= md->offset_max) md->offset_overflow = TRUE; else
offset           1507 pcre/pcrelib/pcre_exec.c       md->offset_vector[offset] =
offset           1509 pcre/pcrelib/pcre_exec.c       md->offset_vector[offset+1] = (int)(eptr - md->start_subject);
offset           1510 pcre/pcrelib/pcre_exec.c       if (offset_top <= offset) offset_top = offset + 2;
offset           1910 pcre/pcrelib/pcre_exec.c       offset = number << 1;
offset           1929 pcre/pcrelib/pcre_exec.c       if (offset >= md->offset_max) md->offset_overflow = TRUE; else
offset           1941 pcre/pcrelib/pcre_exec.c         if (offset > offset_top)
offset           1944 pcre/pcrelib/pcre_exec.c           register int *iend = md->offset_vector + offset;
offset           1950 pcre/pcrelib/pcre_exec.c         md->offset_vector[offset] =
offset           1952 pcre/pcrelib/pcre_exec.c         md->offset_vector[offset+1] = (int)(eptr - md->start_subject);
offset           1953 pcre/pcrelib/pcre_exec.c         if (offset_top <= offset) offset_top = offset + 2;
offset           2668 pcre/pcrelib/pcre_exec.c     offset = GET2(ecode, 1) << 1;               /* Doubled ref number */
offset           2683 pcre/pcrelib/pcre_exec.c     if (offset >= offset_top || md->offset_vector[offset] < 0)
offset           2686 pcre/pcrelib/pcre_exec.c       length = md->offset_vector[offset+1] - md->offset_vector[offset];
offset           2715 pcre/pcrelib/pcre_exec.c       if ((length = match_ref(offset, eptr, length, md, caseless)) < 0)
offset           2741 pcre/pcrelib/pcre_exec.c       if ((slength = match_ref(offset, eptr, length, md, caseless)) < 0)
offset           2765 pcre/pcrelib/pcre_exec.c         if ((slength = match_ref(offset, eptr, length, md, caseless)) < 0)
offset           2784 pcre/pcrelib/pcre_exec.c         if ((slength = match_ref(offset, eptr, length, md, caseless)) < 0)
offset            514 pcre/php_pcre.c 	add_next_index_long(match_pair, offset);
offset            700 pdo/pdo_stmt.c 	if (!stmt->methods->fetcher(stmt, ori, offset TSRMLS_CC)) {
offset            867 pdo/pdo_stmt.c 	if (!do_fetch_common(stmt, ori, offset, do_bind TSRMLS_CC)) {
offset            378 pdo_oci/oci_statement.c 						ub4 amt, offset = 1;
offset            394 pdo_oci/oci_statement.c 											&amt, offset, consume, n,
offset            397 pdo_oci/oci_statement.c 									offset += amt;
offset            413 pdo_oci/oci_statement.c 											&amt, offset, consume, n,
offset            450 pdo_oci/oci_statement.c 	S->last_err = OCIStmtFetch2(S->stmt, S->err, 1, ociori, offset, OCI_DEFAULT);
offset            605 pdo_oci/oci_statement.c 	ub4 offset;
offset            616 pdo_oci/oci_statement.c 		&amt, self->offset, (char*)buf, count,
offset            624 pdo_oci/oci_statement.c 	self->offset += amt;
offset            636 pdo_oci/oci_statement.c 		&amt, self->offset, buf, count,
offset            643 pdo_oci/oci_statement.c 	self->offset += amt;
offset            676 pdo_oci/oci_statement.c 	if (offset >= PDO_OCI_LOBMAXSIZE) {
offset            679 pdo_oci/oci_statement.c 		self->offset = offset + 1;  /* Oracle LOBS are 1-based, but PHP is 0-based */
offset            701 pdo_oci/oci_statement.c 	self->offset = 1; /* 1-based */
offset            522 pdo_odbc/odbc_stmt.c 	rc = SQLFetchScroll(S->stmt, odbcori, offset);
offset            154 pdo_pgsql/pgsql_driver.c 	int pos = lo_lseek(self->conn, self->lfd, offset, whence);
offset            397 pdo_pgsql/pgsql_statement.c 			case PDO_FETCH_ORI_ABS:		spprintf(&ori_str, 0, "ABSOLUTE %ld", offset); break;
offset            398 pdo_pgsql/pgsql_statement.c 			case PDO_FETCH_ORI_REL:		spprintf(&ori_str, 0, "RELATIVE %ld", offset); break;
offset           3516 pgsql/pgsql.c  	long offset = 0, whence = SEEK_CUR;
offset           3520 pgsql/pgsql.c  	if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &pgsql_id, &offset, &whence) == FAILURE) {
offset           3530 pgsql/pgsql.c  	if (lo_lseek((PGconn *)pgsql->conn, pgsql->lofd, offset, whence) > -1) {
offset           3543 pgsql/pgsql.c  	int offset = 0;
offset           3553 pgsql/pgsql.c  	offset = lo_tell((PGconn *)pgsql->conn, pgsql->lofd);
offset           3554 pgsql/pgsql.c  	RETURN_LONG(offset);
offset             71 phar/dirstream.c 		offset = zend_hash_num_elements(data) + offset;
offset             78 phar/dirstream.c 	if (offset < 0) {
offset             82 phar/dirstream.c 		while (*newoffset < offset && zend_hash_move_forward(data) == SUCCESS) {
offset            102 phar/func_interceptors.c 	long offset = -1;
offset            116 phar/func_interceptors.c 	if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) {
offset            198 phar/func_interceptors.c 			if (offset > 0 && php_stream_seek(stream, offset, SEEK_SET) < 0) {
offset            199 phar/func_interceptors.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream", offset);
offset            669 phar/phar.c    	long offset;
offset           1057 phar/phar.c    	offset = halt_offset + manifest_len + 4;
offset           1094 phar/phar.c    		if (offset == halt_offset + (int)manifest_len + 4) {
offset           1128 phar/phar.c    		entry.offset = entry.offset_abs = offset;
offset           1129 phar/phar.c    		offset += entry.compressed_filesize;
offset           2456 phar/phar.c    		entry->offset = entry->offset_abs =
offset           2573 phar/phar.c    	long offset;
offset           2751 phar/phar.c    	offset = 0;
offset           2805 phar/phar.c    		offset += 4 + entry->filename_len + sizeof(entry_buffer) + entry->metadata_str.len + (entry->is_dir ? 1 : 0);
offset           2931 phar/phar.c    	manifest_len = offset + phar->alias_len + sizeof(manifest) + main_metadata_str.len;
offset           3059 phar/phar.c    	offset = php_stream_tell(newfile);
offset           3101 phar/phar.c    		entry->offset = entry->offset_abs = offset;
offset           3102 phar/phar.c    		offset += entry->compressed_filesize;
offset            270 phar/phar_internal.h 	long                     offset;
offset            353 phar/phar_internal.h 	long                     offset;
offset            440 phar/phar_internal.h 		entry->offset = offset;
offset            445 phar/phar_internal.h 	data->offset = offset;
offset            459 phar/phar_internal.h 		return entry->offset;
offset            462 phar/phar_internal.h 		if (!PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].offset) {
offset            463 phar/phar_internal.h 			PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].offset = entry->offset;
offset            466 phar/phar_internal.h 	return PHAR_GLOBALS->cached_fp[entry->phar->phar_pos].manifest[entry->manifest_pos].offset;
offset           1776 phar/phar_object.c 		data->internal_file->offset_abs = data->internal_file->offset = php_stream_tell(p_obj->fp);
offset           1780 phar/phar_object.c 			php_stream_tell(p_obj->fp) - data->internal_file->offset;
offset           2040 phar/phar_object.c 	off_t offset;
offset           2057 phar/phar_object.c 	offset = php_stream_tell(fp);
offset           2078 phar/phar_object.c 	entry->offset = offset;
offset            168 phar/pharzip.h 	char offset[4];            /* relative offset of local header 4 bytes */
offset            265 phar/stream.c  				entry->offset = entry->offset_abs = 0;
offset            405 phar/stream.c  			temp = data->zero + entry->uncompressed_filesize + offset;
offset            408 phar/stream.c  			temp = data->zero + data->position + offset;
offset            411 phar/stream.c  			temp = data->zero + offset;
offset            449 phar/tar.c     		entry.offset = entry.offset_abs = pos; /* header_offset unused in tar */
offset            822 phar/tar.c     	entry->offset = entry->offset_abs = pos;
offset            849 phar/tar.c     	entry->offset = entry->offset_abs = 0;
offset            149 phar/util.c    			temp = eoffset + entry->uncompressed_filesize + offset;
offset            152 phar/util.c    			temp = eoffset + position + offset;
offset            155 phar/util.c    			temp = eoffset + offset;
offset            889 phar/util.c    	dest->offset = 0;
offset            956 phar/util.c    		dummy.zero = entry->offset;
offset            974 phar/util.c    	dummy.zero = entry->offset;
offset           1021 phar/util.c    	dummy.zero = entry->offset;
offset           1080 phar/util.c    		entry->offset = 0;
offset           1113 phar/util.c    	entry->offset = 0;
offset           1152 phar/util.c    	entry->offset = 0;
offset            375 phar/zip.c     		entry.header_offset = PHAR_GET_32(zipentry.offset);
offset            376 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            565 phar/zip.c     			php_stream_seek(fp, PHAR_GET_32(zipentry.offset), SEEK_SET);
offset            579 phar/zip.c     			entry.offset = entry.offset_abs =
offset            585 phar/zip.c     			php_stream_seek(fp, entry.offset, SEEK_SET);
offset            589 phar/zip.c     			php_stream_seek(fp, entry.offset, SEEK_SET);
offset            782 phar/zip.c     	off_t offset;
offset            835 phar/zip.c     	PHAR_SET_32(central.offset, php_stream_tell(p->filefp));
offset            966 phar/zip.c     	offset = entry->header_offset + sizeof(local) + entry->filename_len + (entry->is_dir ? 1 : 0) + sizeof(perms);
offset           1069 phar/zip.c     	entry->offset = entry->offset_abs = offset;
offset            191 reflection/php_reflection.c 	zend_uint offset;
offset            682 reflection/php_reflection.c 	++offset;
offset            685 reflection/php_reflection.c 			&& op->op1.num == (long)offset)
offset            698 reflection/php_reflection.c 	string_printf(str, "Parameter #%d [ ", offset);
offset            699 reflection/php_reflection.c 	if (offset >= required) {
offset            721 reflection/php_reflection.c 		string_printf(str, "$param%d", offset);
offset            723 reflection/php_reflection.c 	if (fptr->type == ZEND_USER_FUNCTION && offset >= required) {
offset            724 reflection/php_reflection.c 		zend_op *precv = _get_recv_op((zend_op_array*)fptr, offset);
offset           1256 reflection/php_reflection.c 	reference->offset = offset;
offset           1493 reflection/php_reflection.c 	precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
offset           2299 reflection/php_reflection.c 	ref->offset = (zend_uint)position;
offset           2325 reflection/php_reflection.c 	_parameter_string(&str, param->fptr, param->arg_info, param->offset, param->required, "" TSRMLS_CC);
offset           2529 reflection/php_reflection.c 	RETVAL_LONG(param->offset);
offset           2545 reflection/php_reflection.c 	RETVAL_BOOL(param->offset >= param->required);
offset           2567 reflection/php_reflection.c 	precv = _get_recv_op((zend_op_array*)param->fptr, param->offset);
offset           3362 reflection/php_reflection.c 		if (prop_info->offset >= 0) {
offset           3364 reflection/php_reflection.c 				prop = ce->default_static_members_table[prop_info->offset];
offset           3366 reflection/php_reflection.c 				prop = ce->default_properties_table[prop_info->offset];
offset           4968 reflection/php_reflection.c 		if (!CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) {
offset           4972 reflection/php_reflection.c 		*return_value= *CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset];
offset           5022 reflection/php_reflection.c 		if (!CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset]) {
offset           5026 reflection/php_reflection.c 		variable_ptr = &CE_STATIC_MEMBERS(intern->ce)[ref->prop.offset];
offset           2510 session/session.c 			Z_LVAL_P(progress->current_file_bytes_processed) = data->offset + data->length;
offset            318 shmop/shmop.c  	long shmid, offset;
offset            322 shmop/shmop.c  	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lsl", &shmid, &data, &data_len, &offset) == FAILURE) {
offset            333 shmop/shmop.c  	if (offset < 0 || offset > shmop->size) {
offset            338 shmop/shmop.c  	writesize = (data_len < shmop->size - offset) ? data_len : shmop->size - offset;
offset            339 shmop/shmop.c  	memcpy(shmop->addr + offset, data, writesize);
offset            148 simplexml/simplexml.c 		if (offset == 0) {
offset            157 simplexml/simplexml.c 	while (node && nodendx <= offset) {
offset            162 simplexml/simplexml.c 				if (nodendx == offset) {
offset            402 simplexml/simplexml.c 	return sxe_prop_dim_read(object, offset, 0, 1, type TSRMLS_CC);
offset            693 simplexml/simplexml.c 	sxe_prop_dim_write(object, offset, value, 0, 1, NULL TSRMLS_CC);
offset            984 simplexml/simplexml.c 	sxe_prop_dim_delete(object, offset, 0, 1 TSRMLS_CC);
offset            377 snmp/snmp.c    	int offset;
offset            706 snmp/snmp.c    		objid_query->offset = objid_query->count;
offset            745 snmp/snmp.c    			for (count = 0; objid_query->offset < objid_query->count && count < objid_query->step; objid_query->offset++, count++){
offset            747 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            748 snmp/snmp.c    						snprint_objid(buf, sizeof(buf), objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length);
offset            749 snmp/snmp.c    						php_snmp_error(getThis(), NULL TSRMLS_CC, 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            756 snmp/snmp.c    					snmp_add_null_var(pdu, objid_query->vars[objid_query->offset].name, objid_query->vars[objid_query->offset].name_length);
offset            772 snmp/snmp.c    					if (objid_query->offset < objid_query->count) { /* we have unprocessed OIDs */
offset            803 snmp/snmp.c    							objid_query->offset = 0;
offset            870 snmp/snmp.c    				if (objid_query->offset < objid_query->count) { /* we have unprocessed OIDs */
offset            880 snmp/snmp.c    						objid_query->offset = ((objid_query->offset > objid_query->step) ? (objid_query->offset - objid_query->step) : 0 );
offset           1078 snmp/snmp.c    		for (objid_query->offset = 0; objid_query->offset < objid_query->count; objid_query->offset++) {
offset           1079 snmp/snmp.c    			objid_query->vars[objid_query->offset].name_length = MAX_OID_LEN;
offset           1080 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           1081 snmp/snmp.c    				php_snmp_error(object, NULL TSRMLS_CC, PHP_SNMP_ERRNO_OID_PARSING_ERROR, "Invalid object identifier: %s", objid_query->vars[objid_query->offset].oid);
offset           1087 snmp/snmp.c    	objid_query->offset = 0;
offset            309 spl/spl_array.c 	if (!offset) {
offset            318 spl/spl_array.c 	switch(Z_TYPE_P(offset)) {
offset            320 spl/spl_array.c 		Z_STRVAL_P(offset) = "";
offset            321 spl/spl_array.c 		Z_STRLEN_P(offset) = 0;
offset            323 spl/spl_array.c 		if (zend_symtable_find(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, (void **) &retval) == FAILURE) {
offset            326 spl/spl_array.c 					zend_error(E_NOTICE, "Undefined index: %s", Z_STRVAL_P(offset));
offset            332 spl/spl_array.c 					zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            336 spl/spl_array.c 				    zend_symtable_update(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, (void**)&value, sizeof(void*), (void **)&retval);
offset            342 spl/spl_array.c 		zend_error(E_STRICT, "Resource ID#%ld used as offset, casting to integer (%ld)", Z_LVAL_P(offset), Z_LVAL_P(offset));
offset            346 spl/spl_array.c 		if (offset->type == IS_DOUBLE) {
offset            347 spl/spl_array.c 			index = (long)Z_DVAL_P(offset);
offset            349 spl/spl_array.c 			index = Z_LVAL_P(offset);
offset            384 spl/spl_array.c 			SEPARATE_ARG_IF_REF(offset);
offset            385 spl/spl_array.c 			zend_call_method_with_1_params(&object, Z_OBJCE_P(object), &intern->fptr_offset_get, "offsetGet", &rv, offset);	
offset            386 spl/spl_array.c 			zval_ptr_dtor(&offset);
offset            396 spl/spl_array.c 	ret = spl_array_get_dimension_ptr_ptr(check_inherited, object, offset, type TSRMLS_CC);
offset            424 spl/spl_array.c 	return spl_array_read_dimension_ex(1, object, offset, type TSRMLS_CC);
offset            434 spl/spl_array.c 		if (!offset) {
offset            435 spl/spl_array.c 			ALLOC_INIT_ZVAL(offset);
offset            437 spl/spl_array.c 			SEPARATE_ARG_IF_REF(offset);
offset            439 spl/spl_array.c 		zend_call_method_with_2_params(&object, Z_OBJCE_P(object), &intern->fptr_offset_set, "offsetSet", NULL, offset, value);
offset            440 spl/spl_array.c 		zval_ptr_dtor(&offset);
offset            444 spl/spl_array.c 	if (!offset) {
offset            454 spl/spl_array.c 	switch(Z_TYPE_P(offset)) {
offset            462 spl/spl_array.c 		zend_symtable_update(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, (void**)&value, sizeof(void*), NULL);
offset            473 spl/spl_array.c 		if (offset->type == IS_DOUBLE) {
offset            474 spl/spl_array.c 			index = (long)Z_DVAL_P(offset);
offset            476 spl/spl_array.c 			index = Z_LVAL_P(offset);
offset            498 spl/spl_array.c 	spl_array_write_dimension_ex(1, object, offset, value TSRMLS_CC);
offset            508 spl/spl_array.c 		SEPARATE_ARG_IF_REF(offset);
offset            509 spl/spl_array.c 		zend_call_method_with_1_params(&object, Z_OBJCE_P(object), &intern->fptr_offset_del, "offsetUnset", NULL, offset);
offset            510 spl/spl_array.c 		zval_ptr_dtor(&offset);
offset            514 spl/spl_array.c 	switch(Z_TYPE_P(offset)) {
offset            522 spl/spl_array.c 			if (zend_delete_global_variable(Z_STRVAL_P(offset), Z_STRLEN_P(offset) TSRMLS_CC)) {
offset            523 spl/spl_array.c 				zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            526 spl/spl_array.c 			if (zend_symtable_del(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1) == FAILURE) {
offset            527 spl/spl_array.c 				zend_error(E_NOTICE,"Undefined index: %s", Z_STRVAL_P(offset));
offset            547 spl/spl_array.c 					zend_property_info *property_info = zend_get_property_info(obj->std.ce, offset, 1 TSRMLS_CC);
offset            551 spl/spl_array.c 					    property_info->offset >= 0) {
offset            552 spl/spl_array.c 					    obj->std.properties_table[property_info->offset] = NULL;
offset            562 spl/spl_array.c 		if (offset->type == IS_DOUBLE) {
offset            563 spl/spl_array.c 			index = (long)Z_DVAL_P(offset);
offset            565 spl/spl_array.c 			index = Z_LVAL_P(offset);
offset            573 spl/spl_array.c 			zend_error(E_NOTICE,"Undefined offset: %ld", Z_LVAL_P(offset));
offset            585 spl/spl_array.c 	spl_array_unset_dimension_ex(1, object, offset TSRMLS_CC);
offset            595 spl/spl_array.c 		SEPARATE_ARG_IF_REF(offset);
offset            596 spl/spl_array.c 		zend_call_method_with_1_params(&object, Z_OBJCE_P(object), &intern->fptr_offset_has, "offsetExists", &rv, offset);
offset            597 spl/spl_array.c 		zval_ptr_dtor(&offset);
offset            608 spl/spl_array.c 	switch(Z_TYPE_P(offset)) {
offset            612 spl/spl_array.c 				if (zend_symtable_find(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, (void **) &tmp) != FAILURE) {
offset            630 spl/spl_array.c 				if (offset->type == IS_DOUBLE) {
offset            631 spl/spl_array.c 					index = (long)Z_DVAL_P(offset);
offset            633 spl/spl_array.c 					index = Z_LVAL_P(offset);
offset            655 spl/spl_array.c 	return spl_array_has_dimension_ex(1, object, offset, check_empty TSRMLS_CC);
offset            175 spl/spl_dllist.c 	while (current && pos < offset) {
offset             48 spl/spl_engine.c 	switch (Z_TYPE_P(offset)) {
offset             50 spl/spl_engine.c 		ZEND_HANDLE_NUMERIC(Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, idx);
offset             53 spl/spl_engine.c 		return (long)Z_DVAL_P(offset);
offset             57 spl/spl_engine.c 		return Z_LVAL_P(offset);
offset            350 spl/spl_fixedarray.c 	if (!offset) {
offset            355 spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            356 spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
offset            358 spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            381 spl/spl_fixedarray.c 		SEPARATE_ARG_IF_REF(offset);
offset            382 spl/spl_fixedarray.c 		zend_call_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_get, "offsetGet", &rv, offset);
offset            383 spl/spl_fixedarray.c 		zval_ptr_dtor(&offset);
offset            393 spl/spl_fixedarray.c 	retval = spl_fixedarray_object_read_dimension_helper(intern, offset TSRMLS_CC);
offset            405 spl/spl_fixedarray.c 	if (!offset) {
offset            411 spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            412 spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
offset            414 spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            437 spl/spl_fixedarray.c 		if (!offset) {
offset            438 spl/spl_fixedarray.c 			ALLOC_INIT_ZVAL(offset);
offset            440 spl/spl_fixedarray.c 			SEPARATE_ARG_IF_REF(offset);
offset            443 spl/spl_fixedarray.c 		zend_call_method_with_2_params(&object, intern->std.ce, &intern->fptr_offset_set, "offsetSet", NULL, offset, value);
offset            445 spl/spl_fixedarray.c 		zval_ptr_dtor(&offset);
offset            449 spl/spl_fixedarray.c 	spl_fixedarray_object_write_dimension_helper(intern, offset, value TSRMLS_CC);
offset            457 spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            458 spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
offset            460 spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            482 spl/spl_fixedarray.c 		SEPARATE_ARG_IF_REF(offset);
offset            483 spl/spl_fixedarray.c 		zend_call_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_del, "offsetUnset", NULL, offset);
offset            484 spl/spl_fixedarray.c 		zval_ptr_dtor(&offset);
offset            488 spl/spl_fixedarray.c 	spl_fixedarray_object_unset_dimension_helper(intern, offset TSRMLS_CC);
offset            498 spl/spl_fixedarray.c 	if (Z_TYPE_P(offset) != IS_LONG) {
offset            499 spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
offset            501 spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
offset            532 spl/spl_fixedarray.c 		SEPARATE_ARG_IF_REF(offset);
offset            533 spl/spl_fixedarray.c 		zend_call_method_with_1_params(&object, intern->std.ce, &intern->fptr_offset_has, "offsetExists", &rv, offset);
offset            534 spl/spl_fixedarray.c 		zval_ptr_dtor(&offset);
offset            544 spl/spl_fixedarray.c 	return spl_fixedarray_object_has_dimension_helper(intern, offset, check_empty TSRMLS_CC);
offset           1387 spl/spl_iterators.c 			intern->u.limit.offset = 0; /* start at beginning */
offset           1389 spl/spl_iterators.c 			if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|ll", &zobject, ce_inner, &intern->u.limit.offset, &intern->u.limit.count) == FAILURE) {
offset           1393 spl/spl_iterators.c 			if (intern->u.limit.offset < 0) {
offset           2428 spl/spl_iterators.c 	if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit.count) {
offset           2440 spl/spl_iterators.c 	if (pos < intern->u.limit.offset) {
offset           2441 spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Cannot seek to %ld which is below the offset %ld", pos, intern->u.limit.offset);
offset           2444 spl/spl_iterators.c 	if (pos >= intern->u.limit.offset + intern->u.limit.count && intern->u.limit.count != -1) {
offset           2445 spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Cannot seek to %ld which is behind offset %ld plus count %ld", pos, intern->u.limit.offset, intern->u.limit.count);
offset           2490 spl/spl_iterators.c 	spl_limit_it_seek(intern, intern->u.limit.offset TSRMLS_CC);
offset           2502 spl/spl_iterators.c 	RETURN_BOOL((intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) && intern->current.data);
offset           2514 spl/spl_iterators.c 	if (intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) {
offset            145 spl/spl_iterators.h 			long             offset;
offset           1240 sqlite3/libsqlite/sqlite3.c   int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
offset           14313 sqlite3/libsqlite/sqlite3.c   return id->pMethods->xRead(id, pBuf, amt, offset);
offset           14317 sqlite3/libsqlite/sqlite3.c   return id->pMethods->xWrite(id, pBuf, amt, offset);
offset           14352 sqlite3/libsqlite/sqlite3.c   return id->pMethods->xShmLock(id, offset, n, flags);
offset           22475 sqlite3/libsqlite/sqlite3.c   if( DosSetFilePtr(pFile->h, offset, FILE_BEGIN, &fileLocation) != NO_ERROR ){
offset           22508 sqlite3/libsqlite/sqlite3.c   if( DosSetFilePtr(pFile->h, offset, FILE_BEGIN, &fileLocation) != NO_ERROR ){
offset           26920 sqlite3/libsqlite/sqlite3.c   unsigned long long offset;        /* offset to first byte to lock */
offset           26948 sqlite3/libsqlite/sqlite3.c   pb.offset = offset;
offset           26954 sqlite3/libsqlite/sqlite3.c     offset, length));
offset           27422 sqlite3/libsqlite/sqlite3.c   do{ got = osPread(id->h, pBuf, cnt, offset); }while( got<0 && errno==EINTR );
offset           27425 sqlite3/libsqlite/sqlite3.c   do{ got = osPread64(id->h, pBuf, cnt, offset); }while( got<0 && errno==EINTR);
offset           27428 sqlite3/libsqlite/sqlite3.c   newOffset = lseek(id->h, offset, SEEK_SET);
offset           27430 sqlite3/libsqlite/sqlite3.c   if( newOffset!=offset ){
offset           27444 sqlite3/libsqlite/sqlite3.c   OSTRACE(("READ    %-3d %5d %7lld %llu\n", id->h, got, offset, TIMER_ELAPSED));
offset           27467 sqlite3/libsqlite/sqlite3.c        || offset>=PENDING_BYTE+512
offset           27468 sqlite3/libsqlite/sqlite3.c        || offset+amt<=PENDING_BYTE 
offset           27472 sqlite3/libsqlite/sqlite3.c   got = seekAndRead(pFile, offset, pBuf, amt);
offset           27500 sqlite3/libsqlite/sqlite3.c   do{ got = osPwrite(id->h, pBuf, cnt, offset); }while( got<0 && errno==EINTR );
offset           27502 sqlite3/libsqlite/sqlite3.c   do{ got = osPwrite64(id->h, pBuf, cnt, offset);}while( got<0 && errno==EINTR);
offset           27504 sqlite3/libsqlite/sqlite3.c   newOffset = lseek(id->h, offset, SEEK_SET);
offset           27506 sqlite3/libsqlite/sqlite3.c   if( newOffset!=offset ){
offset           27521 sqlite3/libsqlite/sqlite3.c   OSTRACE(("WRITE   %-3d %5d %7lld %llu\n", id->h, got, offset, TIMER_ELAPSED));
offset           27545 sqlite3/libsqlite/sqlite3.c        || offset>=PENDING_BYTE+512
offset           27546 sqlite3/libsqlite/sqlite3.c        || offset+amt<=PENDING_BYTE 
offset           27559 sqlite3/libsqlite/sqlite3.c     if( offset<=24 && offset+amt>=27 ){
offset           27565 sqlite3/libsqlite/sqlite3.c       if( rc!=4 || memcmp(oldCntr, &((char*)pBuf)[24-offset], 4)!=0 ){
offset           27572 sqlite3/libsqlite/sqlite3.c   while( amt>0 && (wrote = seekAndWrite(pFile, offset, pBuf, amt))>0 ){
offset           27574 sqlite3/libsqlite/sqlite3.c     offset += wrote;
offset           32250 sqlite3/libsqlite/sqlite3.c   if( seekWinFile(pFile, offset) ){
offset           32286 sqlite3/libsqlite/sqlite3.c   rc = seekWinFile(pFile, offset);
offset           37816 sqlite3/libsqlite/sqlite3.c   int rc = sqlite3OsRead(fd, ac, sizeof(ac), offset);
offset           37836 sqlite3/libsqlite/sqlite3.c   return sqlite3OsWrite(fd, ac, 4, offset);
offset           38052 sqlite3/libsqlite/sqlite3.c   i64 offset = 0;
offset           38055 sqlite3/libsqlite/sqlite3.c     offset = ((c-1)/JOURNAL_HDR_SZ(pPager) + 1) * JOURNAL_HDR_SZ(pPager);
offset           38057 sqlite3/libsqlite/sqlite3.c   assert( offset%JOURNAL_HDR_SZ(pPager)==0 );
offset           38058 sqlite3/libsqlite/sqlite3.c   assert( offset>=c );
offset           38059 sqlite3/libsqlite/sqlite3.c   assert( (offset-c)<JOURNAL_HDR_SZ(pPager) );
offset           38060 sqlite3/libsqlite/sqlite3.c   return offset;
offset           40065 sqlite3/libsqlite/sqlite3.c     i64 offset = pSavepoint->iSubRec*(4+pPager->pageSize);
offset           40071 sqlite3/libsqlite/sqlite3.c       assert( offset==ii*(4+pPager->pageSize) );
offset           40072 sqlite3/libsqlite/sqlite3.c       rc = pager_playback_one_page(pPager, &offset, pDone, 0, 1);
offset           40818 sqlite3/libsqlite/sqlite3.c       i64 offset = (pgno-1)*(i64)pPager->pageSize;   /* Offset to write */
offset           40828 sqlite3/libsqlite/sqlite3.c       rc = sqlite3OsWrite(pPager->fd, pData, pPager->pageSize, offset);
offset           40911 sqlite3/libsqlite/sqlite3.c       i64 offset = pPager->nSubRec*(4+pPager->pageSize);
offset           40916 sqlite3/libsqlite/sqlite3.c       rc = write32bits(pPager->sjfd, offset, pPg->pgno);
offset           40918 sqlite3/libsqlite/sqlite3.c         rc = sqlite3OsWrite(pPager->sjfd, pData2, pPager->pageSize, offset+4);
offset           48281 sqlite3/libsqlite/sqlite3.c   int offset;       /* Offset in pointer map page */
offset           48301 sqlite3/libsqlite/sqlite3.c   offset = PTRMAP_PTROFFSET(iPtrmap, key);
offset           48302 sqlite3/libsqlite/sqlite3.c   if( offset<0 ){
offset           48306 sqlite3/libsqlite/sqlite3.c   assert( offset <= (int)pBt->usableSize-5 );
offset           48309 sqlite3/libsqlite/sqlite3.c   if( eType!=pPtrmap[offset] || get4byte(&pPtrmap[offset+1])!=parent ){
offset           48313 sqlite3/libsqlite/sqlite3.c       pPtrmap[offset] = eType;
offset           48314 sqlite3/libsqlite/sqlite3.c       put4byte(&pPtrmap[offset+1], parent);
offset           48333 sqlite3/libsqlite/sqlite3.c   int offset;        /* Offset of entry in pointer map */
offset           48345 sqlite3/libsqlite/sqlite3.c   offset = PTRMAP_PTROFFSET(iPtrmap, key);
offset           48346 sqlite3/libsqlite/sqlite3.c   if( offset<0 ){
offset           48350 sqlite3/libsqlite/sqlite3.c   assert( offset <= (int)pBt->usableSize-5 );
offset           48352 sqlite3/libsqlite/sqlite3.c   *pEType = pPtrmap[offset];
offset           48353 sqlite3/libsqlite/sqlite3.c   if( pPgno ) *pPgno = get4byte(&pPtrmap[offset+1]);
offset           51367 sqlite3/libsqlite/sqlite3.c   if( NEVER(offset+amt > nKey+pCur->info.nData) 
offset           51375 sqlite3/libsqlite/sqlite3.c   if( offset<pCur->info.nLocal ){
offset           51377 sqlite3/libsqlite/sqlite3.c     if( a+offset>pCur->info.nLocal ){
offset           51378 sqlite3/libsqlite/sqlite3.c       a = pCur->info.nLocal - offset;
offset           51380 sqlite3/libsqlite/sqlite3.c     rc = copyPayload(&aPayload[offset], pBuf, a, eOp, pPage->pDbPage);
offset           51381 sqlite3/libsqlite/sqlite3.c     offset = 0;
offset           51385 sqlite3/libsqlite/sqlite3.c     offset -= pCur->info.nLocal;
offset           51416 sqlite3/libsqlite/sqlite3.c     if( pCur->aOverflow && pCur->aOverflow[offset/ovflSize] ){
offset           51417 sqlite3/libsqlite/sqlite3.c       iIdx = (offset/ovflSize);
offset           51419 sqlite3/libsqlite/sqlite3.c       offset = (offset%ovflSize);
offset           51433 sqlite3/libsqlite/sqlite3.c       if( offset>=ovflSize ){
offset           51446 sqlite3/libsqlite/sqlite3.c         offset -= ovflSize;
offset           51457 sqlite3/libsqlite/sqlite3.c           if( a + offset > ovflSize ){
offset           51458 sqlite3/libsqlite/sqlite3.c             a = ovflSize - offset;
offset           51460 sqlite3/libsqlite/sqlite3.c           rc = copyPayload(&aPayload[offset+4], pBuf, a, eOp, pDbPage);
offset           51462 sqlite3/libsqlite/sqlite3.c           offset = 0;
offset           51493 sqlite3/libsqlite/sqlite3.c   return accessPayload(pCur, offset, amt, (unsigned char*)pBuf, 0);
offset           51520 sqlite3/libsqlite/sqlite3.c     rc = accessPayload(pCur, offset, amt, pBuf, 0);
offset           55630 sqlite3/libsqlite/sqlite3.c   return accessPayload(pCsr, offset, amt, (unsigned char *)z, 1);
offset           57311 sqlite3/libsqlite/sqlite3.c   if( offset+amt<=available && (pMem->flags&MEM_Dyn)==0 ){
offset           57313 sqlite3/libsqlite/sqlite3.c     pMem->z = &zData[offset];
offset           57320 sqlite3/libsqlite/sqlite3.c       rc = sqlite3BtreeKey(pCur, offset, amt, pMem->z);
offset           57322 sqlite3/libsqlite/sqlite3.c       rc = sqlite3BtreeData(pCur, offset, amt, pMem->z);
offset           59367 sqlite3/libsqlite/sqlite3.c     i64 offset = 0;
offset           59411 sqlite3/libsqlite/sqlite3.c         rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
offset           59412 sqlite3/libsqlite/sqlite3.c         offset += sqlite3Strlen30(zFile)+1;
offset           63006 sqlite3/libsqlite/sqlite3.c       u32 offset;        /* Offset into the data */
offset           64883 sqlite3/libsqlite/sqlite3.c   u32 offset;        /* Offset into the data */
offset           65007 sqlite3/libsqlite/sqlite3.c     u.am.szHdr = getVarint32((u8*)u.am.zData, u.am.offset);
offset           65018 sqlite3/libsqlite/sqlite3.c     if( u.am.offset > 98307 ){
offset           65037 sqlite3/libsqlite/sqlite3.c     if( u.am.len > (int)u.am.offset ) u.am.len = (int)u.am.offset;
offset           65064 sqlite3/libsqlite/sqlite3.c         u.am.aOffset[u.am.i] = u.am.offset;
offset           65067 sqlite3/libsqlite/sqlite3.c         u.am.offset += u.am.szField;
offset           65068 sqlite3/libsqlite/sqlite3.c         if( u.am.offset<u.am.szField ){  /* True if u.am.offset overflows */
offset           65091 sqlite3/libsqlite/sqlite3.c     if( (u.am.zIdx > u.am.zEndHdr) || (u.am.offset > u.am.payloadSize)
offset           65092 sqlite3/libsqlite/sqlite3.c          || (u.am.zIdx==u.am.zEndHdr && u.am.offset!=u.am.payloadSize) ){
offset           98027 sqlite3/libsqlite/sqlite3.c         x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset);
offset            693 sqlite3/libsqlite/sqlite3.h   int (*xShmLock)(sqlite3_file*, int offset, int n, int flags);
offset           1121 sqlite3/sqlite3.c 			if (offset < 0) {
offset           1122 sqlite3/sqlite3.c 				if (sqlite3_stream->position < (size_t)(-offset)) {
offset           1127 sqlite3/sqlite3.c 					sqlite3_stream->position = sqlite3_stream->position + offset;
offset           1133 sqlite3/sqlite3.c 				if (sqlite3_stream->position + (size_t)(offset) > sqlite3_stream->size) {
offset           1138 sqlite3/sqlite3.c 					sqlite3_stream->position = sqlite3_stream->position + offset;
offset           1145 sqlite3/sqlite3.c 			if (sqlite3_stream->size < (size_t)(offset)) {
offset           1150 sqlite3/sqlite3.c 				sqlite3_stream->position = offset;
offset           1156 sqlite3/sqlite3.c 			if (offset > 0) {
offset           1160 sqlite3/sqlite3.c 			} else if (sqlite3_stream->size < (size_t)(-offset)) {
offset           1165 sqlite3/sqlite3.c 				sqlite3_stream->position = sqlite3_stream->size + offset;
offset           1863 standard/array.c 	if (offset > num_in) {
offset           1864 standard/array.c 		offset = num_in;
offset           1865 standard/array.c 	} else if (offset < 0 && (offset = (num_in + offset)) < 0) {
offset           1866 standard/array.c 		offset = 0;
offset           1871 standard/array.c 		length = num_in - offset + length;
offset           1872 standard/array.c 	} else if (((unsigned)offset + (unsigned)length) > (unsigned)num_in) {
offset           1873 standard/array.c 		length = num_in - offset;
offset           1881 standard/array.c 	for (pos = 0, p = in_hash->pListHead; pos < offset && p ; pos++, p = p->pListNext) {
offset           1896 standard/array.c 		for ( ; pos < offset + length && p; pos++, p = p->pListNext) {
offset           1906 standard/array.c 		for ( ; pos < offset + length && p; pos++, p = p->pListNext);
offset           2090 standard/array.c 			offset,
offset           2095 standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "al|lz/", &array, &offset, &length, &repl_array) == FAILURE) {
offset           2123 standard/array.c 		if (offset > num_in) {
offset           2124 standard/array.c 			offset = num_in;
offset           2125 standard/array.c 		} else if (offset < 0 && (offset = (num_in + offset)) < 0) {
offset           2126 standard/array.c 			offset = 0;
offset           2131 standard/array.c 			size = num_in - offset + length;
offset           2132 standard/array.c 		} else if (((unsigned long) offset + (unsigned long) length) > (unsigned) num_in) {
offset           2133 standard/array.c 			size = num_in - offset;
offset           2142 standard/array.c 	new_hash = php_splice(Z_ARRVAL_P(array), offset, length, repl, repl_num, rem_hash);
offset           2167 standard/array.c 	long	 offset,		/* Offset to get elements from */
offset           2177 standard/array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "al|Zb", &input, &offset, &z_length, &preserve_keys) == FAILURE) {
offset           2193 standard/array.c 	if (offset > num_in) {
offset           2196 standard/array.c 	} else if (offset < 0 && (offset = (num_in + offset)) < 0) {
offset           2197 standard/array.c 		offset = 0;
offset           2202 standard/array.c 		length = num_in - offset + length;
offset           2203 standard/array.c 	} else if (((unsigned long) offset + (unsigned long) length) > (unsigned) num_in) {
offset           2204 standard/array.c 		length = num_in - offset;
offset           2217 standard/array.c 	while (pos < offset && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) {
offset           2223 standard/array.c 	while (pos < offset + length && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) {
offset            522 standard/file.c 	long offset = -1;
offset            528 standard/file.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) {
offset            546 standard/file.c 	if (offset > 0 && php_stream_seek(stream, offset, SEEK_SET) < 0) {
offset            547 standard/file.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream", offset);
offset           1818 standard/filters.c 	off_t offset;
offset           1834 standard/filters.c 	if (data->offset == ~0) {
offset           1835 standard/filters.c 		data->offset = php_stream_tell(stream);
offset           1846 standard/filters.c 		php_stream_seek(stream, data->offset + data->consumed, SEEK_SET);
offset           1884 standard/filters.c 	data->offset = ~0;
offset            126 standard/flock_compat.c     OVERLAPPED offset =
offset            131 standard/flock_compat.c     UnlockFileEx(hdl, 0, low, high, &offset);
offset            136 standard/flock_compat.c                            0, low, high, &offset))
offset            141 standard/flock_compat.c                            0, low, high, &offset))
offset             71 standard/microtime.c 		timelib_time_offset *offset;
offset             73 standard/microtime.c 		offset = timelib_get_time_zone_info(tp.tv_sec, get_timezone_info(TSRMLS_C));
offset             79 standard/microtime.c 		add_assoc_long(return_value, "minuteswest", -offset->offset / SEC_IN_MIN);
offset             80 standard/microtime.c 		add_assoc_long(return_value, "dsttime", offset->is_dst);
offset             82 standard/microtime.c 		timelib_time_offset_dtor(offset);
offset           1800 standard/string.c 	long  offset = 0;
offset           1803 standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|l", &haystack, &haystack_len, &needle, &offset) == FAILURE) {
offset           1807 standard/string.c 	if (offset < 0 || offset > haystack_len) {
offset           1818 standard/string.c 		found = php_memnstr(haystack + offset,
offset           1828 standard/string.c 		found = php_memnstr(haystack + offset,
offset           1849 standard/string.c 	long offset = 0;
offset           1854 standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|l", &haystack, &haystack_len, &needle, &offset) == FAILURE) {
offset           1858 standard/string.c 	if (offset < 0 || offset > haystack_len) {
offset           1878 standard/string.c 		found = php_memnstr(haystack_dup + offset, needle_dup, Z_STRLEN_P(needle), haystack_dup + haystack_len);
offset           1886 standard/string.c 		found = php_memnstr(haystack_dup + offset,
offset           1912 standard/string.c 	long offset = 0;
offset           1915 standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|l", &haystack, &haystack_len, &zneedle, &offset) == FAILURE) {
offset           1935 standard/string.c 	if (offset >= 0) {
offset           1936 standard/string.c 		if (offset > haystack_len) {
offset           1940 standard/string.c 		p = haystack + offset;
offset           1943 standard/string.c 		if (offset < -INT_MAX || -offset > haystack_len) {
offset           1949 standard/string.c 		if (needle_len > -offset) {
offset           1952 standard/string.c 			e = haystack + haystack_len + offset;
offset           1960 standard/string.c 				RETURN_LONG(e - p + (offset > 0 ? offset : 0));
offset           1969 standard/string.c 			RETURN_LONG(e - p + (offset > 0 ? offset : 0));
offset           1985 standard/string.c 	long offset = 0;
offset           1989 standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz|l", &haystack, &haystack_len, &zneedle, &offset) == FAILURE) {
offset           2012 standard/string.c 		if (offset >= 0) {
offset           2013 standard/string.c 			if (offset > haystack_len) {
offset           2017 standard/string.c 			p = haystack + offset;
offset           2021 standard/string.c 			if (offset < -INT_MAX || -offset > haystack_len) {
offset           2025 standard/string.c 			e = haystack + haystack_len + offset;
offset           2031 standard/string.c 				RETURN_LONG(e - p + (offset > 0 ? offset : 0));
offset           2043 standard/string.c 	if (offset >= 0) {
offset           2044 standard/string.c 		if (offset > haystack_len) {
offset           2050 standard/string.c 		p = haystack_dup + offset;
offset           2053 standard/string.c 		if (offset < -INT_MAX || -offset > haystack_len) {
offset           2060 standard/string.c 		if (needle_len > -offset) {
offset           2063 standard/string.c 			e = haystack_dup + haystack_len + offset;
offset           2071 standard/string.c 			RETURN_LONG(e - p + (offset > 0 ? offset : 0));
offset           4916 standard/string.c 	long offset = 0, length = 0;
offset           4922 standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|ll", &haystack, &haystack_len, &needle, &needle_len, &offset, &length) == FAILURE) {
offset           4934 standard/string.c 	if (offset < 0) {
offset           4939 standard/string.c 	if (offset > haystack_len) {
offset           4940 standard/string.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Offset value %ld exceeds string length", offset);
offset           4943 standard/string.c 	p += offset;
offset           4951 standard/string.c 		if (length > (haystack_len - offset)) {
offset           5350 standard/string.c 	long offset, len=0;
offset           5354 standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssl|lb", &s1, &s1_len, &s2, &s2_len, &offset, &len, &cs) == FAILURE) {
offset           5363 standard/string.c 	if (offset < 0) {
offset           5364 standard/string.c 		offset = s1_len + offset;
offset           5365 standard/string.c 		offset = (offset < 0) ? 0 : offset;
offset           5368 standard/string.c 	if (offset >= s1_len) {
offset           5373 standard/string.c 	cmp_len = (uint) (len ? len : MAX(s2_len, (s1_len - offset)));
offset           5376 standard/string.c 		RETURN_LONG(zend_binary_strncmp(s1 + offset, (s1_len - offset), s2, s2_len, cmp_len));
offset           5378 standard/string.c 		RETURN_LONG(zend_binary_strncasecmp(s1 + offset, (s1_len - offset), s2, s2_len, cmp_len));
offset           1910 sybase_ct/php_sybase_ct.c 	long offset;
offset           1913 sybase_ct/php_sybase_ct.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &sybase_result_index, &offset) == FAILURE) {
offset           1919 sybase_ct/php_sybase_ct.c 	if (result->last_retcode != CS_END_DATA && result->last_retcode != CS_END_RESULTS && offset >= result->num_rows) {
offset           1920 sybase_ct/php_sybase_ct.c 		php_sybase_fetch_result_row(result, offset+ 1 TSRMLS_CC);
offset           1923 sybase_ct/php_sybase_ct.c 	if (offset < 0 || offset >= result->num_rows) {
offset           1924 sybase_ct/php_sybase_ct.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Sybase:  Bad row offset %ld, must be betweem 0 and %d", offset, result->num_rows - 1);
offset           1928 sybase_ct/php_sybase_ct.c 	result->cur_row = offset;
offset             29 xmlrpc/libxmlrpc/base64.c   b->offset = 0;
offset             35 xmlrpc/libxmlrpc/base64.c   b->offset++;
offset             36 xmlrpc/libxmlrpc/base64.c   if (b->offset == b->length) {
offset             39 xmlrpc/libxmlrpc/base64.c     b->ptr = b->data + b->offset;
offset             47 xmlrpc/libxmlrpc/base64.c   b->offset = 0;
offset             55 xmlrpc/libxmlrpc/base64.c   int offset = 0;
offset             81 xmlrpc/libxmlrpc/base64.c       offset++;
offset             82 xmlrpc/libxmlrpc/base64.c       if (offset > length) {
offset            106 xmlrpc/libxmlrpc/base64.c 	if (!(b->offset % 72)) {
offset            120 xmlrpc/libxmlrpc/base64.c     int offset = 0;
offset            152 xmlrpc/libxmlrpc/base64.c 	      offset++;
offset            153 xmlrpc/libxmlrpc/base64.c 	      if (offset > length) endoffile = 1;
offset             17 xmlrpc/libxmlrpc/base64.h   int offset;
offset            108 xmlrpc/libxmlrpc/xml_to_dandarpc.c             XMLRPC_SetValueBase64(xCurrent, buf.data, buf.offset);
offset            231 xmlrpc/libxmlrpc/xml_to_dandarpc.c                simplestring_addn(&elem_val->text, buf.data, buf.offset );
offset            367 xmlrpc/libxmlrpc/xml_to_soap.c 				XMLRPC_SetValueBase64(xCurrent, buf.data, buf.offset);
offset            533 xmlrpc/libxmlrpc/xml_to_soap.c 				simplestring_addn(&elem_val->text, buf.data, buf.offset );
offset            143 xmlrpc/libxmlrpc/xml_to_xmlrpc.c          XMLRPC_SetValueBase64(current_val, buf.data, buf.offset);
offset            246 xmlrpc/libxmlrpc/xml_to_xmlrpc.c                simplestring_addn(&elem_val->text, buf.data, buf.offset );
offset            195 zip/lib/zip_close.c 	    if (fseeko(za->zp, za->cdir->entry[i].offset, SEEK_SET) != 0) {
offset            249 zip/lib/zip_close.c 	cd->entry[j].offset = ftello(out);
offset            512 zip/lib/zip_close.c     off_t offset;
offset            525 zip/lib/zip_close.c     offset = ftello(out);
offset            527 zip/lib/zip_close.c     if (_zip_filerange_crc(out, cd->offset, cd->size, &crc, &za->error) < 0)
offset            532 zip/lib/zip_close.c     if (fseeko(out, offset-TORRENT_CRC_LEN, SEEK_SET) < 0) {
offset            114 zip/lib/zip_dirent.c     cd->size = cd->offset = 0;
offset            128 zip/lib/zip_dirent.c     cd->offset = ftello(fp);
offset            135 zip/lib/zip_dirent.c     cd->size = ftello(fp) - cd->offset;
offset            143 zip/lib/zip_dirent.c     _zip_write4(cd->offset, fp);
offset            190 zip/lib/zip_dirent.c     de->offset = 0;
offset            280 zip/lib/zip_dirent.c 	zde->offset = 0;
offset            286 zip/lib/zip_dirent.c 	zde->offset = _zip_read4(&cur);
offset            396 zip/lib/zip_dirent.c     de->offset = 0;
offset            448 zip/lib/zip_dirent.c 	_zip_write4(zde->offset, fp);
offset             57 zip/lib/zip_file_get_offset.c     unsigned int offset;
offset             59 zip/lib/zip_file_get_offset.c     offset = za->cdir->entry[idx].offset;
offset             61 zip/lib/zip_file_get_offset.c     if (fseeko(za->zp, offset, SEEK_SET) != 0) {
offset             69 zip/lib/zip_file_get_offset.c     offset += LENTRYSIZE + de.filename_len + de.extrafield_len;
offset             73 zip/lib/zip_file_get_offset.c     return offset;
offset            205 zip/lib/zip_open.c     cd->offset = _zip_read4(&cdp);
offset            209 zip/lib/zip_open.c     if (((zip_uint64_t)cd->offset)+cd->size > buf_offset + (eocd-buf)) {
offset            240 zip/lib/zip_open.c     if (cd->offset >= buf_offset) {
offset            242 zip/lib/zip_open.c 	cdp = buf + (cd->offset - buf_offset);
offset            249 zip/lib/zip_open.c 	fseeko(fp, cd->offset, SEEK_SET);
offset            252 zip/lib/zip_open.c 	if (ferror(fp) || ((unsigned long)ftello(fp) != cd->offset)) {
offset            306 zip/lib/zip_open.c 	max = cd->entry[0].offset;
offset            307 zip/lib/zip_open.c 	min = cd->entry[0].offset;
offset            313 zip/lib/zip_open.c 	if (cd->entry[i].offset < min)
offset            314 zip/lib/zip_open.c 	    min = cd->entry[i].offset;
offset            315 zip/lib/zip_open.c 	if (min > cd->offset) {
offset            320 zip/lib/zip_open.c 	j = cd->entry[i].offset + cd->entry[i].comp_size
offset            324 zip/lib/zip_open.c 	if (max > cd->offset) {
offset            329 zip/lib/zip_open.c 	if (fseeko(fp, cd->entry[i].offset, SEEK_SET) != 0) {
offset            374 zip/lib/zip_open.c     if (_zip_filerange_crc(za->zp, za->cdir->offset, za->cdir->size,
offset            443 zip/lib/zip_open.c 	|| (h1->offset != h2->offset)
offset            234 zip/lib/zipint.h     unsigned int offset;		/* (c)  offset of local header  */
offset            244 zip/lib/zipint.h     unsigned int offset;	/* offset of central directory in file */
offset             67 zlib/zlib_fopen_wrapper.c 	*newoffs = gzseek(self->gz_file, offset, whence);