index            1415 Zend/zend_API.c ZEND_API int add_index_long(zval *arg, zend_ulong index, zend_long n) /* {{{ */
index            1420 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1424 Zend/zend_API.c ZEND_API int add_index_null(zval *arg, zend_ulong index) /* {{{ */
index            1429 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1433 Zend/zend_API.c ZEND_API int add_index_bool(zval *arg, zend_ulong index, int b) /* {{{ */
index            1438 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1442 Zend/zend_API.c ZEND_API int add_index_resource(zval *arg, zend_ulong index, zend_resource *r) /* {{{ */
index            1447 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1451 Zend/zend_API.c ZEND_API int add_index_double(zval *arg, zend_ulong index, double d) /* {{{ */
index            1456 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1460 Zend/zend_API.c ZEND_API int add_index_str(zval *arg, zend_ulong index, zend_string *str) /* {{{ */
index            1465 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1469 Zend/zend_API.c ZEND_API int add_index_string(zval *arg, zend_ulong index, const char *str) /* {{{ */
index            1474 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1478 Zend/zend_API.c ZEND_API int add_index_stringl(zval *arg, zend_ulong index, const char *str, size_t length) /* {{{ */
index            1483 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp) ? SUCCESS : FAILURE;
index            1487 Zend/zend_API.c ZEND_API int add_index_zval(zval *arg, zend_ulong index, zval *value) /* {{{ */
index            1489 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, value) ? SUCCESS : FAILURE;
index            1591 Zend/zend_API.c ZEND_API zval *add_get_index_long(zval *arg, zend_ulong index, zend_long l) /* {{{ */
index            1596 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp);
index            1600 Zend/zend_API.c ZEND_API zval *add_get_index_double(zval *arg, zend_ulong index, double d) /* {{{ */
index            1605 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp);
index            1609 Zend/zend_API.c ZEND_API zval *add_get_index_str(zval *arg, zend_ulong index, zend_string *str) /* {{{ */
index            1614 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp);
index            1618 Zend/zend_API.c ZEND_API zval *add_get_index_string(zval *arg, zend_ulong index, const char *str) /* {{{ */
index            1623 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp);
index            1627 Zend/zend_API.c ZEND_API zval *add_get_index_stringl(zval *arg, zend_ulong index, const char *str, size_t length) /* {{{ */
index            1632 Zend/zend_API.c 	return zend_hash_index_update(Z_ARRVAL_P(arg), index, &tmp);
index             424 Zend/zend_API.h ZEND_API int add_index_zval(zval *arg, zend_ulong index, zval *value);
index             444 Zend/zend_API.h ZEND_API zval *add_get_index_str(zval *arg, zend_ulong index, zend_string *str);
index             518 Zend/zend_alloc.c 	unsigned long index;
index             521 Zend/zend_alloc.c 	if (!BitScanForward64(&index, ~bitset)) {
index             523 Zend/zend_alloc.c 	if (!BitScanForward(&index, ~bitset)) {
index             529 Zend/zend_alloc.c 	return (int)index;
index             557 Zend/zend_alloc.c 	unsigned long index;
index             560 Zend/zend_alloc.c 	if (!BitScanForward64(&index, bitset)) {
index             562 Zend/zend_alloc.c 	if (!BitScanForward(&index, bitset)) {
index             568 Zend/zend_alloc.c 	return (int)index;
index            1171 Zend/zend_alloc.c 	unsigned long index;
index            1173 Zend/zend_alloc.c 	if (!BitScanReverse(&index, (unsigned long)size)) {
index            1178 Zend/zend_alloc.c 	return (((31 - (int)index) ^ 0x1f) + 1);
index            2084 Zend/zend_builtin_functions.c 	zend_ulong index;
index            2093 Zend/zend_builtin_functions.c 		ZEND_HASH_FOREACH_KEY_VAL(&EG(regular_list), index, key, val) {
index            2096 Zend/zend_builtin_functions.c 				zend_hash_index_add_new(Z_ARRVAL_P(return_value), index, val);
index            2101 Zend/zend_builtin_functions.c 		ZEND_HASH_FOREACH_KEY_VAL(&EG(regular_list), index, key, val) {
index            2104 Zend/zend_builtin_functions.c 				zend_hash_index_add_new(Z_ARRVAL_P(return_value), index, val);
index            2116 Zend/zend_builtin_functions.c 		ZEND_HASH_FOREACH_KEY_VAL(&EG(regular_list), index, key, val) {
index            2119 Zend/zend_builtin_functions.c 				zend_hash_index_add_new(Z_ARRVAL_P(return_value), index, val);
index            2100 Zend/zend_compile.c 		zend_ulong index;
index            2102 Zend/zend_compile.c 		if (ZEND_HANDLE_NUMERIC(Z_STR(node->u.constant), index)) {
index            2104 Zend/zend_compile.c 			ZVAL_LONG(&node->u.constant, index);
index             639 Zend/zend_exceptions.c 	zend_ulong index;
index             654 Zend/zend_exceptions.c 	ZEND_HASH_FOREACH_NUM_KEY_VAL(Z_ARRVAL_P(trace), index, frame) {
index             656 Zend/zend_exceptions.c 			zend_error(E_WARNING, "Expected array for frame %pu", index);
index             580 Zend/zend_generators.c 		if (iter->index++ > 0) {
index             610 Zend/zend_generators.c 			ZVAL_LONG(&generator->key, iter->index);
index              98 Zend/zend_hash.c 	unsigned long index;
index             110 Zend/zend_hash.c 	if (BitScanReverse(&index, nSize - 1)) {
index             111 Zend/zend_hash.c 		return 0x2 << ((31 - index) ^ 0x1f);
index             200 Zend/zend_interfaces.c 	*int_key = _iter->index;
index              61 Zend/zend_iterators.h 	zend_ulong index; /* private to fe_reset/fe_fetch opcodes */
index              36 Zend/zend_list.c 	int index;
index              39 Zend/zend_list.c 	index = zend_hash_next_free_element(&EG(regular_list));
index              40 Zend/zend_list.c 	if (index == 0) {
index              41 Zend/zend_list.c 		index = 1;
index              43 Zend/zend_list.c 	ZVAL_NEW_RES(&zv, index, ptr, type);
index              44 Zend/zend_list.c 	return zend_hash_index_add_new(&EG(regular_list), index, &zv);
index            5805 Zend/zend_vm_def.h 			iter->index = 0;
index            5822 Zend/zend_vm_def.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            5954 Zend/zend_vm_def.h 			iter->index = 0;
index            5979 Zend/zend_vm_def.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            6121 Zend/zend_vm_def.h 			if (EXPECTED(++iter->index > 0)) {
index            6155 Zend/zend_vm_def.h 					ZVAL_LONG(EX_VAR(opline->result.var), iter->index);
index            6313 Zend/zend_vm_def.h 			if (++iter->index > 0) {
index            6347 Zend/zend_vm_def.h 					ZVAL_LONG(EX_VAR(opline->result.var), iter->index);
index            7499 Zend/zend_vm_def.h 			iter->index = 0;
index            3770 Zend/zend_vm_execute.h 			iter->index = 0;
index            3787 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            3916 Zend/zend_vm_execute.h 			iter->index = 0;
index            3941 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            4164 Zend/zend_vm_execute.h 			iter->index = 0;
index            12174 Zend/zend_vm_execute.h 			iter->index = 0;
index            12191 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            12321 Zend/zend_vm_execute.h 			iter->index = 0;
index            12346 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            12553 Zend/zend_vm_execute.h 			iter->index = 0;
index            15623 Zend/zend_vm_execute.h 			iter->index = 0;
index            15640 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            15772 Zend/zend_vm_execute.h 			iter->index = 0;
index            15797 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            15939 Zend/zend_vm_execute.h 			if (EXPECTED(++iter->index > 0)) {
index            15973 Zend/zend_vm_execute.h 					ZVAL_LONG(EX_VAR(opline->result.var), iter->index);
index            16131 Zend/zend_vm_execute.h 			if (++iter->index > 0) {
index            16165 Zend/zend_vm_execute.h 					ZVAL_LONG(EX_VAR(opline->result.var), iter->index);
index            16374 Zend/zend_vm_execute.h 			iter->index = 0;
index            29341 Zend/zend_vm_execute.h 			iter->index = 0;
index            29358 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            29487 Zend/zend_vm_execute.h 			iter->index = 0;
index            29512 Zend/zend_vm_execute.h 			iter->index = -1; /* will be set to 0 before using next handler */
index            29735 Zend/zend_vm_execute.h 			iter->index = 0;
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              50 ext/bcmath/libbcmath/src/num2str.c 	int  index, signch;
index              66 ext/bcmath/libbcmath/src/num2str.c 	for (index=num->n_len; index>0; index--)
index              73 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             424 ext/com_dotnet/com_saproxy.c int php_com_saproxy_create(zval *com_object, zval *proxy_out, zval *index)
index             448 ext/com_dotnet/com_saproxy.c 	ZVAL_DUP(&proxy->indices[proxy->dimensions-1], index);
index              87 ext/com_dotnet/php_com_dotnet_internal.h int php_com_saproxy_create(zval *com_object, zval *proxy_out, zval *index);
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            4528 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             161 ext/dom/dom_iterators.c 		ZVAL_LONG(key, iter->index);
index             224 ext/dom/dom_iterators.c 						basenode, (char *) objmap->ns, (char *) objmap->local, &previndex, iter->index);
index             229 ext/dom/dom_iterators.c 				curnode = php_dom_libxml_hash_iter(objmap->ht, iter->index);
index             231 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 	zend_long index;
index             213 ext/dom/namednodemap.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &id, dom_namednodemap_class_entry, &index) == FAILURE) {
index             216 ext/dom/namednodemap.c 	if (index >= 0) {
index             217 ext/dom/namednodemap.c 		if (ZEND_LONG_INT_OVFL(index)) {
index             231 ext/dom/namednodemap.c 						itemnode = php_dom_libxml_hash_iter(objmap->ht, index);
index             233 ext/dom/namednodemap.c 						itemnode = php_dom_libxml_notation_iter(objmap->ht, index);
index             241 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 	zend_long index;
index             117 ext/dom/nodelist.c 	if (zend_parse_method_parameters(ZEND_NUM_ARGS(), getThis(), "Ol", &id, dom_nodelist_class_entry, &index) == FAILURE) {
index             121 ext/dom/nodelist.c 	if (index >= 0) {
index             128 ext/dom/nodelist.c 					itemnode = php_dom_libxml_hash_iter(objmap->ht, index);
index             130 ext/dom/nodelist.c 					itemnode = php_dom_libxml_notation_iter(objmap->ht, index);
index             135 ext/dom/nodelist.c 					zval *entry = zend_hash_index_find(nodeht, index);
index             145 ext/dom/nodelist.c 							while (count < index && curnode != NULL) {
index             156 ext/dom/nodelist.c 							itemnode = dom_get_elements_by_tag_name_ns_raw(nodep, (char *) objmap->ns, (char *) objmap->local, &count, index);
index            1341 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            1345 ext/dom/php_dom.c 	while (nodep != NULL && (*cur <= index || index == -1)) {
index            1349 ext/dom/php_dom.c 					if (*cur == index) {
index            1356 ext/dom/php_dom.c 			ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index);
index             116 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             125 ext/dom/php_dom.h xmlNode *php_dom_libxml_hash_iter(xmlHashTable *ht, int index);
index             126 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             442 ext/gd/gd.c    	ZEND_ARG_INFO(0, index)
index             470 ext/gd/gd.c    	ZEND_ARG_INFO(0, index)
index            1430 ext/gd/gd.c    	int index = 0;
index            1444 ext/gd/gd.c    		stylearr[index++] = zval_get_long(item);
index            1447 ext/gd/gd.c    	gdImageSetStyle(im, stylearr, index);
index            2871 ext/gd/gd.c    	zend_long index;
index            2875 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &IM, &index) == FAILURE) {
index            2888 ext/gd/gd.c    	col = index;
index            2975 ext/gd/gd.c    	zend_long index;
index            2979 ext/gd/gd.c    	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl", &IM, &index) == FAILURE) {
index            2987 ext/gd/gd.c    	col = index;
index            2748 ext/gd/libgd/gd.c 			int index;
index            2749 ext/gd/libgd/gd.c 			index = gdImageColorResolveAlpha(im, gdImageRed(brush, i), gdImageGreen(brush, i), gdImageBlue(brush, i), gdImageAlpha(brush, i));
index            2750 ext/gd/libgd/gd.c 			im->brushColorMap[i] = index;
index            2761 ext/gd/libgd/gd.c 			int index;
index            2762 ext/gd/libgd/gd.c 			index = gdImageColorResolveAlpha(im, gdImageRed(tile, i), gdImageGreen(tile, i), gdImageBlue(tile, i), gdImageAlpha(tile, i));
index            2763 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             122 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, index)
index             128 ext/gmp/gmp.c  	ZEND_ARG_INFO(0, index)
index            1943 ext/gmp/gmp.c  	zend_long index;
index            1947 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ol|b", &a_arg, gmp_ce, &index, &set) == FAILURE) {
index            1951 ext/gmp/gmp.c  	if (index < 0) {
index            1959 ext/gmp/gmp.c  		mpz_setbit(gmpnum_a, index);
index            1961 ext/gmp/gmp.c  		mpz_clrbit(gmpnum_a, index);
index            1971 ext/gmp/gmp.c  	zend_long index;
index            1974 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ol", &a_arg, gmp_ce, &index) == FAILURE){
index            1978 ext/gmp/gmp.c  	if (index < 0) {
index            1984 ext/gmp/gmp.c  	mpz_clrbit(gmpnum_a, index);
index            1993 ext/gmp/gmp.c  	zend_long index;
index            1997 ext/gmp/gmp.c  	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zl", &a_arg, &index) == FAILURE){
index            2001 ext/gmp/gmp.c  	if (index < 0) {
index            2007 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             396 ext/intl/php_intl.c 	ZEND_ARG_INFO( 0, index )
index             473 ext/intl/php_intl.c 	ZEND_ARG_INFO( 0, index )
index             237 ext/intl/resourcebundle/resourcebundle_class.c 	ZEND_ARG_INFO( 0, index )
index              54 ext/json/json_encoder.c 		zend_ulong index, idx;
index              57 ext/json/json_encoder.c 		ZEND_HASH_FOREACH_KEY(myht, index, key) {
index              61 ext/json/json_encoder.c 				if (index != idx) {
index             150 ext/json/json_encoder.c 		zend_ulong index;
index             153 ext/json/json_encoder.c 		ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, data) {
index             206 ext/json/json_encoder.c 					smart_str_append_long(buf, (zend_long) index);
index            1426 ext/ldap/ldap.c 	zend_ulong index;
index            1454 ext/ldap/ldap.c 		if (zend_hash_get_current_key(Z_ARRVAL_P(entry), &attribute, &index) == 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(Z_ARRVAL_P(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(Z_ARRVAL_P(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, "%s used in query/prepared statement %s", index, query);
index             497 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             507 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             621 ext/oci8/oci8.c 	ZEND_ARG_INFO(0, index)
index             629 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, zend_long index, zval *result_element)
index             495 ext/oci8/oci8_collection.c 			 (ub4)index,
index             587 ext/oci8/oci8_collection.c int php_oci_collection_element_set_null(php_oci_collection *collection, zend_long index)
index             594 ext/oci8/oci8_collection.c 	PHP_OCI_CALL_RETURN(errstatus, OCICollAssignElem, (connection->env, connection->err, (ub4) index, (dvoid *)"", &null_index, collection->collection));
index             608 ext/oci8/oci8_collection.c int php_oci_collection_element_set_date(php_oci_collection *collection, zend_long index, char *date, int date_len)
index             629 ext/oci8/oci8_collection.c 			 (ub4)index,
index             649 ext/oci8/oci8_collection.c int php_oci_collection_element_set_number(php_oci_collection *collection, zend_long index, char *number, int number_len)
index             671 ext/oci8/oci8_collection.c 			 (ub4) index,
index             691 ext/oci8/oci8_collection.c int php_oci_collection_element_set_string(php_oci_collection *collection, zend_long index, char *element, int element_len)
index             710 ext/oci8/oci8_collection.c 			 (ub4)index,
index             730 ext/oci8/oci8_collection.c int php_oci_collection_element_set(php_oci_collection *collection, zend_long index, char *value, int value_len)
index             733 ext/oci8/oci8_collection.c 		return php_oci_collection_element_set_null(collection, index);
index             738 ext/oci8/oci8_collection.c 			return php_oci_collection_element_set_date(collection, index, value, value_len);
index             742 ext/oci8/oci8_collection.c 			return php_oci_collection_element_set_string(collection, index, value, value_len);
index             756 ext/oci8/oci8_collection.c 			return php_oci_collection_element_set_number(collection, index, value, value_len);
index             105 ext/oci8/oci8_lob.c 		descriptor->index = (connection->descriptor_count)++;
index             112 ext/oci8/oci8_lob.c 		zend_hash_index_update_ptr(connection->descriptors, descriptor->index, descriptor);
index             673 ext/oci8/oci8_lob.c             zend_hash_index_del(descriptor->connection->descriptors, descriptor->index);
index             674 ext/oci8/oci8_lob.c 			if (descriptor->index + 1 == descriptor->connection->descriptor_count) {
index            1334 ext/oci8/oci8_statement.c 					ub4 index,		  /* index of current array for PL/SQL or row index for SQL */
index            1393 ext/oci8/oci8_statement.c 					ub4 index,		   /* index of current array for PL/SQL or row index for SQL */
index             175 ext/oci8/php_oci8_int.h 	zend_ulong				 index;		            /* descriptors hash table index */
index             467 ext/oci8/php_oci8_int.h int php_oci_collection_element_get(php_oci_collection *collection, zend_long index, zval *result_element);
index             468 ext/oci8/php_oci8_int.h int php_oci_collection_element_set(php_oci_collection *collection, zend_long index, char *value, int value_len);
index             469 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_null(php_oci_collection *collection, zend_long index);
index             470 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_date(php_oci_collection *collection, zend_long index, char *date, int date_len);
index             471 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_number(php_oci_collection *collection, zend_long index, char *number, int number_len);
index             472 ext/oci8/php_oci8_int.h int php_oci_collection_element_set_string(php_oci_collection *collection, zend_long index, char *element, int element_len);
index             496 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             497 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              34 ext/odbc/php_birdstep.h 	zend_long    index;
index              47 ext/odbc/php_birdstep.h 	zend_long    index;
index             335 ext/opcache/Optimizer/zend_optimizer.c 				zend_ulong index;
index             336 ext/opcache/Optimizer/zend_optimizer.c 				if (ZEND_HANDLE_NUMERIC(Z_STR_P(val), index)) {
index             338 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             142 ext/opcache/zend_accelerator_hash.c 	zend_ulong index = hash_value % accel_hash->max_num_entries;
index             143 ext/opcache/zend_accelerator_hash.c 	zend_accel_hash_entry *entry = accel_hash->hash_table[index];
index             223 ext/opcache/zend_accelerator_hash.c     zend_ulong index;
index             227 ext/opcache/zend_accelerator_hash.c 	index = hash_value % accel_hash->max_num_entries;
index             229 ext/opcache/zend_accelerator_hash.c 	entry = accel_hash->hash_table[index];
index             240 ext/opcache/zend_accelerator_hash.c 				accel_hash->hash_table[index] = entry->next;
index             685 ext/openssl/xp_ssl.c 			int index, cert_name_utf8_len;
index             689 ext/openssl/xp_ssl.c 			index = X509_NAME_get_index_by_NID(cert_name, NID_commonName, -1);
index             690 ext/openssl/xp_ssl.c 			if (index < 0) {
index             697 ext/openssl/xp_ssl.c 			cert_name_utf8_len = PHP_X509_NAME_ENTRY_TO_UTF8(cert_name, index, cert_name_utf8);
index            7337 ext/pcre/pcrelib/pcre_compile.c           unsigned int index = i;
index            7353 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             466 ext/pdo_firebird/firebird_statement.c 		zval *index;
index             469 ext/pdo_firebird/firebird_statement.c 		if ((index = zend_hash_find(S->named_params, param->name)) != NULL) {
index             470 ext/pdo_firebird/firebird_statement.c 			param->paramno = Z_LVAL_P(index);
index             198 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             235 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             937 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *error;
index             941 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|pp", &index, &index_len, &webindex, &webindex_len) == FAILURE) {
index             945 ext/phar/phar_object.c 	stub = phar_create_default_stub(index, webindex, &error);
index            2916 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *error = NULL;
index            2933 ext/phar/phar_object.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!s", &index, &index_len, &webindex, &webindex_len) == FAILURE) {
index            2949 ext/phar/phar_object.c 		stub = phar_create_default_stub(index, webindex, &error);
index            5059 ext/phar/phar_object.c 	ZEND_ARG_INFO(0, index)
index            5100 ext/phar/phar_object.c 	ZEND_ARG_INFO(0, index)
index             498 ext/readline/readline_cli.c static char *cli_completion_generator(const char *text, int index) /* {{{ */
index             512 ext/readline/readline_cli.c 	if (!index) {
index            3484 ext/soap/php_encoding.c 	zend_ulong index;
index            3488 ext/soap/php_encoding.c 	ZEND_HASH_FOREACH_KEY(Z_ARRVAL_P(array), index, key) {
index            3489 ext/soap/php_encoding.c 		if (key || index != i) {
index            2169 ext/soap/php_schema.c 							zend_ulong index;
index            2172 ext/soap/php_schema.c 							zend_hash_get_current_key(tmp->attributes, NULL, &index);
index            2173 ext/soap/php_schema.c 							zend_hash_index_del(tmp->attributes, index);
index            2268 ext/soap/php_schema.c 		zend_ulong index;
index            2270 ext/soap/php_schema.c 		ZEND_HASH_FOREACH_KEY_PTR(type->attributes, index, str_key, attr) {
index            2275 ext/soap/php_schema.c 				zend_hash_index_del(type->attributes, index);
index              58 ext/soap/soap.c static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int);
index              65 ext/soap/soap.c static xmlNodePtr serialize_parameter(sdlParamPtr param,zval *param_val,int index,char *name, int style, xmlNodePtr parent);
index            4406 ext/soap/soap.c static xmlNodePtr serialize_parameter(sdlParamPtr param, zval *param_val, int index, char *name, int style, xmlNodePtr parent)
index            4431 ext/soap/soap.c 			snprintf(paramName, sizeof(paramNameBuf), "param%d",index);
index            4473 ext/soap/soap.c static sdlParamPtr get_param(sdlFunctionPtr function, char *param_name, int index, int response)
index            4503 ext/soap/soap.c 		if ((tmp = zend_hash_index_find_ptr(ht, index)) != NULL) {
index             281 ext/spl/spl_array.c 	zend_long index;
index             343 ext/spl/spl_array.c 		index = Z_RES_P(offset)->handle;
index             346 ext/spl/spl_array.c 		index = (zend_long)Z_DVAL_P(offset);
index             349 ext/spl/spl_array.c 		index = 0;
index             352 ext/spl/spl_array.c 		index = 1;
index             355 ext/spl/spl_array.c 		index = Z_LVAL_P(offset);
index             357 ext/spl/spl_array.c 		if ((retval = zend_hash_index_find(ht, index)) == NULL) {
index             360 ext/spl/spl_array.c 					zend_error(E_NOTICE, "Undefined offset: %pd", index);
index             366 ext/spl/spl_array.c 					zend_error(E_NOTICE, "Undefined offset: %pd", index);
index             370 ext/spl/spl_array.c 					retval = zend_hash_index_update(ht, index, &value);
index             432 ext/spl/spl_array.c 	zend_long index;
index             471 ext/spl/spl_array.c 			index = (zend_long)Z_DVAL_P(offset);
index             474 ext/spl/spl_array.c 			index = Z_RES_HANDLE_P(offset);
index             477 ext/spl/spl_array.c 			index = 0;
index             480 ext/spl/spl_array.c 			index = 1;
index             483 ext/spl/spl_array.c 			index = Z_LVAL_P(offset);
index             486 ext/spl/spl_array.c 			zend_hash_index_update(ht, index, value);
index             509 ext/spl/spl_array.c 	zend_long index;
index             559 ext/spl/spl_array.c 		index = (zend_long)Z_DVAL_P(offset);
index             562 ext/spl/spl_array.c 		index = Z_RES_HANDLE_P(offset);
index             565 ext/spl/spl_array.c 		index = 0;
index             568 ext/spl/spl_array.c 		index = 1;
index             571 ext/spl/spl_array.c 		index = Z_LVAL_P(offset);
index             574 ext/spl/spl_array.c 		if (zend_hash_index_del(ht, index) == FAILURE) {
index             575 ext/spl/spl_array.c 			zend_error(E_NOTICE,"Undefined offset: %pd", index);
index             595 ext/spl/spl_array.c 	zend_long index;
index             632 ext/spl/spl_array.c 				index = (zend_long)Z_DVAL_P(offset);
index             635 ext/spl/spl_array.c 				index = Z_RES_HANDLE_P(offset);
index             638 ext/spl/spl_array.c 				index = 0;
index             641 ext/spl/spl_array.c 				index = 1;
index             644 ext/spl/spl_array.c 				index = Z_LVAL_P(offset);
index             646 ext/spl/spl_array.c 				if ((tmp = zend_hash_index_find(ht, index)) != NULL) {
index             705 ext/spl/spl_array.c 	zval *index;
index             706 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &index) == FAILURE) {
index             709 ext/spl/spl_array.c 	RETURN_BOOL(spl_array_has_dimension_ex(0, getThis(), index, 2));
index             717 ext/spl/spl_array.c 	zval *value, *index;
index             718 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &index) == FAILURE) {
index             721 ext/spl/spl_array.c 	value = spl_array_read_dimension_ex(0, getThis(), index, BP_VAR_R, return_value);
index             733 ext/spl/spl_array.c 	zval *index, *value;
index             734 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "zz", &index, &value) == FAILURE) {
index             737 ext/spl/spl_array.c 	spl_array_write_dimension_ex(0, getThis(), index, value);
index             776 ext/spl/spl_array.c 	zval *index;
index             777 ext/spl/spl_array.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "z", &index) == FAILURE) {
index             780 ext/spl/spl_array.c 	spl_array_unset_dimension_ex(0, getThis(), index);
index            1818 ext/spl/spl_array.c 	ZEND_ARG_INFO(0, index)
index            1822 ext/spl/spl_array.c 	ZEND_ARG_INFO(0, index)
index             243 ext/spl/spl_directory.c 	intern->u.dir.index = 0;
index             330 ext/spl/spl_directory.c 	int index, skip_dots;
index             350 ext/spl/spl_directory.c 			for(index = 0; index < source->u.dir.index; ++index) {
index             355 ext/spl/spl_directory.c 			intern->u.dir.index = index;
index             752 ext/spl/spl_directory.c 	intern->u.dir.index = 0;
index             771 ext/spl/spl_directory.c 		RETURN_LONG(intern->u.dir.index);
index             801 ext/spl/spl_directory.c 	intern->u.dir.index++;
index             824 ext/spl/spl_directory.c 	if (intern->u.dir.index > pos) {
index             829 ext/spl/spl_directory.c 	while (intern->u.dir.index < pos) {
index            1423 ext/spl/spl_directory.c 	intern->u.dir.index = 0;
index            1675 ext/spl/spl_directory.c 	ZVAL_LONG(key, object->u.dir.index);
index            1684 ext/spl/spl_directory.c 	object->u.dir.index++;
index            1698 ext/spl/spl_directory.c 	object->u.dir.index = 0;
index            1767 ext/spl/spl_directory.c 	object->u.dir.index++;
index            1788 ext/spl/spl_directory.c 	object->u.dir.index = 0;
index              80 ext/spl/spl_directory.h 			int                index;
index             764 ext/spl/spl_dllist.c 	zend_long               index;
index             771 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex);
index             773 ext/spl/spl_dllist.c 	RETURN_BOOL(index >= 0 && index < intern->llist->count);
index             781 ext/spl/spl_dllist.c 	zend_long                   index;
index             790 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex);
index             792 ext/spl/spl_dllist.c 	if (index < 0 || index >= intern->llist->count) {
index             797 ext/spl/spl_dllist.c 	element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index             827 ext/spl/spl_dllist.c 		zend_long                   index;
index             830 ext/spl/spl_dllist.c 		index = spl_offset_convert_to_long(zindex);
index             832 ext/spl/spl_dllist.c 		if (index < 0 || index >= intern->llist->count) {
index             838 ext/spl/spl_dllist.c 		element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index             868 ext/spl/spl_dllist.c 	zend_long             index;
index             878 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex);
index             881 ext/spl/spl_dllist.c 	if (index < 0 || index >= intern->llist->count) {
index             886 ext/spl/spl_dllist.c 	element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index            1239 ext/spl/spl_dllist.c 	zend_long                  index;
index            1246 ext/spl/spl_dllist.c 	index  = spl_offset_convert_to_long(zindex);
index            1248 ext/spl/spl_dllist.c 	if (index < 0 || index > intern->llist->count) {
index            1256 ext/spl/spl_dllist.c 	if (index == intern->llist->count) {
index            1264 ext/spl/spl_dllist.c 		element = spl_ptr_llist_offset(intern->llist, index, intern->flags & SPL_DLLIST_IT_LIFO);
index            1336 ext/spl/spl_dllist.c 	ZEND_ARG_INFO(0, index)
index            1340 ext/spl/spl_dllist.c 	ZEND_ARG_INFO(0, index)
index             329 ext/spl/spl_fixedarray.c 	zend_long index;
index             339 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
index             341 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             344 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             347 ext/spl/spl_fixedarray.c 	} else if (Z_ISUNDEF(intern->array->elements[index])) {
index             350 ext/spl/spl_fixedarray.c 		return &intern->array->elements[index];
index             383 ext/spl/spl_fixedarray.c 	zend_long index;
index             392 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
index             394 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             397 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             401 ext/spl/spl_fixedarray.c 		if (!Z_ISUNDEF(intern->array->elements[index])) {
index             402 ext/spl/spl_fixedarray.c 			zval_ptr_dtor(&(intern->array->elements[index]));
index             405 ext/spl/spl_fixedarray.c 		ZVAL_COPY(&intern->array->elements[index], value);
index             437 ext/spl/spl_fixedarray.c 	zend_long index;
index             440 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
index             442 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             445 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             449 ext/spl/spl_fixedarray.c 		zval_ptr_dtor(&(intern->array->elements[index]));
index             450 ext/spl/spl_fixedarray.c 		ZVAL_UNDEF(&intern->array->elements[index]);
index             475 ext/spl/spl_fixedarray.c 	zend_long index;
index             479 ext/spl/spl_fixedarray.c 		index = spl_offset_convert_to_long(offset);
index             481 ext/spl/spl_fixedarray.c 		index = Z_LVAL_P(offset);
index             484 ext/spl/spl_fixedarray.c 	if (index < 0 || intern->array == NULL || index >= intern->array->size) {
index             487 ext/spl/spl_fixedarray.c 		if (Z_ISUNDEF(intern->array->elements[index])) {
index             490 ext/spl/spl_fixedarray.c 			if (zend_is_true(&intern->array->elements[index])) {
index             592 ext/spl/spl_fixedarray.c 		int index = 0;
index             602 ext/spl/spl_fixedarray.c 			ZVAL_COPY_VALUE(&intern->array->elements[index], data);
index             603 ext/spl/spl_fixedarray.c 			index++;
index            1051 ext/spl/spl_fixedarray.c 	ZEND_ARG_INFO(0, index)
index            1055 ext/spl/spl_fixedarray.c 	ZEND_ARG_INFO(0, index)
index             231 ext/spl/spl_iterators.c 		ZVAL_LONG(key, iter->index);
index            3014 ext/spl/spl_iterators.c 	ZEND_ARG_INFO(0, index)
index            3018 ext/spl/spl_iterators.c 	ZEND_ARG_INFO(0, index)
index            3501 ext/spl/spl_iterators.c 	iter->index = 0;
index            3516 ext/spl/spl_iterators.c 		iter->index++;
index              84 ext/spl/spl_observer.c 	zend_long         index;
index             214 ext/spl/spl_observer.c 	intern->index = 0;
index             409 ext/spl/spl_observer.c 	intern->index = 0;
index             499 ext/spl/spl_observer.c 	intern->index = 0;
index             526 ext/spl/spl_observer.c 	intern->index = 0;
index             582 ext/spl/spl_observer.c 	intern->index = 0;
index             608 ext/spl/spl_observer.c 	RETURN_LONG(intern->index);
index             675 ext/spl/spl_observer.c 	intern->index++;
index             415 ext/standard/proc_open.c 	int index; 							/* desired fd number in child process */
index             535 ext/standard/proc_open.c 		descriptors[ndesc].index = (int)nindex;
index             710 ext/standard/proc_open.c 		switch(descriptors[i].index) {
index             843 ext/standard/proc_open.c 			if (dup2(descriptors[i].childend, descriptors[i].index) < 0)
index             845 ext/standard/proc_open.c 			if (descriptors[i].childend != descriptors[i].index)
index             958 ext/standard/proc_open.c 					add_index_zval(pipes, descriptors[i].index, &retfp);
index             181 ext/standard/sha1.c 	unsigned int i, index, partLen;
index             184 ext/standard/sha1.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3F);
index             192 ext/standard/sha1.c 	partLen = 64 - index;
index             198 ext/standard/sha1.c 			((unsigned char*) & context->buffer[index], (unsigned char*) input, partLen);
index             204 ext/standard/sha1.c 		index = 0;
index             210 ext/standard/sha1.c 		((unsigned char*) & context->buffer[index], (unsigned char*) & input[i],
index             222 ext/standard/sha1.c 	unsigned int index, padLen;
index             236 ext/standard/sha1.c 	index = (unsigned int) ((context->count[0] >> 3) & 0x3f);
index             237 ext/standard/sha1.c 	padLen = (index < 56) ? (56 - index) : (120 - index);
index              38 ext/standard/var.c static void php_array_element_dump(zval *zv, zend_ulong index, zend_string *key, int level) /* {{{ */
index              41 ext/standard/var.c 		php_printf("%*c[" ZEND_LONG_FMT "]=>\n", level + 1, ' ', index);
index              51 ext/standard/var.c static void php_object_property_dump(zval *zv, zend_ulong index, zend_string *key, int level) /* {{{ */
index              56 ext/standard/var.c 		php_printf("%*c[" ZEND_LONG_FMT "]=>\n", level + 1, ' ', index);
index             210 ext/standard/var.c static void zval_array_element_dump(zval *zv, zend_ulong index, zend_string *key, int level) /* {{{ */
index             213 ext/standard/var.c 		php_printf("%*c[" ZEND_LONG_FMT "]=>\n", level + 1, ' ', index);
index             223 ext/standard/var.c static void zval_object_property_dump(zval *zv, zend_ulong index, zend_string *key, int level) /* {{{ */
index             228 ext/standard/var.c 		php_printf("%*c[" ZEND_LONG_FMT "]=>\n", level + 1, ' ', index);
index             254 ext/standard/var.c 	zend_ulong index;
index             294 ext/standard/var.c 		ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, val) {
index             295 ext/standard/var.c 			zval_array_element_dump(val, index, key, level);
index             323 ext/standard/var.c 			ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, val) {
index             324 ext/standard/var.c 				zval_object_property_dump(val, index, key, level);
index             383 ext/standard/var.c static void php_array_element_export(zval *zv, zend_ulong index, zend_string *key, int level, smart_str *buf) /* {{{ */
index             387 ext/standard/var.c 		smart_str_append_long(buf, (zend_long) index);
index             411 ext/standard/var.c static void php_object_element_export(zval *zv, zend_ulong index, zend_string *key, int level, smart_str *buf) /* {{{ */
index             427 ext/standard/var.c 		smart_str_append_long(buf, (zend_long) index);
index             442 ext/standard/var.c 	zend_ulong index;
index             498 ext/standard/var.c 			ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, val) {
index             499 ext/standard/var.c 				php_array_element_export(val, index, key, level, buf);
index             531 ext/standard/var.c 				ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, val) {
index             532 ext/standard/var.c 					php_object_element_export(val, index, key, level, buf);
index             920 ext/standard/var.c 				zend_ulong index;
index             922 ext/standard/var.c 				ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, data) {
index             929 ext/standard/var.c 						php_var_serialize_long(buf, index);
index              54 ext/xml/php_xml.h 	zval index;
index             173 ext/xml/xml.c  	ZEND_ARG_INFO(1, index)
index             730 ext/xml/xml.c  			ZVAL_COPY(&args[0], &parser->index);
index             815 ext/xml/xml.c  			ZVAL_COPY(&args[0], &parser->index);
index             862 ext/xml/xml.c  			ZVAL_COPY(&args[0], &parser->index);
index             954 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index             971 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index             992 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index            1016 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index            1040 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index            1065 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index            1082 ext/xml/xml.c  		ZVAL_COPY(&args[0], &parser->index);
index            1145 ext/xml/xml.c  	ZVAL_COPY(&parser->index, return_value);
index            1576 ext/xml/xml.c  	res = Z_RES(parser->index);
index            1577 ext/xml/xml.c  	ZVAL_UNDEF(&parser->index);
index            1177 ext/xmlreader/php_xmlreader.c 	ZEND_ARG_INFO(0, index)
index            1201 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             344 ext/xmlrpc/xmlrpc-epi-php.c 				long index = strtol(id, NULL, 0);
index             345 ext/xmlrpc/xmlrpc-epi-php.c 				zend_hash_index_update(Z_ARRVAL_P(list), index, val);
index             282 ext/zip/lib/zip.h     zip_uint64_t index;			/* index within archive */
index              42 ext/zip/lib/zip_fopen_index.c zip_fopen_index(zip_t *za, zip_uint64_t index, zip_flags_t flags)
index              44 ext/zip/lib/zip_fopen_index.c     return zip_fopen_index_encrypted(za, index, flags, za->default_password);
index              44 ext/zip/lib/zip_fopen_index_encrypted.c zip_fopen_index_encrypted(zip_t *za, zip_uint64_t index, zip_flags_t flags,
index              50 ext/zip/lib/zip_fopen_index_encrypted.c     if ((src=_zip_source_zip_new(za, za, index, flags, 0, 0, password)) == NULL)
index             123 ext/zip/lib/zip_hash.c _zip_hash_add(zip_hash_t *hash, const zip_uint8_t *name, zip_uint64_t index, zip_flags_t flags, zip_error_t *error)
index             128 ext/zip/lib/zip_hash.c     if (hash == NULL || name == NULL || index > ZIP_INT64_MAX) {
index             158 ext/zip/lib/zip_hash.c 	entry->orig_index = (zip_int64_t)index;
index             160 ext/zip/lib/zip_hash.c     entry->current_index = (zip_int64_t)index;
index              39 ext/zip/lib/zip_stat_index.c zip_stat_index(zip_t *za, zip_uint64_t index, zip_flags_t flags,
index              45 ext/zip/lib/zip_stat_index.c     if ((de=_zip_get_dirent(za, index, flags, NULL)) == NULL)
index              48 ext/zip/lib/zip_stat_index.c     if ((name=zip_get_name(za, index, flags)) == NULL)
index              53 ext/zip/lib/zip_stat_index.c 	&& ZIP_ENTRY_DATA_CHANGED(za->entry+index)) {
index              54 ext/zip/lib/zip_stat_index.c 	if (zip_source_stat(za->entry[index].source, st) < 0) {
index              81 ext/zip/lib/zip_stat_index.c     st->index = index;
index              44 ext/zip/lib/zip_stat_init.c     st->index = ZIP_UINT64_MAX;
index              59 ext/zip/lib/zip_stat_init.c         dst->index = src->index;
index             536 ext/zip/lib/zipint.h bool _zip_hash_add(zip_hash_t *hash, const zip_uint8_t *name, zip_uint64_t index, zip_flags_t flags, zip_error_t *error);
index              61 ext/zip/php_zip.c #define PHP_ZIP_STAT_INDEX(za, index, flags, sb) \
index              62 ext/zip/php_zip.c 	if (zip_stat_index(za, index, flags, &sb) != 0) { \
index              79 ext/zip/php_zip.c #define PHP_ZIP_SET_FILE_COMMENT(za, index, comment, comment_len) \
index              82 ext/zip/php_zip.c 		if (zip_set_file_comment(za, index, NULL, 0) < 0) { \
index              85 ext/zip/php_zip.c 	} else if (zip_set_file_comment(za, index, comment, comment_len) < 0) { \
index             386 ext/zip/php_zip.c 		add_ascii_assoc_long(return_value, "index", (zend_long) (sb)->index); \
index            1867 ext/zip/php_zip.c 	zend_long index, flags = 0;
index            1878 ext/zip/php_zip.c 			&index, &flags) == FAILURE) {
index            1882 ext/zip/php_zip.c 	if (zip_stat_index(intern, index, flags, &sb) != 0) {
index            1930 ext/zip/php_zip.c 	zend_long flags = 0, index = 0;
index            1939 ext/zip/php_zip.c 			&index, &flags) == FAILURE) {
index            1943 ext/zip/php_zip.c 	name = zip_get_name(intern, (int) index, flags);
index            2046 ext/zip/php_zip.c 	zend_long index;
index            2058 ext/zip/php_zip.c 			&index, &comment, &comment_len) == FAILURE) {
index            2062 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2063 ext/zip/php_zip.c 	PHP_ZIP_SET_FILE_COMMENT(intern, index, comment, comment_len);
index            2114 ext/zip/php_zip.c 	zend_long index, flags=0, opsys, attr;
index            2124 ext/zip/php_zip.c 			&index, &opsys, &attr, &flags) == FAILURE) {
index            2128 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2129 ext/zip/php_zip.c 	if (zip_file_set_external_attributes(intern, (zip_uint64_t)index,
index            2187 ext/zip/php_zip.c 	zend_long index, flags=0;
index            2199 ext/zip/php_zip.c 			&index, &z_opsys, &z_attr, &flags) == FAILURE) {
index            2203 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2204 ext/zip/php_zip.c 	if (zip_file_get_external_attributes(intern, (zip_uint64_t)index,
index            2261 ext/zip/php_zip.c 	zend_long index, flags = 0;
index            2273 ext/zip/php_zip.c 				&index, &flags) == FAILURE) {
index            2277 ext/zip/php_zip.c 	PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2278 ext/zip/php_zip.c 	comment = zip_get_file_comment(intern, index, &comment_len, (int)flags);
index            2328 ext/zip/php_zip.c 	zend_long index;
index            2338 ext/zip/php_zip.c 			&index, &comp_method, &comp_flags) == FAILURE) {
index            2342 ext/zip/php_zip.c 	if (zip_set_file_compression(intern, (zip_uint64_t)index,
index            2356 ext/zip/php_zip.c 	zend_long index;
index            2364 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) {
index            2368 ext/zip/php_zip.c 	if (index < 0) {
index            2372 ext/zip/php_zip.c 	if (zip_delete(intern, index) < 0) {
index            2404 ext/zip/php_zip.c 	if (zip_delete(intern, sb.index)) {
index            2420 ext/zip/php_zip.c 	zend_long index;
index            2428 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "ls", &index, &new_name, &new_name_len) == FAILURE) {
index            2432 ext/zip/php_zip.c 	if (index < 0) {
index            2440 ext/zip/php_zip.c 	if (zip_rename(intern, index, (const char *)new_name) != 0) {
index            2474 ext/zip/php_zip.c 	if (zip_rename(intern, sb.index, (const char *)new_name)) {
index            2487 ext/zip/php_zip.c 	zend_long index;
index            2495 ext/zip/php_zip.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) {
index            2499 ext/zip/php_zip.c 	if (index < 0) {
index            2503 ext/zip/php_zip.c 	if (zip_unchange(intern, index) != 0) {
index            2537 ext/zip/php_zip.c 	if (zip_unchange(intern, sb.index) != 0) {
index            2687 ext/zip/php_zip.c 	zend_long index = -1;
index            2708 ext/zip/php_zip.c 		if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|ll", &index, &len, &flags) == FAILURE) {
index            2711 ext/zip/php_zip.c 		PHP_ZIP_STAT_INDEX(intern, index, 0, sb);
index            2721 ext/zip/php_zip.c 	if (index >= 0) {
index            2722 ext/zip/php_zip.c 		zf = zip_fopen_index(intern, index, flags);
index            2845 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2854 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2864 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2869 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2879 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2898 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2925 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2939 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index            2954 ext/zip/php_zip.c 	ZEND_ARG_INFO(0, index)
index              60 main/php_variables.c 	char *index;
index             121 main/php_variables.c 	index = var;
index             164 main/php_variables.c 					if (index) {
index             165 main/php_variables.c 						index_len = strlen(index);
index             174 main/php_variables.c 			if (!index) {
index             183 main/php_variables.c 				gpc_element_p = zend_symtable_str_find(symtable1, index, index_len);
index             187 main/php_variables.c 					gpc_element_p = zend_symtable_str_update_ind(symtable1, index, index_len, &tmp);
index             200 main/php_variables.c 			index = index_s;
index             214 main/php_variables.c 		if (!index) {
index             227 main/php_variables.c 				zend_symtable_str_exists(symtable1, index, index_len)) {
index             230 main/php_variables.c 				gpc_element_p = zend_symtable_str_update_ind(symtable1, index, index_len, &gpc_element);
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);
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            1013 sapi/cli/php_cli.c 				size_t len, index = 0;
index            1028 sapi/cli/php_cli.c 					ZVAL_LONG(&argi, ++index);
index             337 sapi/cli/php_http_parser.c   uint32_t index = parser->index;
index             417 sapi/cli/php_http_parser.c           index = 2;
index             582 sapi/cli/php_http_parser.c         index = 1;
index             610 sapi/cli/php_http_parser.c           if (parser->method != PHP_HTTP_NOT_IMPLEMENTED && matcher[index] != '\0') {
index             614 sapi/cli/php_http_parser.c         } else if (parser->method == PHP_HTTP_NOT_IMPLEMENTED || ch == matcher[index]) {
index             617 sapi/cli/php_http_parser.c           if (index == 1 && ch == 'H') {
index             619 sapi/cli/php_http_parser.c           } else if (index == 2  && ch == 'P') {
index             625 sapi/cli/php_http_parser.c           if (index == 1 && ch == 'O') {
index             627 sapi/cli/php_http_parser.c           } else if (index == 3 && ch == 'A') {
index             629 sapi/cli/php_http_parser.c           } else if (index == 1 && ch == 'E') {
index             631 sapi/cli/php_http_parser.c           } else if (index == 1 && ch == '-') {
index             633 sapi/cli/php_http_parser.c           } else if (index == 2 && ch == 'A') {
index             638 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'R') {
index             640 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'U') {
index             642 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_POST && ch == 'A') {
index             644 sapi/cli/php_http_parser.c         } else if (index == 1 && parser->method == PHP_HTTP_SUBSCRIBE && ch == 'E') {
index             646 sapi/cli/php_http_parser.c         } else if (index == 2 && parser->method == PHP_HTTP_UNLOCK && ch == 'S') {
index             648 sapi/cli/php_http_parser.c         } else if (index == 4 && parser->method == PHP_HTTP_PROPFIND && ch == 'P') {
index             654 sapi/cli/php_http_parser.c         ++index;
index            1054 sapi/cli/php_http_parser.c         index = 0;
index            1091 sapi/cli/php_http_parser.c               index++;
index            1096 sapi/cli/php_http_parser.c               index++;
index            1101 sapi/cli/php_http_parser.c               index++;
index            1118 sapi/cli/php_http_parser.c               index++;
index            1119 sapi/cli/php_http_parser.c               if (index > sizeof(CONNECTION)-1
index            1120 sapi/cli/php_http_parser.c                   || c != CONNECTION[index]) {
index            1122 sapi/cli/php_http_parser.c               } else if (index == sizeof(CONNECTION)-2) {
index            1130 sapi/cli/php_http_parser.c               index++;
index            1131 sapi/cli/php_http_parser.c               if (index > sizeof(PROXY_CONNECTION)-1
index            1132 sapi/cli/php_http_parser.c                   || c != PROXY_CONNECTION[index]) {
index            1134 sapi/cli/php_http_parser.c               } else if (index == sizeof(PROXY_CONNECTION)-2) {
index            1142 sapi/cli/php_http_parser.c               index++;
index            1143 sapi/cli/php_http_parser.c               if (index > sizeof(CONTENT_LENGTH)-1
index            1144 sapi/cli/php_http_parser.c                   || c != CONTENT_LENGTH[index]) {
index            1146 sapi/cli/php_http_parser.c               } else if (index == sizeof(CONTENT_LENGTH)-2) {
index            1154 sapi/cli/php_http_parser.c               index++;
index            1155 sapi/cli/php_http_parser.c               if (index > sizeof(TRANSFER_ENCODING)-1
index            1156 sapi/cli/php_http_parser.c                   || c != TRANSFER_ENCODING[index]) {
index            1158 sapi/cli/php_http_parser.c               } else if (index == sizeof(TRANSFER_ENCODING)-2) {
index            1166 sapi/cli/php_http_parser.c               index++;
index            1167 sapi/cli/php_http_parser.c               if (index > sizeof(UPGRADE)-1
index            1168 sapi/cli/php_http_parser.c                   || c != UPGRADE[index]) {
index            1170 sapi/cli/php_http_parser.c               } else if (index == sizeof(UPGRADE)-2) {
index            1217 sapi/cli/php_http_parser.c         index = 0;
index            1306 sapi/cli/php_http_parser.c             index++;
index            1307 sapi/cli/php_http_parser.c             if (index > sizeof(CHUNKED)-1
index            1308 sapi/cli/php_http_parser.c                 || c != CHUNKED[index]) {
index            1310 sapi/cli/php_http_parser.c             } else if (index == sizeof(CHUNKED)-2) {
index            1317 sapi/cli/php_http_parser.c             index++;
index            1318 sapi/cli/php_http_parser.c             if (index > sizeof(KEEP_ALIVE)-1
index            1319 sapi/cli/php_http_parser.c                 || c != KEEP_ALIVE[index]) {
index            1321 sapi/cli/php_http_parser.c             } else if (index == sizeof(KEEP_ALIVE)-2) {
index            1328 sapi/cli/php_http_parser.c             index++;
index            1329 sapi/cli/php_http_parser.c             if (index > sizeof(CLOSE)-1 || c != CLOSE[index]) {
index            1331 sapi/cli/php_http_parser.c             } else if (index == sizeof(CLOSE)-2) {
index            1577 sapi/cli/php_http_parser.c   parser->index = index;
index             120 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             186 sapi/fpm/fpm/events/epoll.c 	ev->index = ev->fd;
index             214 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              27 win32/readdir.c 	int index;
index              39 win32/readdir.c 	index = (int)strlen(filespec) - 1;
index              40 win32/readdir.c 	if (index >= 0 && (filespec[index] == '/' ||
index              41 win32/readdir.c 	   (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1])))))
index              42 win32/readdir.c 		filespec[index] = '\0';
index             141 win32/readdir.c 	int index;
index             154 win32/readdir.c 	index = (int)strlen(filespec) - 1;
index             155 win32/readdir.c 	if (index >= 0 && (filespec[index] == '/' ||
index             156 win32/readdir.c 	   (filespec[index] == '\\' && (index == 0 || !IsDBCSLeadByte(filespec[index-1])))))
index             157 win32/readdir.c 		filespec[index] = '\0';
index             117 win32/registry.c 					zend_string *index;
index             121 win32/registry.c 					ZEND_HASH_FOREACH_KEY_VAL(parent_ht, num, index, tmpdata) {
index             122 win32/registry.c 						zend_hash_add(ht, index, tmpdata);
index             265 win32/registry.c 			zend_string *index;
index             268 win32/registry.c 			ZEND_HASH_FOREACH_STR_KEY_VAL(ht, index, data) {
index             269 win32/registry.c 				zend_alter_ini_entry(index, Z_STR_P(data), PHP_INI_USER, PHP_INI_STAGE_ACTIVATE);
index             351 win32/sendmail.c PHPAPI char *GetSMErrorText(int index)
index             353 win32/sendmail.c 	if (MIN_ERROR_INDEX <= index && index < MAX_ERROR_INDEX) {
index             354 win32/sendmail.c 		return (ErrorMessages[index]);
index             867 win32/sendmail.c 	int index = 0;
index             870 win32/sendmail.c 		if ((slen = send(PW32G(mail_socket), msg + index, len, 0)) < 1)
index             873 win32/sendmail.c 		index += slen;
index              43 win32/sendmail.h PHPAPI char *GetSMErrorText(int index);