index            1307 Zend/zend_API.c ZEND_API int add_index_long(zval *arg, ulong index, long n) /* {{{ */
index            1314 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1318 Zend/zend_API.c ZEND_API int add_index_null(zval *arg, ulong index) /* {{{ */
index            1325 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1329 Zend/zend_API.c ZEND_API int add_index_bool(zval *arg, ulong index, int b) /* {{{ */
index            1336 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1340 Zend/zend_API.c ZEND_API int add_index_resource(zval *arg, ulong index, int r) /* {{{ */
index            1347 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1351 Zend/zend_API.c ZEND_API int add_index_double(zval *arg, ulong index, double d) /* {{{ */
index            1358 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1362 Zend/zend_API.c ZEND_API int add_index_string(zval *arg, ulong index, const char *str, int duplicate) /* {{{ */
index            1369 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1373 Zend/zend_API.c ZEND_API int add_index_stringl(zval *arg, ulong index, const char *str, uint length, int duplicate) /* {{{ */
index            1380 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), NULL);
index            1384 Zend/zend_API.c ZEND_API int add_index_zval(zval *arg, ulong index, zval *value) /* {{{ */
index            1386 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &value, sizeof(zval *), NULL);
index            1495 Zend/zend_API.c ZEND_API int add_get_index_long(zval *arg, ulong index, long l, void **dest) /* {{{ */
index            1502 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest);
index            1506 Zend/zend_API.c ZEND_API int add_get_index_double(zval *arg, ulong index, double d, void **dest) /* {{{ */
index            1513 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest);
index            1517 Zend/zend_API.c ZEND_API int add_get_index_string(zval *arg, ulong index, const char *str, void **dest, int duplicate) /* {{{ */
index            1524 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest);
index            1528 Zend/zend_API.c ZEND_API int add_get_index_stringl(zval *arg, ulong index, const char *str, uint length, void **dest, int duplicate) /* {{{ */
index            1535 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, (void *) &tmp, sizeof(zval *), dest);
index             410 Zend/zend_API.h ZEND_API int add_index_zval(zval *arg, ulong index, zval *value);
index             453 Zend/zend_alloc.c #define ZEND_MM_SMALL_FREE_BUCKET(heap, index) \
index             454 Zend/zend_alloc.c 	(zend_mm_free_block*) ((char*)&heap->free_buckets[index * 2] + \
index             714 Zend/zend_alloc.c 	unsigned int index = 0;
index             719 Zend/zend_alloc.c 		index += n;
index             723 Zend/zend_alloc.c 	return index + n;
index             730 Zend/zend_alloc.c 	size_t index;
index             738 Zend/zend_alloc.c 		index = ZEND_MM_LARGE_BUCKET_INDEX(size);
index             739 Zend/zend_alloc.c 		p = &heap->large_free_buckets[index];
index             745 Zend/zend_alloc.c 			heap->large_free_bitmap |= (ZEND_MM_LONG_CONST(1) << index);
index             749 Zend/zend_alloc.c 			for (m = size << (ZEND_MM_NUM_BUCKETS - index); ; m <<= 1) {
index             774 Zend/zend_alloc.c 		index = ZEND_MM_BUCKET_INDEX(size);
index             776 Zend/zend_alloc.c 		prev = ZEND_MM_SMALL_FREE_BUCKET(heap, index);
index             778 Zend/zend_alloc.c 			heap->free_bitmap |= (ZEND_MM_LONG_CONST(1) << index);
index             807 Zend/zend_alloc.c 			size_t index = ZEND_MM_LARGE_BUCKET_INDEX(ZEND_MM_FREE_BLOCK_SIZE(mm_block));
index             811 Zend/zend_alloc.c 			if (mm_block->parent == &heap->large_free_buckets[index]) {
index             812 Zend/zend_alloc.c 				heap->large_free_bitmap &= ~(ZEND_MM_LONG_CONST(1) << index);
index             847 Zend/zend_alloc.c 				size_t index = ZEND_MM_BUCKET_INDEX(ZEND_MM_FREE_BLOCK_SIZE(mm_block));
index             849 Zend/zend_alloc.c 				if (EXPECTED(heap->free_buckets[index*2] == heap->free_buckets[index*2+1])) {
index             850 Zend/zend_alloc.c 					heap->free_bitmap &= ~(ZEND_MM_LONG_CONST(1) << index);
index            1810 Zend/zend_alloc.c 	size_t index = ZEND_MM_LARGE_BUCKET_INDEX(true_size);
index            1811 Zend/zend_alloc.c 	size_t bitmap = heap->large_free_bitmap >> index;
index            1825 Zend/zend_alloc.c 		p = heap->large_free_buckets[index];
index            1826 Zend/zend_alloc.c 		for (m = true_size << (ZEND_MM_NUM_BUCKETS - index); ; m <<= 1) {
index            1867 Zend/zend_alloc.c 		index++;
index            1871 Zend/zend_alloc.c 	best_fit = p = heap->large_free_buckets[index + zend_mm_low_bit(bitmap)];
index            1896 Zend/zend_alloc.c 		size_t index = ZEND_MM_BUCKET_INDEX(true_size);
index            1903 Zend/zend_alloc.c 		if (EXPECTED(heap->cache[index] != NULL)) {
index            1906 Zend/zend_alloc.c 			heap->cache_stat[index].count--;
index            1907 Zend/zend_alloc.c 			heap->cache_stat[index].hit++;
index            1909 Zend/zend_alloc.c 			best_fit = heap->cache[index];
index            1910 Zend/zend_alloc.c 			heap->cache[index] = best_fit->prev_free_block;
index            1918 Zend/zend_alloc.c 		heap->cache_stat[index].miss++;
index            1922 Zend/zend_alloc.c 		bitmap = heap->free_bitmap >> index;
index            1925 Zend/zend_alloc.c 			index += zend_mm_low_bit(bitmap);
index            1926 Zend/zend_alloc.c 			best_fit = heap->free_buckets[index*2];
index            2084 Zend/zend_alloc.c 		size_t index = ZEND_MM_BUCKET_INDEX(size);
index            2085 Zend/zend_alloc.c 		zend_mm_free_block **cache = &heap->cache[index];
index            2092 Zend/zend_alloc.c 		if (++heap->cache_stat[index].count > heap->cache_stat[index].max_count) {
index            2093 Zend/zend_alloc.c 			heap->cache_stat[index].max_count = heap->cache_stat[index].count;
index            2177 Zend/zend_alloc.c 		size_t index = ZEND_MM_BUCKET_INDEX(true_size);
index            2179 Zend/zend_alloc.c 		if (heap->cache[index] != NULL) {
index            2184 Zend/zend_alloc.c 			heap->cache_stat[index].count--;
index            2185 Zend/zend_alloc.c 			heap->cache_stat[index].hit++;
index            2187 Zend/zend_alloc.c 			best_fit = heap->cache[index];
index            2188 Zend/zend_alloc.c 			heap->cache[index] = best_fit->prev_free_block;
index            2202 Zend/zend_alloc.c 			index = ZEND_MM_BUCKET_INDEX(orig_size);
index            2203 Zend/zend_alloc.c 			cache = &heap->cache[index];
index            2209 Zend/zend_alloc.c 			if (++heap->cache_stat[index].count > heap->cache_stat[index].max_count) {
index            2210 Zend/zend_alloc.c 				heap->cache_stat[index].max_count = heap->cache_stat[index].count;
index             835 Zend/zend_compile.c 		ulong index;
index             838 Zend/zend_compile.c 		ZEND_HANDLE_NUMERIC_EX(Z_STRVAL(CONSTANT(opline.op2.constant)), Z_STRLEN(CONSTANT(opline.op2.constant))+1, index, numeric = 1);
index             841 Zend/zend_compile.c 			ZVAL_LONG(&CONSTANT(opline.op2.constant), index);
index            5880 Zend/zend_compile.c 				ulong index;
index            5883 Zend/zend_compile.c 				ZEND_HANDLE_NUMERIC_EX(Z_STRVAL(CONSTANT(opline->op2.constant)), Z_STRLEN(CONSTANT(opline->op2.constant))+1, index, numeric = 1);
index            5886 Zend/zend_compile.c 					ZVAL_LONG(&CONSTANT(opline->op2.constant), index);
index            5912 Zend/zend_compile.c 			ulong index;
index            5915 Zend/zend_compile.c 			ZEND_HANDLE_NUMERIC_EX(Z_STRVAL(CONSTANT(opline->op2.constant)), Z_STRLEN(CONSTANT(opline->op2.constant))+1, index, numeric = 1);
index            5918 Zend/zend_compile.c 				ZVAL_LONG(&CONSTANT(opline->op2.constant), index);
index              58 Zend/zend_dynamic_array.c ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index)
index              60 Zend/zend_dynamic_array.c 	if (index >= da->current) {
index              63 Zend/zend_dynamic_array.c 	return (void *)(da->array+index*da->element_size);
index              36 Zend/zend_dynamic_array.h ZEND_API void *zend_dynamic_array_get_element(dynamic_array *da, unsigned int index);
index             191 Zend/zend_interfaces.c 	*int_key = _iter->index;
index              60 Zend/zend_iterators.h 	ulong index; /* private to fe_reset/fe_fetch opcodes */
index              37 Zend/zend_list.c 	int index;
index              44 Zend/zend_list.c 	index = zend_hash_next_free_element(&EG(regular_list));
index              46 Zend/zend_list.c 	zend_hash_index_update(&EG(regular_list), index, (void *) &le, sizeof(zend_rsrc_list_entry), NULL);
index              47 Zend/zend_list.c 	return index;
index            3257 Zend/zend_vm_def.h 				zend_ulong index;
index            3259 Zend/zend_vm_def.h 				if (zend_hash_get_current_key_ex(ht, &name, &name_len, &index, 0, &pos) == HASH_KEY_IS_STRING) {
index            4397 Zend/zend_vm_def.h 		iter->index = 0;
index            4416 Zend/zend_vm_def.h 		iter->index = -1; /* will be set to 0 before using next handler */
index            4529 Zend/zend_vm_def.h 			if (iter && ++iter->index > 0) {
index            4539 Zend/zend_vm_def.h 			if (!iter || (iter->index > 0 && iter->funcs->valid(iter TSRMLS_CC) == FAILURE)) {
index            4564 Zend/zend_vm_def.h 					ZVAL_LONG(key, iter->index);
index             733 Zend/zend_vm_execute.h 				zend_ulong index;
index             735 Zend/zend_vm_execute.h 				if (zend_hash_get_current_key_ex(ht, &name, &name_len, &index, 0, &pos) == HASH_KEY_IS_STRING) {
index            3157 Zend/zend_vm_execute.h 		iter->index = 0;
index            3176 Zend/zend_vm_execute.h 		iter->index = -1; /* will be set to 0 before using next handler */
index            8523 Zend/zend_vm_execute.h 		iter->index = 0;
index            8542 Zend/zend_vm_execute.h 		iter->index = -1; /* will be set to 0 before using next handler */
index            13892 Zend/zend_vm_execute.h 		iter->index = 0;
index            13911 Zend/zend_vm_execute.h 		iter->index = -1; /* will be set to 0 before using next handler */
index            14024 Zend/zend_vm_execute.h 			if (iter && ++iter->index > 0) {
index            14034 Zend/zend_vm_execute.h 			if (!iter || (iter->index > 0 && iter->funcs->valid(iter TSRMLS_CC) == FAILURE)) {
index            14059 Zend/zend_vm_execute.h 					ZVAL_LONG(key, iter->index);
index            31561 Zend/zend_vm_execute.h 		iter->index = 0;
index            31580 Zend/zend_vm_execute.h 		iter->index = -1; /* will be set to 0 before using next handler */
index              52 ext/bcmath/libbcmath/src/num2long.c   int  index;
index              57 ext/bcmath/libbcmath/src/num2long.c   for (index=num->n_len; (index>0) && (val<=(LONG_MAX/BASE)); index--)
index              61 ext/bcmath/libbcmath/src/num2long.c   if (index>0) val = 0;
index              49 ext/bcmath/libbcmath/src/num2str.c   int  index, signch;
index              65 ext/bcmath/libbcmath/src/num2str.c   for (index=num->n_len; index>0; index--)
index              72 ext/bcmath/libbcmath/src/num2str.c       for (index=0; index<num->n_scale; index++)
index              96 ext/bcmath/libbcmath/src/output.c   int  index, fdigit, pre_space;
index             112 ext/bcmath/libbcmath/src/output.c 	  for (index=num->n_len; index>0; index--)
index             124 ext/bcmath/libbcmath/src/output.c 	    for (index=0; index<num->n_scale; index++)
index             435 ext/com_dotnet/com_saproxy.c int php_com_saproxy_create(zval *com_object, zval *proxy_out, zval *index TSRMLS_DC)
index             460 ext/com_dotnet/com_saproxy.c 	*proxy->indices[proxy->dimensions-1] = *index;
index              84 ext/com_dotnet/php_com_dotnet_internal.h int php_com_saproxy_create(zval *com_object, zval *proxy_out, zval *index TSRMLS_DC);
index             320 ext/date/lib/parse_tz.c 		int cmp = strcasecmp(timezone, tzdb->index[mid].id);
index             327 ext/date/lib/parse_tz.c 			(*tzf) = &(tzdb->data[tzdb->index[mid].pos]);
index             295 ext/date/lib/timelib_structs.h 	const timelib_tzdb_index_entry *index;
index            4617 ext/date/php_date.c 	table = tzdb->index;
index              34 ext/dom/dom_iterators.c 	int index;
index              41 ext/dom/dom_iterators.c 	int index;
index              49 ext/dom/dom_iterators.c 	if(priv->cur < priv->index) {
index              83 ext/dom/dom_iterators.c xmlNode *php_dom_libxml_hash_iter(xmlHashTable *ht, int index) /* {{{ */
index              89 ext/dom/dom_iterators.c 	if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) {
index              92 ext/dom/dom_iterators.c 		iter->index = index;
index             104 ext/dom/dom_iterators.c xmlNode *php_dom_libxml_notation_iter(xmlHashTable *ht, int index) /* {{{ */
index             110 ext/dom/dom_iterators.c 	if ((htsize = xmlHashSize(ht)) > 0 && index < htsize) {
index             113 ext/dom/dom_iterators.c 		iter->index = index;
index             166 ext/dom/dom_iterators.c 		ZVAL_LONG(key, iter->index);
index             226 ext/dom/dom_iterators.c 					curnode = dom_get_elements_by_tag_name_ns_raw(basenode, objmap->ns, objmap->local, &previndex, iter->index);
index             231 ext/dom/dom_iterators.c 				curnode = php_dom_libxml_hash_iter(objmap->ht, iter->index);
index             233 ext/dom/dom_iterators.c 				curnode = php_dom_libxml_notation_iter(objmap->ht, iter->index);
index             140 ext/dom/dom_properties.h xmlNodePtr dom_nodelist_xml_item(dom_nnodemap_object *objmap, long index);
index             141 ext/dom/dom_properties.h xmlNodePtr dom_nodelist_baseobj_item(dom_nnodemap_object *objmap, long index);
index              32 ext/dom/domimplementationlist.c 	ZEND_ARG_INFO(0, index)
index              32 ext/dom/domstringlist.c 	ZEND_ARG_INFO(0, index)
index              44 ext/dom/namednodemap.c 	ZEND_ARG_INFO(0, index)
index             204 ext/dom/namednodemap.c 	long index;
index             213 ext/dom/namednodemap.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_namednodemap_class_entry, &index) == FAILURE) {
index             216 ext/dom/namednodemap.c 	if (index >= 0) {
index             226 ext/dom/namednodemap.c 						itemnode = php_dom_libxml_hash_iter(objmap->ht, index);
index             228 ext/dom/namednodemap.c 						itemnode = php_dom_libxml_notation_iter(objmap->ht, index);
index             236 ext/dom/namednodemap.c 					while (count < index && curnode != NULL) {
index              32 ext/dom/namelist.c 	ZEND_ARG_INFO(0, index)
index              36 ext/dom/namelist.c 	ZEND_ARG_INFO(0, index)
index              33 ext/dom/nodelist.c 	ZEND_ARG_INFO(0, index)
index             108 ext/dom/nodelist.c 	long index;
index             119 ext/dom/nodelist.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Ol", &id, dom_nodelist_class_entry, &index) == FAILURE) {
index             123 ext/dom/nodelist.c 	if (index >= 0) {
index             130 ext/dom/nodelist.c 					itemnode = php_dom_libxml_hash_iter(objmap->ht, index);
index             132 ext/dom/nodelist.c 					itemnode = php_dom_libxml_notation_iter(objmap->ht, index);
index             137 ext/dom/nodelist.c 					if (zend_hash_index_find(nodeht, index, (void **) &entry)==SUCCESS) {
index             147 ext/dom/nodelist.c 							while (count < index && curnode != NULL) {
index             158 ext/dom/nodelist.c 							itemnode = dom_get_elements_by_tag_name_ns_raw(nodep, objmap->ns, objmap->local, &count, index);
index            1485 ext/dom/php_dom.c xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, int *cur, int index) /* {{{ */
index            1489 ext/dom/php_dom.c 	while (nodep != NULL && (*cur <= index || index == -1)) {
index            1493 ext/dom/php_dom.c 					if (*cur == index) {
index            1500 ext/dom/php_dom.c 			ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index);
index             113 ext/dom/php_dom.h xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, int *cur, int index);
index             122 ext/dom/php_dom.h xmlNode *php_dom_libxml_hash_iter(xmlHashTable *ht, int index);
index             123 ext/dom/php_dom.h xmlNode *php_dom_libxml_notation_iter(xmlHashTable *ht, int index);
index              96 ext/exif/exif.c 	ZEND_ARG_INFO(0, index)
index             685 ext/filter/filter.c 	ulong index;
index             705 ext/filter/filter.c 			if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(op), &arg_key, &arg_key_len, &index, 0, &pos) != HASH_KEY_IS_STRING) {
index             448 ext/gd/gd.c    	ZEND_ARG_INFO(0, index)
index             476 ext/gd/gd.c    	ZEND_ARG_INFO(0, index)
index            1540 ext/gd/gd.c    	int index;
index            1554 ext/gd/gd.c    	for (index = 0;; zend_hash_move_forward_ex(HASH_OF(styles), &pos))	{
index            1566 ext/gd/gd.c    			stylearr[index++] = Z_LVAL(lval);
index            1568 ext/gd/gd.c    			stylearr[index++] = Z_LVAL_PP(item);
index            1572 ext/gd/gd.c    	gdImageSetStyle(im, stylearr, index);
index            2924 ext/gd/gd.c    	long index;
index            2928 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &IM, &index) == FAILURE) {
index            2939 ext/gd/gd.c    	col = index;
index            3020 ext/gd/gd.c    	long index;
index            3024 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl", &IM, &index) == FAILURE) {
index            3030 ext/gd/gd.c    	col = index;
index            2750 ext/gd/libgd/gd.c 			int index;
index            2751 ext/gd/libgd/gd.c 			index = gdImageColorResolveAlpha(im, gdImageRed(brush, i), gdImageGreen(brush, i), gdImageBlue(brush, i), gdImageAlpha(brush, i));
index            2752 ext/gd/libgd/gd.c 			im->brushColorMap[i] = index;
index            2763 ext/gd/libgd/gd.c 			int index;
index            2764 ext/gd/libgd/gd.c 			index = gdImageColorResolveAlpha(im, gdImageRed(tile, i), gdImageGreen(tile, i), gdImageBlue(tile, i), gdImageAlpha(tile, i));
index            2765 ext/gd/libgd/gd.c 			im->tileColorMap[i] = index;
index             113 ext/gd/libgd/webpng.c 	  int index;
index             129 ext/gd/libgd/webpng.c 	      index = atoi (argv[i + 1]);
index             130 ext/gd/libgd/webpng.c 	      gdImageColorTransparent (im, index);
index             118 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, index)
index             124 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, index)
index            1949 ext/gmp/gmp.c  	long index;
index            1953 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Ol|b", &a_arg, gmp_ce, &index, &set) == FAILURE) {
index            1957 ext/gmp/gmp.c  	if (index < 0) {
index            1965 ext/gmp/gmp.c  		mpz_setbit(gmpnum_a, index);
index            1967 ext/gmp/gmp.c  		mpz_clrbit(gmpnum_a, index);
index            1977 ext/gmp/gmp.c  	long index;
index            1980 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Ol", &a_arg, gmp_ce, &index) == FAILURE){
index            1984 ext/gmp/gmp.c  	if (index < 0) {
index            1990 ext/gmp/gmp.c  	mpz_clrbit(gmpnum_a, index);
index            1999 ext/gmp/gmp.c  	long index;
index            2003 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zl", &a_arg, &index) == FAILURE){
index            2007 ext/gmp/gmp.c  	if (index < 0) {
index            2013 ext/gmp/gmp.c  	RETVAL_BOOL(mpz_tstbit(gmpnum_a, index));
index             287 ext/hash/hash_haval.c 	unsigned int i, index, partLen;
index             290 ext/hash/hash_haval.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7F);
index             297 ext/hash/hash_haval.c 	partLen = 128 - index;
index             302 ext/hash/hash_haval.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             309 ext/hash/hash_haval.c 		index = 0;
index             315 ext/hash/hash_haval.c 	memcpy((unsigned char*) &context->buffer[index], (unsigned char*) &input[i], inputLen - i);
index             326 ext/hash/hash_haval.c 	unsigned int index, padLen;
index             339 ext/hash/hash_haval.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index             340 ext/hash/hash_haval.c 	padLen = (index < 118) ? (118 - index) : (246 - index);
index             380 ext/hash/hash_haval.c 	unsigned int index, padLen;
index             393 ext/hash/hash_haval.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index             394 ext/hash/hash_haval.c 	padLen = (index < 118) ? (118 - index) : (246 - index);
index             434 ext/hash/hash_haval.c 	unsigned int index, padLen;
index             447 ext/hash/hash_haval.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index             448 ext/hash/hash_haval.c 	padLen = (index < 118) ? (118 - index) : (246 - index);
index             474 ext/hash/hash_haval.c 	unsigned int index, padLen;
index             487 ext/hash/hash_haval.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index             488 ext/hash/hash_haval.c 	padLen = (index < 118) ? (118 - index) : (246 - index);
index             515 ext/hash/hash_haval.c 	unsigned int index, padLen;
index             528 ext/hash/hash_haval.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index             529 ext/hash/hash_haval.c 	padLen = (index < 118) ? (118 - index) : (246 - index);
index             287 ext/hash/hash_md.c 	unsigned int i, index, partLen;
index             290 ext/hash/hash_md.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             298 ext/hash/hash_md.c 	partLen = 64 - index;
index             304 ext/hash/hash_md.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             310 ext/hash/hash_md.c 		index = 0;
index             316 ext/hash/hash_md.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
index             328 ext/hash/hash_md.c 	unsigned int index, padLen;
index             335 ext/hash/hash_md.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             336 ext/hash/hash_md.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             546 ext/hash/hash_md.c 	unsigned int i, index, partLen;
index             549 ext/hash/hash_md.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             557 ext/hash/hash_md.c 	partLen = 64 - index;
index             562 ext/hash/hash_md.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             569 ext/hash/hash_md.c 		index = 0;
index             575 ext/hash/hash_md.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             586 ext/hash/hash_md.c 	unsigned int index, padLen;
index             593 ext/hash/hash_md.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             594 ext/hash/hash_md.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             258 ext/hash/hash_ripemd.c 	unsigned int i, index, partLen;
index             261 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             269 ext/hash/hash_ripemd.c 	partLen = 64 - index;
index             274 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             281 ext/hash/hash_ripemd.c 		index = 0;
index             287 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             356 ext/hash/hash_ripemd.c 	unsigned int i, index, partLen;
index             359 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             367 ext/hash/hash_ripemd.c 	partLen = 64 - index;
index             372 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             379 ext/hash/hash_ripemd.c 		index = 0;
index             385 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             455 ext/hash/hash_ripemd.c 	unsigned int i, index, partLen;
index             458 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             466 ext/hash/hash_ripemd.c 	partLen = 64 - index;
index             471 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             478 ext/hash/hash_ripemd.c 		index = 0;
index             484 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             563 ext/hash/hash_ripemd.c 	unsigned int i, index, partLen;
index             566 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             574 ext/hash/hash_ripemd.c 	partLen = 64 - index;
index             579 ext/hash/hash_ripemd.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             586 ext/hash/hash_ripemd.c 		index = 0;
index             592 ext/hash/hash_ripemd.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             627 ext/hash/hash_ripemd.c 	unsigned int index, padLen;
index             641 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             642 ext/hash/hash_ripemd.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             664 ext/hash/hash_ripemd.c 	unsigned int index, padLen;
index             678 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             679 ext/hash/hash_ripemd.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             701 ext/hash/hash_ripemd.c 	unsigned int index, padLen;
index             715 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             716 ext/hash/hash_ripemd.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             738 ext/hash/hash_ripemd.c 	unsigned int index, padLen;
index             752 ext/hash/hash_ripemd.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             753 ext/hash/hash_ripemd.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             336 ext/hash/hash_sha.c 	unsigned int i, index, partLen;
index             339 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             347 ext/hash/hash_sha.c 	partLen = 64 - index;
index             353 ext/hash/hash_sha.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             359 ext/hash/hash_sha.c 		index = 0;
index             365 ext/hash/hash_sha.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
index             377 ext/hash/hash_sha.c 	unsigned int index, padLen;
index             391 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             392 ext/hash/hash_sha.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             544 ext/hash/hash_sha.c 	unsigned int i, index, partLen;
index             547 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             555 ext/hash/hash_sha.c 	partLen = 64 - index;
index             560 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             567 ext/hash/hash_sha.c 		index = 0;
index             573 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             584 ext/hash/hash_sha.c 	unsigned int index, padLen;
index             598 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             599 ext/hash/hash_sha.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             621 ext/hash/hash_sha.c 	unsigned int i, index, partLen;
index             624 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             632 ext/hash/hash_sha.c 	partLen = 64 - index;
index             637 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             644 ext/hash/hash_sha.c 		index = 0;
index             650 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             661 ext/hash/hash_sha.c 	unsigned int index, padLen;
index             675 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             676 ext/hash/hash_sha.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             835 ext/hash/hash_sha.c 	unsigned int i, index, partLen;
index             838 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7F);
index             846 ext/hash/hash_sha.c 	partLen = 128 - index;
index             851 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             858 ext/hash/hash_sha.c 		index = 0;
index             864 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             875 ext/hash/hash_sha.c 	unsigned int index, padLen;
index             897 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index             898 ext/hash/hash_sha.c 	padLen = (index < 112) ? (112 - index) : (240 - index);
index             949 ext/hash/hash_sha.c 	unsigned int i, index, partLen;
index             952 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7F);
index             960 ext/hash/hash_sha.c 	partLen = 128 - index;
index             965 ext/hash/hash_sha.c 		memcpy((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             972 ext/hash/hash_sha.c 		index = 0;
index             978 ext/hash/hash_sha.c 	memcpy((unsigned char*) & context->buffer[index], (unsigned char*) & input[i], inputLen - i);
index             989 ext/hash/hash_sha.c 	unsigned int index, padLen;
index            1011 ext/hash/hash_sha.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x7f);
index            1012 ext/hash/hash_sha.c 	padLen = (index < 112) ? (112 - index) : (240 - index);
index              47 ext/hash/hash_snefru.c 	int b, index, rshift, lshift;
index              68 ext/hash/hash_snefru.c 	for (index = 0; index < 8; index++) {
index              69 ext/hash/hash_snefru.c 		t0 = tables[2*index+0];
index              70 ext/hash/hash_snefru.c 		t1 = tables[2*index+1];
index             395 ext/intl/php_intl.c 	ZEND_ARG_INFO( 0, index )
index             472 ext/intl/php_intl.c 	ZEND_ARG_INFO( 0, index )
index             233 ext/intl/resourcebundle/resourcebundle_class.c 	ZEND_ARG_INFO( 0, index )
index             189 ext/json/json.c 		ulong index, idx;
index             196 ext/json/json.c 			i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
index             204 ext/json/json.c 				if (index != idx) {
index             273 ext/json/json.c 		ulong index;
index             280 ext/json/json.c 			i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
index             336 ext/json/json.c 						smart_str_append_long(buf, (long) index);
index            1381 ext/ldap/ldap.c 	ulong index;
index            1407 ext/ldap/ldap.c 		if (zend_hash_get_current_key(Z_ARRVAL_P(entry), &attribute, &index, 0) == HASH_KEY_IS_STRING) {
index             475 ext/mbstring/oniguruma/regexec.c #define STACK_AT(index)        (stk_base + (index))
index              43 ext/mysqli/mysqli_embedded.c 	int index, rc;
index              60 ext/mysqli/mysqli_embedded.c 		for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos))	{
index              69 ext/mysqli/mysqli_embedded.c 			arguments[++index] = Z_STRVAL_PP(item);
index              81 ext/mysqli/mysqli_embedded.c 		for (index = 0;; zend_hash_move_forward_ex(HASH_OF(grps), &pos))	{
index              90 ext/mysqli/mysqli_embedded.c 			groups[++index] = Z_STRVAL_PP(item);
index              92 ext/mysqli/mysqli_embedded.c 		groups[index] = NULL;
index              58 ext/mysqli/mysqli_report.c 	char index[15];
index              61 ext/mysqli/mysqli_report.c 		strcpy(index, "Bad index");
index              63 ext/mysqli/mysqli_report.c 		strcpy(index, "No index");
index              67 ext/mysqli/mysqli_report.c 	php_mysqli_throw_sql_exception("00000", 0 TSRMLS_CC, "%s used in query/prepared statement %s", index, query);
index             503 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             513 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             627 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             635 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             476 ext/oci8/oci8_collection.c int php_oci_collection_element_get(php_oci_collection *collection, long index, zval **result_element TSRMLS_DC)
index             496 ext/oci8/oci8_collection.c 			 (ub4)index,
index             593 ext/oci8/oci8_collection.c int php_oci_collection_element_set_null(php_oci_collection *collection, long index TSRMLS_DC)
index             600 ext/oci8/oci8_collection.c 	PHP_OCI_CALL_RETURN(errstatus, OCICollAssignElem, (connection->env, connection->err, (ub4) index, (dvoid *)"", &null_index, collection->collection));
index             614 ext/oci8/oci8_collection.c int php_oci_collection_element_set_date(php_oci_collection *collection, long index, char *date, int date_len TSRMLS_DC)
index             635 ext/oci8/oci8_collection.c 			 (ub4)index,
index             655 ext/oci8/oci8_collection.c int php_oci_collection_element_set_number(php_oci_collection *collection, long index, char *number, int number_len TSRMLS_DC)
index             677 ext/oci8/oci8_collection.c 			 (ub4) index,
index             697 ext/oci8/oci8_collection.c int php_oci_collection_element_set_string(php_oci_collection *collection, long index, char *element, int element_len TSRMLS_DC)
index             716 ext/oci8/oci8_collection.c 			 (ub4)index,
index             736 ext/oci8/oci8_collection.c int php_oci_collection_element_set(php_oci_collection *collection, long index, char *value, int value_len TSRMLS_DC)
index             739 ext/oci8/oci8_collection.c 		return php_oci_collection_element_set_null(collection, index TSRMLS_CC);
index             744 ext/oci8/oci8_collection.c 			return php_oci_collection_element_set_date(collection, index, value, value_len TSRMLS_CC);
index             748 ext/oci8/oci8_collection.c 			return php_oci_collection_element_set_string(collection, index, value, value_len TSRMLS_CC);
index             762 ext/oci8/oci8_collection.c 			return php_oci_collection_element_set_number(collection, index, value, value_len TSRMLS_CC);
index             105 ext/oci8/oci8_lob.c 		descriptor->index = (connection->descriptor_count)++;
index             112 ext/oci8/oci8_lob.c 		zend_hash_index_update(connection->descriptors,descriptor->index,&descriptor,sizeof(php_oci_descriptor *),NULL);
index             671 ext/oci8/oci8_lob.c 		zend_hash_index_del(descriptor->connection->descriptors, descriptor->index);
index             675 ext/oci8/oci8_lob.c 			if (descriptor->index + 1 == descriptor->connection->descriptor_count) {
index            1316 ext/oci8/oci8_statement.c 					ub4 index,		  /* index of current array for PL/SQL or row index for SQL */
index            1368 ext/oci8/oci8_statement.c 					ub4 index,		   /* index of current array for PL/SQL or row index for SQL */
index             168 ext/oci8/php_oci8_int.h 	ulong				 index;		            /* descriptors hash table index */
index             452 ext/oci8/php_oci8_int.h int php_oci_collection_element_get(php_oci_collection *collection, long index, zval **result_element TSRMLS_DC);
index             453 ext/oci8/php_oci8_int.h int php_oci_collection_element_set(php_oci_collection *collection, long index, char *value, int value_len TSRMLS_DC);
index             454 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_null(php_oci_collection *collection, long index TSRMLS_DC);
index             455 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_date(php_oci_collection *collection, long index, char *date, int date_len TSRMLS_DC);
index             456 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_number(php_oci_collection *collection, long index, char *number, int number_len TSRMLS_DC);
index             457 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_string(php_oci_collection *collection, long index, char *element, int element_len TSRMLS_DC);
index             481 ext/oci8/php_oci8_int.h sb4 php_oci_bind_in_callback(dvoid *ictxp, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 *alenp, ub1 *piecep, dvoid **indpp);
index             482 ext/oci8/php_oci8_int.h sb4 php_oci_bind_out_callback(dvoid *octxp, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 **alenpp, ub1 *piecep, dvoid **indpp, ub2 **rcodepp);
index              64 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              69 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              73 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              78 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              82 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              86 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              90 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              94 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index              98 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index             103 ext/odbc/birdstep.c 	ZEND_ARG_INFO(0, index)
index             233 ext/odbc/birdstep.c 	conn->index = ind;
index             261 ext/odbc/birdstep.c 	res->index = ind;
index              31 ext/odbc/php_birdstep.h 	long    index;
index              44 ext/odbc/php_birdstep.h 	long    index;
index             283 ext/opcache/Optimizer/zend_optimizer.c 					ulong index;
index             286 ext/opcache/Optimizer/zend_optimizer.c 					ZEND_HANDLE_NUMERIC_EX(Z_STRVAL_P(val), Z_STRLEN_P(val)+1, index, numeric = 1);
index             289 ext/opcache/Optimizer/zend_optimizer.c 						ZVAL_LONG(val, index);
index              77 ext/opcache/zend_accelerator_hash.c 	zend_ulong index;
index              89 ext/opcache/zend_accelerator_hash.c 	index = hash_value % accel_hash->max_num_entries;
index              92 ext/opcache/zend_accelerator_hash.c 	entry = accel_hash->hash_table[index];
index             135 ext/opcache/zend_accelerator_hash.c 	entry->next = accel_hash->hash_table[index];
index             136 ext/opcache/zend_accelerator_hash.c 	accel_hash->hash_table[index] = entry;
index             146 ext/opcache/zend_accelerator_hash.c 	zend_ulong index;
index             150 ext/opcache/zend_accelerator_hash.c 	index = hash_value % accel_hash->max_num_entries;
index             152 ext/opcache/zend_accelerator_hash.c 	entry = accel_hash->hash_table[index];
index             174 ext/opcache/zend_accelerator_hash.c 	zend_ulong index;
index             178 ext/opcache/zend_accelerator_hash.c 	index = hash_value % accel_hash->max_num_entries;
index             180 ext/opcache/zend_accelerator_hash.c 	entry = accel_hash->hash_table[index];
index             199 ext/opcache/zend_accelerator_hash.c     zend_ulong index;
index             203 ext/opcache/zend_accelerator_hash.c 	index = hash_value % accel_hash->max_num_entries;
index             205 ext/opcache/zend_accelerator_hash.c 	entry = accel_hash->hash_table[index];
index             216 ext/opcache/zend_accelerator_hash.c 				accel_hash->hash_table[index] = entry->next;
index             665 ext/openssl/xp_ssl.c 			int index, cert_name_utf8_len;
index             669 ext/openssl/xp_ssl.c 			index = X509_NAME_get_index_by_NID(cert_name, NID_commonName, -1);
index             670 ext/openssl/xp_ssl.c 			if (index < 0) {
index             677 ext/openssl/xp_ssl.c 			cert_name_utf8_len = PHP_X509_NAME_ENTRY_TO_UTF8(cert_name, index, cert_name_utf8);
index            7339 ext/pcre/pcrelib/pcre_compile.c           unsigned int index = i;
index            7355 ext/pcre/pcrelib/pcre_compile.c             PUT2INC(code, 0, index);
index             314 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 	sljit_si index;
index             336 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 			if ((sljit_uw)curr_patch->index == cpool_current_index) {
index             362 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 			curr_patch->index = value;
index            9504 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c   int index = 0;
index            9508 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c     unsigned short bitspec = table[index];
index            9512 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c     unsigned short next = table[index + 1 + bitfield];
index            9516 ext/pcre/pcrelib/sljit/sljitNativeTILEGX-encoder.c     index = next - TILEGX_OPC_NONE;
index             467 ext/pdo_firebird/firebird_statement.c 		long *index;
index             470 ext/pdo_firebird/firebird_statement.c 		if (SUCCESS == zend_hash_find(S->named_params, param->name, param->namelen+1, (void*)&index)) {
index             471 ext/pdo_firebird/firebird_statement.c 			param->paramno = *index;
index             187 ext/pdo_oci/oci_statement.c static sb4 oci_bind_input_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 *alenp, ub1 *piecep, dvoid **indpp) /* {{{ */
index             219 ext/pdo_oci/oci_statement.c static sb4 oci_bind_output_cb(dvoid *ctx, OCIBind *bindp, ub4 iter, ub4 index, dvoid **bufpp, ub4 **alenpp, ub1 *piecep, dvoid **indpp, ub2 **rcodepp) /* {{{ */
index             959 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *stub, *error;
index             963 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|pp", &index, &index_len, &webindex, &webindex_len) == FAILURE) {
index             967 ext/phar/phar_object.c 	stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC);
index            2959 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *error = NULL, *stub = NULL;
index            2975 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s!s", &index, &index_len, &webindex, &webindex_len) == FAILURE) {
index            2991 ext/phar/phar_object.c 		stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC);
index            5116 ext/phar/phar_object.c 	ZEND_ARG_INFO(0, index)
index            5157 ext/phar/phar_object.c 	ZEND_ARG_INFO(0, index)
index             505 ext/readline/readline_cli.c static char *cli_completion_generator(const char *text, int index) /* {{{ */
index             520 ext/readline/readline_cli.c 	if (!index) {
index             589 ext/reflection/php_reflection.c 				ulong index;
index             591 ext/reflection/php_reflection.c 				if (zend_hash_get_current_key_ex(properties, &prop_name, &prop_name_size, &index, 1, &pos) == HASH_KEY_IS_STRING) {
index            2061 ext/soap/php_encoding.c 				ulong index;
index            2065 ext/soap/php_encoding.c 				key_type = zend_hash_get_current_key_ex(prop, &str_key, &str_key_len, &index, FALSE, NULL);
index            2168 ext/soap/php_schema.c 							ulong index;
index            2171 ext/soap/php_schema.c 							zend_hash_get_current_key((*tmp)->attributes, NULL, &index, 0);
index            2172 ext/soap/php_schema.c 							zend_hash_index_del((*tmp)->attributes, index);
index            2279 ext/soap/php_schema.c 				ulong index;
index            2282 ext/soap/php_schema.c 				zend_hash_get_current_key(type->attributes, NULL, &index, 0);
index            2283 ext/soap/php_schema.c 				zend_hash_index_del(type->attributes, index);
index            1806 ext/soap/php_sdl.c 	ulong index;
index            1808 ext/soap/php_sdl.c 	if (zend_hash_get_current_key_ex(ht, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            2447 ext/soap/php_sdl.c 	ulong index;
index            2484 ext/soap/php_sdl.c 		if (zend_hash_get_current_key_ex(headers, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            2515 ext/soap/php_sdl.c 	ulong index;
index            2545 ext/soap/php_sdl.c 		if (zend_hash_get_current_key_ex(params, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            2562 ext/soap/php_sdl.c 	ulong index;
index            2594 ext/soap/php_sdl.c 		if (zend_hash_get_current_key_ex(faults, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            2611 ext/soap/php_sdl.c 	ulong index;
index            2649 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(attr->extraAttributes, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {			
index            2723 ext/soap/php_sdl.c 	ulong index;
index            2811 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(type->elements, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            2830 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(type->attributes, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            2957 ext/soap/php_sdl.c 	ulong index;
index            2985 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(sdl->groups, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            3005 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(sdl->types, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            3025 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(sdl->elements, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            3045 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(sdl->encoders, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            3092 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(sdl->bindings, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            3110 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(&sdl->functions, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index            3133 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(sdl->requests, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {
index              57 ext/soap/soap.c static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int);
index              64 ext/soap/soap.c static xmlNodePtr serialize_parameter(sdlParamPtr param,zval *param_val,int index,char *name, int style, xmlNodePtr parent TSRMLS_DC);
index            1019 ext/soap/soap.c 			ulong index;
index            1021 ext/soap/soap.c 			zend_hash_get_current_key_ex(ht2, &name, &name_len, &index, 0, &pos2);
index            4422 ext/soap/soap.c static xmlNodePtr serialize_parameter(sdlParamPtr param, zval *param_val, int index, char *name, int style, xmlNodePtr parent TSRMLS_DC)
index            4447 ext/soap/soap.c 			snprintf(paramName, sizeof(paramNameBuf), "param%d",index);
index            4487 ext/soap/soap.c static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int response)
index            4521 ext/soap/soap.c 		if (zend_hash_index_find(ht, index, (void **)&tmp) != FAILURE) {
index             308 ext/spl/spl_array.c 	long index;
index             353 ext/spl/spl_array.c 			index = (long)Z_DVAL_P(offset);
index             355 ext/spl/spl_array.c 			index = Z_LVAL_P(offset);
index             357 ext/spl/spl_array.c 		if (zend_hash_index_find(ht, index, (void **) &retval) == FAILURE) {
index             360 ext/spl/spl_array.c 					zend_error(E_NOTICE, "Undefined offset: %ld", index);
index             366 ext/spl/spl_array.c 					zend_error(E_NOTICE, "Undefined offset: %ld", index);
index             370 ext/spl/spl_array.c 					zend_hash_index_update(ht, index, (void**)&value, sizeof(void*), (void **)&retval);
index             440 ext/spl/spl_array.c 	long index;
index             484 ext/spl/spl_array.c 			index = (long)Z_DVAL_P(offset);
index             486 ext/spl/spl_array.c 			index = Z_LVAL_P(offset);
index             489 ext/spl/spl_array.c 		zend_hash_index_update(ht, index, (void**)&value, sizeof(void*), NULL);
index             514 ext/spl/spl_array.c 	long index;
index             573 ext/spl/spl_array.c 			index = (long)Z_DVAL_P(offset);
index             575 ext/spl/spl_array.c 			index = Z_LVAL_P(offset);
index             582 ext/spl/spl_array.c 		if (zend_hash_index_del(ht, index) == FAILURE) {
index             601 ext/spl/spl_array.c 	long index;
index             644 ext/spl/spl_array.c 					index = (long)Z_DVAL_P(offset);
index             646 ext/spl/spl_array.c 					index = Z_LVAL_P(offset);
index             648 ext/spl/spl_array.c 				if (zend_hash_index_find(ht, index, (void **)&tmp) != FAILURE) {
index             704 ext/spl/spl_array.c 	zval *index;
index             705 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &index) == FAILURE) {
index             708 ext/spl/spl_array.c 	RETURN_BOOL(spl_array_has_dimension_ex(0, getThis(), index, 2 TSRMLS_CC));
index             716 ext/spl/spl_array.c 	zval *index, *value;
index             717 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &index) == FAILURE) {
index             720 ext/spl/spl_array.c 	value = spl_array_read_dimension_ex(0, getThis(), index, BP_VAR_R TSRMLS_CC);
index             729 ext/spl/spl_array.c 	zval *index, *value;
index             730 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zz", &index, &value) == FAILURE) {
index             733 ext/spl/spl_array.c 	spl_array_write_dimension_ex(0, getThis(), index, value TSRMLS_CC);
index             775 ext/spl/spl_array.c 	zval *index;
index             776 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &index) == FAILURE) {
index             779 ext/spl/spl_array.c 	spl_array_unset_dimension_ex(0, getThis(), index TSRMLS_CC);
index            1857 ext/spl/spl_array.c 	ZEND_ARG_INFO(0, index)
index            1861 ext/spl/spl_array.c 	ZEND_ARG_INFO(0, index)
index             257 ext/spl/spl_directory.c 	intern->u.dir.index = 0;
index             341 ext/spl/spl_directory.c 	int index, skip_dots;
index             362 ext/spl/spl_directory.c 		for(index = 0; index < source->u.dir.index; ++index) {
index             367 ext/spl/spl_directory.c 		intern->u.dir.index = index;
index             759 ext/spl/spl_directory.c 	intern->u.dir.index = 0;
index             778 ext/spl/spl_directory.c 		RETURN_LONG(intern->u.dir.index);
index             807 ext/spl/spl_directory.c 	intern->u.dir.index++;
index             830 ext/spl/spl_directory.c 	if (intern->u.dir.index > pos) {
index             839 ext/spl/spl_directory.c 	while (intern->u.dir.index < pos) {
index            1452 ext/spl/spl_directory.c 	intern->u.dir.index = 0;
index            1715 ext/spl/spl_directory.c 	ZVAL_LONG(key, object->u.dir.index);
index            1724 ext/spl/spl_directory.c 	object->u.dir.index++;
index            1738 ext/spl/spl_directory.c 	object->u.dir.index = 0;
index            1808 ext/spl/spl_directory.c 	object->u.dir.index++;
index            1829 ext/spl/spl_directory.c 	object->u.dir.index = 0;
index              81 ext/spl/spl_directory.h 			int                index;
index             767 ext/spl/spl_dllist.c 	long               index;
index             774 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex TSRMLS_CC);
index             776 ext/spl/spl_dllist.c 	RETURN_BOOL(index >= 0 && index < intern->llist->count);
index             784 ext/spl/spl_dllist.c 	long                   index;
index             793 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex TSRMLS_CC);
index             795 ext/spl/spl_dllist.c 	if (index < 0 || index >= intern->llist->count) {
index             800 ext/spl/spl_dllist.c 	element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index             830 ext/spl/spl_dllist.c 		long                   index;
index             833 ext/spl/spl_dllist.c 		index = spl_offset_convert_to_long(zindex TSRMLS_CC);
index             835 ext/spl/spl_dllist.c 		if (index < 0 || index >= intern->llist->count) {
index             841 ext/spl/spl_dllist.c 		element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index             871 ext/spl/spl_dllist.c 	long                   index;
index             881 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex TSRMLS_CC);
index             884 ext/spl/spl_dllist.c 	if (index < 0 || index >= intern->llist->count) {
index             889 ext/spl/spl_dllist.c 	element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index            1248 ext/spl/spl_dllist.c 	long                  index;
index            1255 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex TSRMLS_CC);
index            1257 ext/spl/spl_dllist.c 	if (index < 0 || index > intern->llist->count) {
index            1263 ext/spl/spl_dllist.c 	if (index == intern->llist->count) {
index            1271 ext/spl/spl_dllist.c 		element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index            1345 ext/spl/spl_dllist.c 	ZEND_ARG_INFO(0, index)
index            1349 ext/spl/spl_dllist.c 	ZEND_ARG_INFO(0, index)
index             346 ext/spl/spl_fixedarray.c 	long index;
index             356 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
index             358 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             361 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             364 ext/spl/spl_fixedarray.c 	} else if(!intern->array->elements[index]) {
index             367 ext/spl/spl_fixedarray.c 		return &intern->array->elements[index];
index             407 ext/spl/spl_fixedarray.c 	long index;
index             416 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
index             418 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             421 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             425 ext/spl/spl_fixedarray.c 		if (intern->array->elements[index]) {
index             426 ext/spl/spl_fixedarray.c 			zval_ptr_dtor(&(intern->array->elements[index]));
index             429 ext/spl/spl_fixedarray.c 		intern->array->elements[index] = value;
index             459 ext/spl/spl_fixedarray.c 	long index;
index             462 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
index             464 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             467 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             471 ext/spl/spl_fixedarray.c 		if (intern->array->elements[index]) {
index             472 ext/spl/spl_fixedarray.c 			zval_ptr_dtor(&(intern->array->elements[index]));
index             474 ext/spl/spl_fixedarray.c 		intern->array->elements[index] = NULL;
index             499 ext/spl/spl_fixedarray.c 	long index;
index             503 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset TSRMLS_CC);
index             505 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             508 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             511 ext/spl/spl_fixedarray.c 		if (!intern->array->elements[index]) {
index             514 ext/spl/spl_fixedarray.c 			if (zend_is_true(intern->array->elements[index])) {
index             621 ext/spl/spl_fixedarray.c 		int index = 0;
index             629 ext/spl/spl_fixedarray.c 			intern->array->elements[index++] = *data;
index            1097 ext/spl/spl_fixedarray.c 	ZEND_ARG_INFO(0, index)
index            1101 ext/spl/spl_fixedarray.c 	ZEND_ARG_INFO(0, index)
index             218 ext/spl/spl_iterators.c 		ZVAL_LONG(key, iter->index);
index            3076 ext/spl/spl_iterators.c 	ZEND_ARG_INFO(0, index)
index            3080 ext/spl/spl_iterators.c 	ZEND_ARG_INFO(0, index)
index            3559 ext/spl/spl_iterators.c 	iter->index = 0;
index            3574 ext/spl/spl_iterators.c 		iter->index++;
index              85 ext/spl/spl_observer.c 	long              index;
index             257 ext/spl/spl_observer.c 	intern->index = 0;
index             469 ext/spl/spl_observer.c 	intern->index = 0;
index             561 ext/spl/spl_observer.c 	intern->index = 0;
index             590 ext/spl/spl_observer.c 	intern->index = 0;
index             649 ext/spl/spl_observer.c 	intern->index = 0;
index             675 ext/spl/spl_observer.c 	RETURN_LONG(intern->index);
index             743 ext/spl/spl_observer.c 	intern->index++;
index            1862 ext/standard/array.c 	ulong index;
index            1882 ext/standard/array.c 	zend_hash_get_current_key_ex(Z_ARRVAL_P(stack), &key, &key_len, &index, 0, NULL);
index            1886 ext/standard/array.c 		zend_hash_del_key_or_index(Z_ARRVAL_P(stack), key, key_len, index, (key) ? HASH_DEL_KEY : HASH_DEL_INDEX);
index            1892 ext/standard/array.c 	} else if (!key_len && Z_ARRVAL_P(stack)->nNextFreeElement > 0 && index >= Z_ARRVAL_P(stack)->nNextFreeElement - 1) {
index             443 ext/standard/proc_open.c 	int index; 							/* desired fd number in child process */
index             555 ext/standard/proc_open.c 		descriptors[ndesc].index = nindex;
index             733 ext/standard/proc_open.c 		switch(descriptors[i].index) {
index             866 ext/standard/proc_open.c 			if (dup2(descriptors[i].childend, descriptors[i].index) < 0)
index             868 ext/standard/proc_open.c 			if (descriptors[i].childend != descriptors[i].index)
index             979 ext/standard/proc_open.c 					add_index_zval(pipes, descriptors[i].index, retfp);
index             186 ext/standard/sha1.c 	unsigned int i, index, partLen;
index             189 ext/standard/sha1.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             197 ext/standard/sha1.c 	partLen = 64 - index;
index             203 ext/standard/sha1.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             209 ext/standard/sha1.c 		index = 0;
index             215 ext/standard/sha1.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
index             227 ext/standard/sha1.c 	unsigned int index, padLen;
index             241 ext/standard/sha1.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             242 ext/standard/sha1.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index             636 ext/standard/var.c 		ulong index;
index             648 ext/standard/var.c 			i = zend_hash_get_current_key_ex(HASH_OF(retval_ptr), &key, NULL, &index, 0, &pos);
index             851 ext/standard/var.c 				ulong index;
index             857 ext/standard/var.c 					i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
index             867 ext/standard/var.c 							php_var_serialize_long(buf, index);
index              47 ext/xml/php_xml.h 	int index;
index             170 ext/xml/xml.c  	ZEND_ARG_INFO(1, index)
index             786 ext/xml/xml.c  			args[0] = _xml_resource_zval(parser->index);
index             871 ext/xml/xml.c  			args[0] = _xml_resource_zval(parser->index);
index             921 ext/xml/xml.c  			args[0] = _xml_resource_zval(parser->index);
index            1021 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1039 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1061 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1086 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1111 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1136 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1154 ext/xml/xml.c  		args[0] = _xml_resource_zval(parser->index);
index            1219 ext/xml/xml.c  	parser->index = Z_LVAL_P(return_value);
index            1606 ext/xml/xml.c  	if (zend_list_delete(parser->index) == FAILURE) {
index            1180 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, index)
index            1204 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, index)
index             114 ext/xmlrpc/libxmlrpc/queue.c static  void        **index;
index             786 ext/xmlrpc/libxmlrpc/queue.c       free(index);
index             793 ext/xmlrpc/libxmlrpc/queue.c    index = malloc(q->size * sizeof(q->cursor->data));
index             794 ext/xmlrpc/libxmlrpc/queue.c    if(index == NULL)
index             799 ext/xmlrpc/libxmlrpc/queue.c       free(index);
index             807 ext/xmlrpc/libxmlrpc/queue.c       index[i] = d;
index             814 ext/xmlrpc/libxmlrpc/queue.c    QuickSort(index, 0, q->size - 1, Comp);
index             821 ext/xmlrpc/libxmlrpc/queue.c       dn->data = index[i++];
index             863 ext/xmlrpc/libxmlrpc/queue.c       val = Comp(key, index[ mid ]);
index             917 ext/xmlrpc/libxmlrpc/queue.c    return index[idx];
index             347 ext/xmlrpc/xmlrpc-epi-php.c 				long index = strtol(id, NULL, 0);
index             348 ext/xmlrpc/xmlrpc-epi-php.c 				return zend_hash_index_update(Z_ARRVAL_P(list), index, (void *) val, sizeof(zval **), NULL);
index             235 ext/zip/lib/zip.h     zip_uint64_t index;			/* index within archive */
index              45 ext/zip/lib/zip_fopen_index.c zip_fopen_index(struct zip *za, zip_uint64_t index, zip_flags_t flags)
index              47 ext/zip/lib/zip_fopen_index.c     return zip_fopen_index_encrypted(za, index, flags, za->default_password);
index              47 ext/zip/lib/zip_fopen_index_encrypted.c zip_fopen_index_encrypted(struct zip *za, zip_uint64_t index, zip_flags_t flags,
index              53 ext/zip/lib/zip_fopen_index_encrypted.c     if ((src=_zip_source_zip_new(za, za, index, flags, 0, 0, password)) == NULL)
index              41 ext/zip/lib/zip_stat_index.c zip_stat_index(struct zip *za, zip_uint64_t index, zip_flags_t flags,
index              47 ext/zip/lib/zip_stat_index.c     if ((de=_zip_get_dirent(za, index, flags, NULL)) == NULL)
index              50 ext/zip/lib/zip_stat_index.c     if ((name=zip_get_name(za, index, flags)) == NULL)
index              55 ext/zip/lib/zip_stat_index.c 	&& ZIP_ENTRY_DATA_CHANGED(za->entry+index)) {
index              56 ext/zip/lib/zip_stat_index.c 	if (zip_source_stat(za->entry[index].source, st) < 0) {
index              83 ext/zip/lib/zip_stat_index.c     st->index = index;
index              45 ext/zip/lib/zip_stat_init.c     st->index = ZIP_UINT64_MAX;
index              79 ext/zip/php_zip.c #define PHP_ZIP_STAT_INDEX(za, index, flags, sb) \
index              80 ext/zip/php_zip.c 	if (zip_stat_index(za, index, flags, &sb) != 0) { \
index              97 ext/zip/php_zip.c #define PHP_ZIP_SET_FILE_COMMENT(za, index, comment, comment_len) \
index             100 ext/zip/php_zip.c 		if (zip_set_file_comment(intern, index, NULL, 0) < 0) { \
index             103 ext/zip/php_zip.c 	} else if (zip_set_file_comment(intern, index, comment, comment_len) < 0) { \
index             441 ext/zip/php_zip.c 		add_ascii_assoc_long(return_value, "index", (long) (sb)->index); \
index            1979 ext/zip/php_zip.c 	long index, flags = 0;
index            1990 ext/zip/php_zip.c 			&index, &flags) == FAILURE) {
index            1994 ext/zip/php_zip.c 	if (zip_stat_index(intern, index, flags, &sb) != 0) {
index            2043 ext/zip/php_zip.c 	long flags = 0, index = 0;
index            2052 ext/zip/php_zip.c 			&index, &flags) == FAILURE) {
index            2056 ext/zip/php_zip.c 	name = zip_get_name(intern, (int) index, flags);
index            2159 ext/zip/php_zip.c 	long index;
index            2171 ext/zip/php_zip.c 			&index, &comment, &comment_len) == FAILURE) {
index            2175 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2176 ext/zip/php_zip.c 	PHP_ZIP_SET_FILE_COMMENT(intern, index, comment, comment_len);
index            2227 ext/zip/php_zip.c 	long index, flags=0, opsys, attr;
index            2237 ext/zip/php_zip.c 			&index, &opsys, &attr, &flags) == FAILURE) {
index            2241 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2242 ext/zip/php_zip.c 	if (zip_file_set_external_attributes(intern, (zip_uint64_t)index,
index            2300 ext/zip/php_zip.c 	long index, flags=0;
index            2312 ext/zip/php_zip.c 			&index, &z_opsys, &z_attr, &flags) == FAILURE) {
index            2316 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2317 ext/zip/php_zip.c 	if (zip_file_get_external_attributes(intern, (zip_uint64_t)index,
index            2373 ext/zip/php_zip.c 	long index, flags = 0;
index            2385 ext/zip/php_zip.c 				&index, &flags) == FAILURE) {
index            2389 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2390 ext/zip/php_zip.c 	comment = zip_get_file_comment(intern, index, &comment_len, (int)flags);
index            2401 ext/zip/php_zip.c 	long index;
index            2409 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &index) == FAILURE) {
index            2413 ext/zip/php_zip.c 	if (index < 0) {
index            2417 ext/zip/php_zip.c 	if (zip_delete(intern, index) < 0) {
index            2449 ext/zip/php_zip.c 	if (zip_delete(intern, sb.index)) {
index            2465 ext/zip/php_zip.c 	long index;
index            2473 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ls", &index, &new_name, &new_name_len) == FAILURE) {
index            2477 ext/zip/php_zip.c 	if (index < 0) {
index            2485 ext/zip/php_zip.c 	if (zip_rename(intern, index, (const char *)new_name) != 0) {
index            2519 ext/zip/php_zip.c 	if (zip_rename(intern, sb.index, (const char *)new_name)) {
index            2532 ext/zip/php_zip.c 	long index;
index            2540 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &index) == FAILURE) {
index            2544 ext/zip/php_zip.c 	if (index < 0) {
index            2548 ext/zip/php_zip.c 	if (zip_unchange(intern, index) != 0) {
index            2582 ext/zip/php_zip.c 	if (zip_unchange(intern, sb.index) != 0) {
index            2734 ext/zip/php_zip.c 	long index = -1;
index            2753 ext/zip/php_zip.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|ll", &index, &len, &flags) == FAILURE) {
index            2756 ext/zip/php_zip.c 		PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2766 ext/zip/php_zip.c 	if (index >= 0) {
index            2767 ext/zip/php_zip.c 		zf = zip_fopen_index(intern, index, flags);
index            2888 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2897 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2907 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2912 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2922 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2941 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2968 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2982 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index              63 main/php_variables.c 	char *index;
index             124 main/php_variables.c 	index = var;
index             167 main/php_variables.c 					if (index) {
index             168 main/php_variables.c 						index_len = strlen(index);
index             177 main/php_variables.c 			if (!index) {
index             187 main/php_variables.c 				if (zend_symtable_find(symtable1, index, index_len + 1, (void **) &gpc_element_p) == FAILURE
index             191 main/php_variables.c 					zend_symtable_update(symtable1, index, index_len + 1, &gpc_element, sizeof(zval *), (void **) &gpc_element_p);
index             196 main/php_variables.c 			index = index_s;
index             212 main/php_variables.c 		if (!index) {
index             225 main/php_variables.c 				zend_symtable_exists(symtable1, index, index_len + 1)) {
index             228 main/php_variables.c 				zend_symtable_update(symtable1, index, index_len + 1, &gpc_element, sizeof(zval *), (void **) &gpc_element_p);
index              95 main/rfc1867.c 	char *s = varname, *index = NULL, *indexend = NULL, *p;
index             117 main/rfc1867.c 	index = strchr(varname, '[');
index             118 main/rfc1867.c 	if (index) {
index             119 main/rfc1867.c 		index++;
index             120 main/rfc1867.c 		s = index;
index             126 main/rfc1867.c 	while (index) {
index             127 main/rfc1867.c 		while (*index == ' ' || *index == '\r' || *index == '\n' || *index=='\t') {
index             128 main/rfc1867.c 			index++;
index             130 main/rfc1867.c 		indexend = strchr(index, ']');
index             131 main/rfc1867.c 		indexend = indexend ? indexend + 1 : index + strlen(index);
index             133 main/rfc1867.c 		if (s != index) {
index             134 main/rfc1867.c 			memmove(s, index, strlen(index)+1);
index             135 main/rfc1867.c 			s += indexend-index;
index             142 main/rfc1867.c 			index = s;
index             144 main/rfc1867.c 			index = NULL;
index              42 main/streams/glob_wrapper.c 	size_t   index;
index             148 main/streams/glob_wrapper.c 		if (pglob->index < (size_t)pglob->glob.gl_pathc) {
index             149 main/streams/glob_wrapper.c 			php_glob_stream_path_split(pglob, pglob->glob.gl_pathv[pglob->index++], pglob->flags & GLOB_APPEND, &path TSRMLS_CC);
index             153 main/streams/glob_wrapper.c 		pglob->index = pglob->glob.gl_pathc;
index             169 main/streams/glob_wrapper.c 		pglob->index = 0;
index             188 main/streams/glob_wrapper.c 		pglob->index = 0;
index             126 main/streams/streams.c 				ulong index = -1; /* intentional */
index             136 main/streams/streams.c 							&index, 0, &pos);
index             143 main/streams/streams.c 				if (index == -1) { /* not found in regular list */
index             148 main/streams/streams.c 					(*stream)->rsrc_id = index;
index             436 sapi/aolserver/aolserver.c 	int index;
index             456 sapi/aolserver/aolserver.c 	index = Ns_SetIFind(NSG(conn)->headers, "content-type");
index             457 sapi/aolserver/aolserver.c 	SG(request_info).content_type = index == -1 ? NULL : 
index             458 sapi/aolserver/aolserver.c 		Ns_SetValue(NSG(conn)->headers, index);
index            1042 sapi/cli/php_cli.c 				size_t len, index = 0;
index            1052 sapi/cli/php_cli.c 				Z_LVAL_P(argi) = index;
index            1066 sapi/cli/php_cli.c 					Z_LVAL_P(argi) = ++index;
index             335 sapi/cli/php_http_parser.c   uint32_t index = parser->index;
index             415 sapi/cli/php_http_parser.c           index = 2;
index             580 sapi/cli/php_http_parser.c         index = 1;
index             609 sapi/cli/php_http_parser.c           if (parser->method != PHP_HTTP_NOT_IMPLEMENTED && matcher[index] != '\0') {
index             613 sapi/cli/php_http_parser.c         } else if (parser->method == PHP_HTTP_NOT_IMPLEMENTED || ch == matcher[index]) {
index             616 sapi/cli/php_http_parser.c           if (index == 1 && ch == 'H') {
index             618 sapi/cli/php_http_parser.c           } else if (index == 2  && ch == 'P') {
index             624 sapi/cli/php_http_parser.c           if (index == 1 && ch == 'O') {
index             626 sapi/cli/php_http_parser.c           } else if (index == 3 && ch == 'A') {
index             628 sapi/cli/php_http_parser.c           } else if (index == 1 && ch == 'E') {
index             630 sapi/cli/php_http_parser.c           } else if (index == 1 && ch == '-') {
index             632 sapi/cli/php_http_parser.c           } else if (index == 2 && ch == 'A') {
index             637 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'R') {
index             639 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'U') {
index             641 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'A') {
index             643 sapi/cli/php_http_parser.c         } else if (index == 2 && parser->method == PHP_HTTP_UNLOCK && ch == 'S') {
index             645 sapi/cli/php_http_parser.c         } else if (index == 4 && parser->method == PHP_HTTP_PROPFIND && ch == 'P') {
index             651 sapi/cli/php_http_parser.c         ++index;
index            1051 sapi/cli/php_http_parser.c         index = 0;
index            1088 sapi/cli/php_http_parser.c               index++;
index            1093 sapi/cli/php_http_parser.c               index++;
index            1098 sapi/cli/php_http_parser.c               index++;
index            1115 sapi/cli/php_http_parser.c               index++;
index            1116 sapi/cli/php_http_parser.c               if (index > sizeof(CONNECTION)-1
index            1117 sapi/cli/php_http_parser.c                   || c != CONNECTION[index]) {
index            1119 sapi/cli/php_http_parser.c               } else if (index == sizeof(CONNECTION)-2) {
index            1127 sapi/cli/php_http_parser.c               index++;
index            1128 sapi/cli/php_http_parser.c               if (index > sizeof(PROXY_CONNECTION)-1
index            1129 sapi/cli/php_http_parser.c                   || c != PROXY_CONNECTION[index]) {
index            1131 sapi/cli/php_http_parser.c               } else if (index == sizeof(PROXY_CONNECTION)-2) {
index            1139 sapi/cli/php_http_parser.c               index++;
index            1140 sapi/cli/php_http_parser.c               if (index > sizeof(CONTENT_LENGTH)-1
index            1141 sapi/cli/php_http_parser.c                   || c != CONTENT_LENGTH[index]) {
index            1143 sapi/cli/php_http_parser.c               } else if (index == sizeof(CONTENT_LENGTH)-2) {
index            1151 sapi/cli/php_http_parser.c               index++;
index            1152 sapi/cli/php_http_parser.c               if (index > sizeof(TRANSFER_ENCODING)-1
index            1153 sapi/cli/php_http_parser.c                   || c != TRANSFER_ENCODING[index]) {
index            1155 sapi/cli/php_http_parser.c               } else if (index == sizeof(TRANSFER_ENCODING)-2) {
index            1163 sapi/cli/php_http_parser.c               index++;
index            1164 sapi/cli/php_http_parser.c               if (index > sizeof(UPGRADE)-1
index            1165 sapi/cli/php_http_parser.c                   || c != UPGRADE[index]) {
index            1167 sapi/cli/php_http_parser.c               } else if (index == sizeof(UPGRADE)-2) {
index            1214 sapi/cli/php_http_parser.c         index = 0;
index            1303 sapi/cli/php_http_parser.c             index++;
index            1304 sapi/cli/php_http_parser.c             if (index > sizeof(CHUNKED)-1
index            1305 sapi/cli/php_http_parser.c                 || c != CHUNKED[index]) {
index            1307 sapi/cli/php_http_parser.c             } else if (index == sizeof(CHUNKED)-2) {
index            1314 sapi/cli/php_http_parser.c             index++;
index            1315 sapi/cli/php_http_parser.c             if (index > sizeof(KEEP_ALIVE)-1
index            1316 sapi/cli/php_http_parser.c                 || c != KEEP_ALIVE[index]) {
index            1318 sapi/cli/php_http_parser.c             } else if (index == sizeof(KEEP_ALIVE)-2) {
index            1325 sapi/cli/php_http_parser.c             index++;
index            1326 sapi/cli/php_http_parser.c             if (index > sizeof(CLOSE)-1 || c != CLOSE[index]) {
index            1328 sapi/cli/php_http_parser.c             } else if (index == sizeof(CLOSE)-2) {
index            1571 sapi/cli/php_http_parser.c   parser->index = index;
index             119 sapi/cli/php_http_parser.h   unsigned char index;
index             217 sapi/fpm/fpm/events/devpoll.c 	ev->index = ev->fd;
index             242 sapi/fpm/fpm/events/devpoll.c 	ev->index = -1;
index             182 sapi/fpm/fpm/events/epoll.c 	ev->index = ev->fd;
index             210 sapi/fpm/fpm/events/epoll.c 	ev->index = -1;
index             178 sapi/fpm/fpm/events/kqueue.c 	ev->index = ev->fd;
index             203 sapi/fpm/fpm/events/kqueue.c 	ev->index = -1;
index             161 sapi/fpm/fpm/events/poll.c 			if (q->ev && q->ev->index >= 0 && q->ev->index < npollfds && q->ev->fd == active_pollfds[q->ev->index].fd) {
index             164 sapi/fpm/fpm/events/poll.c 				if (active_pollfds[q->ev->index].revents & POLLIN) {
index             197 sapi/fpm/fpm/events/poll.c 		ev->index = next_free_slot++;
index             216 sapi/fpm/fpm/events/poll.c 		ev->index = next_free_slot++;
index             236 sapi/fpm/fpm/events/poll.c 	if (ev->index >= 0 && ev->index < npollfds && pollfds[ev->index].fd == ev->fd) {
index             238 sapi/fpm/fpm/events/poll.c 		next_free_slot = ev->index;
index             241 sapi/fpm/fpm/events/poll.c 		pollfds[ev->index].fd = -1;
index             242 sapi/fpm/fpm/events/poll.c 		pollfds[ev->index].events = 0;
index             245 sapi/fpm/fpm/events/poll.c 		ev->index = -1;
index             266 sapi/fpm/fpm/events/poll.c 		ev->index = -1;
index             271 sapi/fpm/fpm/events/poll.c 	zlog(ZLOG_ERROR, "poll: unable to remove event: not found (fd=%d, index=%d)", ev->fd, ev->index);
index             153 sapi/fpm/fpm/events/select.c 		ev->index = ev->fd;
index             168 sapi/fpm/fpm/events/select.c 		ev->index = -1;
index             494 sapi/fpm/fpm/fpm_events.c 	ev->index = -1;
index             529 sapi/fpm/fpm/fpm_events.c 	if (ev->index >= 0 && fpm_event_queue_del(&fpm_event_queue_fd, ev) != 0) {
index             533 sapi/fpm/fpm/fpm_events.c 	if (ev->index < 0 && fpm_event_queue_del(&fpm_event_queue_timer, ev) != 0) {
index              22 sapi/fpm/fpm/fpm_events.h 	int index;                /* index of the fd in the ufds array */
index             200 sapi/phttpd/phttpd.c     int index;
index             214 sapi/phttpd/phttpd.c     index = Ns_SetIFind(NSG(conn)->headers, "content-type");
index             215 sapi/phttpd/phttpd.c     SG(request_info).content_type = index == -1 ? NULL :
index             216 sapi/phttpd/phttpd.c         Ns_SetValue(NSG(conn)->headers, index);
index              27 win32/readdir.c 	int index;
index              40 win32/readdir.c 	index = strlen(filespec) - 1;
index              41 win32/readdir.c 	if (index >= 0 && (filespec[index] == '/' || 
index              42 win32/readdir.c 	   (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1])))))
index              43 win32/readdir.c 		filespec[index] = '\0';
index             142 win32/readdir.c 	int index;
index             155 win32/readdir.c 	index = strlen(filespec) - 1;
index             156 win32/readdir.c 	if (index >= 0 && (filespec[index] == '/' || 
index             157 win32/readdir.c 	   (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1])))))
index             158 win32/readdir.c 		filespec[index] = '\0';
index             102 win32/registry.c 					char *index;
index             109 win32/registry.c 					     zend_hash_get_current_key_ex(parent_ht, &index, &index_len, &num, 0, &pos) == HASH_KEY_IS_STRING;
index             111 win32/registry.c 						if (zend_hash_add(ht, index, index_len, tmpdata, sizeof(zval*), NULL) == SUCCESS) {
index             255 win32/registry.c 			char *index;
index             262 win32/registry.c 			     zend_hash_get_current_key_ex(ht, &index, &index_len, &num, 0, &pos) == HASH_KEY_IS_STRING;
index             264 win32/registry.c 				zend_alter_ini_entry(index, index_len, Z_STRVAL_PP(data), Z_STRLEN_PP(data), PHP_INI_USER, PHP_INI_STAGE_ACTIVATE);
index             352 win32/sendmail.c PHPAPI char *GetSMErrorText(int index)
index             354 win32/sendmail.c 	if (MIN_ERROR_INDEX <= index && index < MAX_ERROR_INDEX) {
index             355 win32/sendmail.c 		return (ErrorMessages[index]);
index             857 win32/sendmail.c 	int index = 0;
index             860 win32/sendmail.c 		if ((slen = send(sc, msg + index, len, 0)) < 1)
index             863 win32/sendmail.c 		index += slen;
index              43 win32/sendmail.h PHPAPI char *GetSMErrorText(int index);