Lines Matching refs:arg
140 int arg = 1; in PHP_FUNCTION() local
147 arg = -1; in PHP_FUNCTION()
151 arg = atoi(&format[i]); in PHP_FUNCTION()
165 if (arg < 0) { in PHP_FUNCTION()
167 arg = 1; in PHP_FUNCTION()
184 if (arg < 0) { in PHP_FUNCTION()
189 arg = Z_STRLEN_PP(argv[currentarg]); in PHP_FUNCTION()
210 if (arg < 0) { in PHP_FUNCTION()
211 arg = num_args - currentarg; in PHP_FUNCTION()
214 currentarg += arg; in PHP_FUNCTION()
234 formatargs[formatcount] = arg; in PHP_FUNCTION()
244 int arg = formatargs[i]; in PHP_FUNCTION() local
249 INC_OUTPUTPOS((arg + (arg % 2)) / 2,1) /* 4 bit per arg */ in PHP_FUNCTION()
257 INC_OUTPUTPOS(arg,1) /* 8 bit per arg */ in PHP_FUNCTION()
264 INC_OUTPUTPOS(arg,2) /* 16 bit per arg */ in PHP_FUNCTION()
269 INC_OUTPUTPOS(arg,sizeof(int)) in PHP_FUNCTION()
276 INC_OUTPUTPOS(arg,4) /* 32 bit per arg */ in PHP_FUNCTION()
280 INC_OUTPUTPOS(arg,sizeof(float)) in PHP_FUNCTION()
284 INC_OUTPUTPOS(arg,sizeof(double)) in PHP_FUNCTION()
288 outputpos -= arg; in PHP_FUNCTION()
297 outputpos = arg; in PHP_FUNCTION()
313 int arg = formatargs[i]; in PHP_FUNCTION() local
319 memset(&output[outputpos], (code == 'a') ? '\0' : ' ', arg); in PHP_FUNCTION()
326 (Z_STRLEN_PP(val) < arg) ? Z_STRLEN_PP(val) : arg); in PHP_FUNCTION()
327 outputpos += arg; in PHP_FUNCTION()
343 if(arg > Z_STRLEN_PP(val)) { in PHP_FUNCTION()
345 arg = Z_STRLEN_PP(val); in PHP_FUNCTION()
348 while (arg-- > 0) { in PHP_FUNCTION()
378 while (arg-- > 0) { in PHP_FUNCTION()
396 while (arg-- > 0) { in PHP_FUNCTION()
405 while (arg-- > 0) { in PHP_FUNCTION()
423 while (arg-- > 0) { in PHP_FUNCTION()
433 while (arg-- > 0) { in PHP_FUNCTION()
446 while (arg-- > 0) { in PHP_FUNCTION()
457 memset(&output[outputpos], '\0', arg); in PHP_FUNCTION()
458 outputpos += arg; in PHP_FUNCTION()
462 outputpos -= arg; in PHP_FUNCTION()
470 if (arg > outputpos) { in PHP_FUNCTION()
471 memset(&output[outputpos], '\0', arg - outputpos); in PHP_FUNCTION()
473 outputpos = arg; in PHP_FUNCTION()
541 int arg = 1, argb; in PHP_FUNCTION() local
551 arg = atoi(format); in PHP_FUNCTION()
558 arg = -1; in PHP_FUNCTION()
566 argb = arg; in PHP_FUNCTION()
590 size = arg; in PHP_FUNCTION()
591 arg = 1; in PHP_FUNCTION()
596 size = (arg > 0) ? (arg + (arg % 2)) / 2 : arg; in PHP_FUNCTION()
597 arg = 1; in PHP_FUNCTION()
647 for (i = 0; i != arg; i++ ) { in PHP_FUNCTION()
651 if (arg != 1 || namelen == 0) { in PHP_FUNCTION()
831 i = arg - 1; /* Break out of for loop */ in PHP_FUNCTION()
833 if (arg >= 0) { in PHP_FUNCTION()
840 if (arg <= inputlen) { in PHP_FUNCTION()
841 inputpos = arg; in PHP_FUNCTION()
846 i = arg - 1; /* Done, break out of for loop */ in PHP_FUNCTION()
857 } else if (arg < 0) { in PHP_FUNCTION()