Lines Matching refs:arg

139 		int arg = 1;  in PHP_FUNCTION()  local
146 arg = -1; in PHP_FUNCTION()
150 arg = atoi(&format[i]); in PHP_FUNCTION()
164 if (arg < 0) { in PHP_FUNCTION()
166 arg = 1; in PHP_FUNCTION()
183 if (arg < 0) { in PHP_FUNCTION()
188 arg = Z_STRLEN_PP(argv[currentarg]); in PHP_FUNCTION()
209 if (arg < 0) { in PHP_FUNCTION()
210 arg = num_args - currentarg; in PHP_FUNCTION()
213 currentarg += arg; in PHP_FUNCTION()
233 formatargs[formatcount] = arg; in PHP_FUNCTION()
243 int arg = formatargs[i]; in PHP_FUNCTION() local
248 INC_OUTPUTPOS((arg + (arg % 2)) / 2,1) /* 4 bit per arg */ in PHP_FUNCTION()
256 INC_OUTPUTPOS(arg,1) /* 8 bit per arg */ in PHP_FUNCTION()
263 INC_OUTPUTPOS(arg,2) /* 16 bit per arg */ in PHP_FUNCTION()
268 INC_OUTPUTPOS(arg,sizeof(int)) in PHP_FUNCTION()
275 INC_OUTPUTPOS(arg,4) /* 32 bit per arg */ in PHP_FUNCTION()
279 INC_OUTPUTPOS(arg,sizeof(float)) in PHP_FUNCTION()
283 INC_OUTPUTPOS(arg,sizeof(double)) in PHP_FUNCTION()
287 outputpos -= arg; in PHP_FUNCTION()
296 outputpos = arg; in PHP_FUNCTION()
312 int arg = formatargs[i]; in PHP_FUNCTION() local
318 memset(&output[outputpos], (code == 'a') ? '\0' : ' ', arg); in PHP_FUNCTION()
325 (Z_STRLEN_PP(val) < arg) ? Z_STRLEN_PP(val) : arg); in PHP_FUNCTION()
326 outputpos += arg; in PHP_FUNCTION()
342 if(arg > Z_STRLEN_PP(val)) { in PHP_FUNCTION()
344 arg = Z_STRLEN_PP(val); in PHP_FUNCTION()
347 while (arg-- > 0) { in PHP_FUNCTION()
377 while (arg-- > 0) { in PHP_FUNCTION()
395 while (arg-- > 0) { in PHP_FUNCTION()
404 while (arg-- > 0) { in PHP_FUNCTION()
422 while (arg-- > 0) { in PHP_FUNCTION()
432 while (arg-- > 0) { in PHP_FUNCTION()
445 while (arg-- > 0) { in PHP_FUNCTION()
456 memset(&output[outputpos], '\0', arg); in PHP_FUNCTION()
457 outputpos += arg; in PHP_FUNCTION()
461 outputpos -= arg; in PHP_FUNCTION()
469 if (arg > outputpos) { in PHP_FUNCTION()
470 memset(&output[outputpos], '\0', arg - outputpos); in PHP_FUNCTION()
472 outputpos = arg; in PHP_FUNCTION()
540 int arg = 1, argb; in PHP_FUNCTION() local
550 arg = atoi(format); in PHP_FUNCTION()
557 arg = -1; in PHP_FUNCTION()
565 argb = arg; in PHP_FUNCTION()
589 size = arg; in PHP_FUNCTION()
590 arg = 1; in PHP_FUNCTION()
595 size = (arg > 0) ? (arg + (arg % 2)) / 2 : arg; in PHP_FUNCTION()
596 arg = 1; in PHP_FUNCTION()
652 for (i = 0; i != arg; i++ ) { in PHP_FUNCTION()
656 if (arg != 1 || namelen == 0) { in PHP_FUNCTION()
837 i = arg - 1; /* Break out of for loop */ in PHP_FUNCTION()
839 if (arg >= 0) { in PHP_FUNCTION()
846 if (arg <= inputlen) { in PHP_FUNCTION()
847 inputpos = arg; in PHP_FUNCTION()
852 i = arg - 1; /* Done, break out of for loop */ in PHP_FUNCTION()
863 } else if (arg < 0) { in PHP_FUNCTION()