Lines Matching refs:code

61 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: integer overflow in format string", code); \
145 char code = format[i++]; in PHP_FUNCTION() local
166 switch ((int) code) { in PHP_FUNCTION()
172 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: '*' ignored", code); in PHP_FUNCTION()
187 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: not enough arguments", code); in PHP_FUNCTION()
197 if (code == 'Z') { in PHP_FUNCTION()
244 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: too few arguments", code); in PHP_FUNCTION()
253 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: unknown format code", code); in PHP_FUNCTION()
257 formatcodes[formatcount] = code; in PHP_FUNCTION()
267 int code = (int) formatcodes[i]; in PHP_FUNCTION() local
270 switch ((int) code) { in PHP_FUNCTION()
325 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: outside of string", code); in PHP_FUNCTION()
346 int code = (int) formatcodes[i]; in PHP_FUNCTION() local
350 switch ((int) code) { in PHP_FUNCTION()
354 int arg_cp = (code != 'Z') ? arg : MAX(0, arg - 1); in PHP_FUNCTION()
355 memset(&output[outputpos], (code == 'a' || code == 'Z') ? '\0' : ' ', arg); in PHP_FUNCTION()
369 int nibbleshift = (code == 'h') ? 0 : 4; in PHP_FUNCTION()
381 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: not enough characters in string", code); in PHP_FUNCTION()
395 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Type %c: illegal hex digit %c", code, n); in PHP_FUNCTION()
427 if (code == 'n') { in PHP_FUNCTION()
429 } else if (code == 'v') { in PHP_FUNCTION()
454 if (code == 'N') { in PHP_FUNCTION()
456 } else if (code == 'V') { in PHP_FUNCTION()
474 if (code == 'J') { in PHP_FUNCTION()
476 } else if (code == 'P') { in PHP_FUNCTION()