Lines Matching refs:i

89 	int i;  in php_pack()  local
95 for (i = 0; i < size; i++) { in php_pack()
96 *output++ = v[map[i]]; in php_pack()
109 int num_args, i; in PHP_FUNCTION() local
137 for (i = 0; i < formatlen; formatcount++) { in PHP_FUNCTION()
138 char code = format[i++]; in PHP_FUNCTION()
142 if (i < formatlen) { in PHP_FUNCTION()
143 char c = format[i]; in PHP_FUNCTION()
147 i++; in PHP_FUNCTION()
150 arg = atoi(&format[i]); in PHP_FUNCTION()
152 while (format[i] >= '0' && format[i] <= '9' && i < formatlen) { in PHP_FUNCTION()
153 i++; in PHP_FUNCTION()
248 for (i = 0; i < formatcount; i++) { in PHP_FUNCTION()
249 int code = (int) formatcodes[i]; in PHP_FUNCTION()
250 int arg = formatargs[i]; in PHP_FUNCTION()
318 for (i = 0; i < formatcount; i++) { in PHP_FUNCTION()
319 int code = (int) formatcodes[i]; in PHP_FUNCTION()
320 int arg = formatargs[i]; in PHP_FUNCTION()
503 int i; in php_unpack() local
507 for (i = 0; i < size; i++) { in php_unpack()
508 cresult[map[i]] = *data++; in php_unpack()
533 int inputpos, inputlen, i; in PHP_FUNCTION() local
664 for (i = 0; i != arg; i++ ) { in PHP_FUNCTION()
670 snprintf(n, sizeof(n), "%.*s%d", namelen, name, i + 1); in PHP_FUNCTION()
893 i = arg - 1; /* Break out of for loop */ in PHP_FUNCTION()
908 i = arg - 1; /* Done, break out of for loop */ in PHP_FUNCTION()
940 int i; in PHP_MINIT_FUNCTION() local
948 for (i = 0; i < (int)sizeof(int); i++) { in PHP_MINIT_FUNCTION()
949 int_map[i] = i; in PHP_MINIT_FUNCTION()
980 for (i = 0; i < (int)sizeof(int); i++) { in PHP_MINIT_FUNCTION()
981 int_map[i] = size - (sizeof(int) - i); in PHP_MINIT_FUNCTION()