Lines Matching refs:code

52 		php_error_docref(NULL, E_WARNING, "Type %c: integer overflow in format string", code); \
254 char code = format[i++]; in PHP_FUNCTION() local
275 switch ((int) code) { in PHP_FUNCTION()
281 php_error_docref(NULL, E_WARNING, "Type %c: '*' ignored", code); in PHP_FUNCTION()
295 php_error_docref(NULL, E_WARNING, "Type %c: not enough arguments", code); in PHP_FUNCTION()
307 if (code == 'Z') { in PHP_FUNCTION()
359 php_error_docref(NULL, E_WARNING, "Type %c: too few arguments", code); in PHP_FUNCTION()
367 php_error_docref(NULL, E_WARNING, "Type %c: unknown format code", code); in PHP_FUNCTION()
371 formatcodes[formatcount] = code; in PHP_FUNCTION()
381 int code = (int) formatcodes[i]; in PHP_FUNCTION() local
384 switch ((int) code) { in PHP_FUNCTION()
443 php_error_docref(NULL, E_WARNING, "Type %c: outside of string", code); in PHP_FUNCTION()
464 int code = (int) formatcodes[i]; in PHP_FUNCTION() local
467 switch ((int) code) { in PHP_FUNCTION()
471 size_t arg_cp = (code != 'Z') ? arg : MAX(0, arg - 1); in PHP_FUNCTION()
475 memset(&ZSTR_VAL(output)[outputpos], (code == 'a' || code == 'Z') ? '\0' : ' ', arg); in PHP_FUNCTION()
486 int nibbleshift = (code == 'h') ? 0 : 4; in PHP_FUNCTION()
494 php_error_docref(NULL, E_WARNING, "Type %c: not enough characters in string", code); in PHP_FUNCTION()
508 php_error_docref(NULL, E_WARNING, "Type %c: illegal hex digit %c", code, n); in PHP_FUNCTION()
541 if (code == 'n') { in PHP_FUNCTION()
543 } else if (code == 'v') { in PHP_FUNCTION()
568 if (code == 'N') { in PHP_FUNCTION()
570 } else if (code == 'V') { in PHP_FUNCTION()
588 if (code == 'J') { in PHP_FUNCTION()
590 } else if (code == 'P') { in PHP_FUNCTION()