/PHP-8.0/ext/opcache/Optimizer/ |
H A D | zend_dump.c | 39 fprintf(stderr, ", "); in zend_dump_ht() 46 fprintf(stderr, " =>"); in zend_dump_ht() 175 fprintf(stderr, " ["); in zend_dump_type_info() 177 fprintf(stderr, "!"); in zend_dump_type_info() 322 fprintf(stderr, "]"); in zend_dump_type_info() 1001 fprintf(stderr, in zend_dump_op_array() 1061 fprintf(stderr, in zend_dump_op_array() 1088 fprintf(stderr, in zend_dump_op_array() 1093 fprintf(stderr, in zend_dump_op_array() 1100 fprintf(stderr, in zend_dump_op_array() [all …]
|
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_printint.c | 210 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring() 220 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring_bylen() 328 fprintf(f, " "); in pcre2_printint() 352 fprintf(f, " "); in pcre2_printint() 359 fprintf(f, "\n"); in pcre2_printint() 370 fprintf(f, "\n"); in pcre2_printint() 505 fprintf(f, "{"); in pcre2_printint() 522 fprintf(f, "{"); in pcre2_printint() 535 fprintf(f, "]"); in pcre2_printint() 577 fprintf(f, "]{"); in pcre2_printint() [all …]
|
/PHP-8.0/ext/opcache/ |
H A D | zend_accelerator_debug.c | 57 fprintf(fLog, "%s (" ZEND_ULONG_FMT "): ", time_string, (zend_ulong)tsrm_thread_id()); in zend_accel_error() 59 fprintf(fLog, "%s (%d): ", time_string, getpid()); in zend_accel_error() 64 fprintf(fLog, "Fatal Error "); in zend_accel_error() 67 fprintf(fLog, "Error "); in zend_accel_error() 70 fprintf(fLog, "Warning "); in zend_accel_error() 73 fprintf(fLog, "Message "); in zend_accel_error() 76 fprintf(fLog, "Debug "); in zend_accel_error() 83 fprintf(fLog, "\n"); in zend_accel_error()
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | fprintf_error.phpt | 2 Test fprintf() function (errors) 11 var_dump( fprintf() ); 18 var_dump( fprintf(3) ); 25 var_dump( fprintf(NULL) ); 34 fprintf() expects at least 2 arguments, 0 given 35 fprintf() expects at least 2 arguments, 1 given 36 fprintf() expects at least 2 arguments, 1 given
|
H A D | fprintf_variation_009.phpt | 2 Test fprintf() function (variation - 9) 16 fprintf($fp, "\n*** Testing fprintf() for string types ***\n"); 18 fprintf( $fp, "\n-- Iteration %d --\n",$counter); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, $string_var, $str ); 35 *** Testing fprintf() for string types ***
|
H A D | fprintf_variation_001.phpt | 2 Test fprintf() function (variation - 1) 16 fprintf($fp, "\n*** Testing fprintf() with floats ***\n"); 19 fprintf( $fp, "\n-- Iteration %d --\n",$counter); 21 fprintf( $fp, "\n"); 22 fprintf( $fp, $float_var, $float_num ); 35 *** Testing fprintf() with floats ***
|
H A D | fprintf_variation_002.phpt | 2 Test fprintf() function (variation - 2) 16 fprintf($fp, "\n*** Testing fprintf() with integers ***\n"); 18 fprintf( $fp, "\n-- Iteration %d --\n",$counter); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, $int_var, $int_num ); 35 *** Testing fprintf() with integers ***
|
H A D | fprintf_variation_004.phpt | 2 Test fprintf() function (variation - 4) 14 fprintf($fp, "\n*** Testing fprintf() for chars ***\n"); 16 fprintf( $fp, "\n"); 17 fprintf( $fp,"%c", $char ); 29 *** Testing fprintf() for chars ***
|
H A D | fprintf_variation_005.phpt | 2 Test fprintf() function (variation - 5) 14 fprintf($fp, "\n*** Testing fprintf() for scientific type ***\n"); 16 fprintf( $fp, "\n"); 17 fprintf( $fp, "%e", $num ); 29 *** Testing fprintf() for scientific type ***
|
H A D | fprintf_variation_006.phpt | 2 Test fprintf() function (variation - 6) 18 fprintf($fp, "\n*** Testing fprintf() for unsigned integers ***\n"); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, "%u", $unsig_num ); 33 *** Testing fprintf() for unsigned integers ***
|
H A D | fprintf_variation_006_64bit.phpt | 2 Test fprintf() function (variation - 6) 18 fprintf($fp, "\n*** Testing fprintf() for unsigned integers ***\n"); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, "%u", $unsig_num ); 33 *** Testing fprintf() for unsigned integers ***
|
H A D | fprintf_variation_007.phpt | 2 Test fprintf() function (variation - 7) 18 fprintf($fp, "\n*** Testing fprintf() for octals ***\n"); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, "%o", $octal_num ); 33 *** Testing fprintf() for octals ***
|
H A D | fprintf_variation_007_64bit.phpt | 2 Test fprintf() function (variation - 7) 18 fprintf($fp, "\n*** Testing fprintf() for octals ***\n"); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, "%o", $octal_num ); 33 *** Testing fprintf() for octals ***
|
H A D | fprintf_variation_003.phpt | 2 Test fprintf() function (variation - 3) 18 fprintf($fp, "\n*** Testing fprintf() with binary ***\n"); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, "%b", $bin_num ); 33 *** Testing fprintf() with binary ***
|
H A D | fprintf_variation_003_64bit.phpt | 2 Test fprintf() function (variation - 3) 18 fprintf($fp, "\n*** Testing fprintf() with binary ***\n"); 20 fprintf( $fp, "\n"); 21 fprintf( $fp, "%b", $bin_num ); 33 *** Testing fprintf() with binary ***
|
H A D | fprintf_variation_008.phpt | 2 Test fprintf() function (variation - 8) 19 fprintf($fp, "\n*** Testing fprintf() for hexadecimals ***\n"); 21 fprintf( $fp, "\n"); 22 fprintf( $fp, "%x", $hexa_num ); 34 *** Testing fprintf() for hexadecimals ***
|
H A D | fprintf_variation_008_64bit.phpt | 2 Test fprintf() function (variation - 8) 19 fprintf($fp, "\n*** Testing fprintf() for hexadecimals ***\n"); 21 fprintf( $fp, "\n"); 22 fprintf( $fp, "%x", $hexa_num ); 34 *** Testing fprintf() for hexadecimals ***
|
/PHP-8.0/ext/gd/libgd/ |
H A D | pngtogd2.c | 20 fprintf (stderr, "Usage: pngtogd2 filename.png filename.gd2 cs fmt\n"); in main() 21 fprintf (stderr, " where cs is the chunk size\n"); in main() 22 fprintf (stderr, " fmt is 1 for raw, 2 for compressed\n"); in main() 28 fprintf (stderr, "Input file does not exist!\n"); in main() 35 fprintf (stderr, "Input is not in PNG format!\n"); in main() 41 fprintf (stderr, "Output file cannot be written to!\n"); in main()
|
H A D | gd2copypal.c | 19 fprintf (stderr, "Usage: gd2copypal palettefile.gd2 filename.gd2\n"); in main() 25 fprintf (stderr, "Palette file does not exist!\n"); in main() 32 fprintf (stderr, "Palette is not in GD2 format!\n"); in main() 39 fprintf (stderr, "Input file does not exist!\n"); in main() 46 fprintf (stderr, "Input is not in GD2 format!\n"); in main() 55 fprintf (stderr, "Output file cannot be written to!\n"); in main()
|
H A D | gdtest.c | 35 fprintf (stderr, "Usage: gdtest filename.png\n"); in main() 41 fprintf (stderr, "Input file does not exist!\n"); in main() 67 fprintf (stderr, "PNG Output file does not exist!\n"); in main() 99 fprintf (stderr, "GD2 Output file does not exist!\n"); in main() 134 fprintf (stderr, "GD Output file does not exist!\n"); in main() 221 fprintf (stderr, "gdtest.gd2 does not exist!\n"); in main() 238 fprintf (stderr, "gdtest.png does not exist!\n"); in main() 292 fprintf (stderr, "gdImageCreateFromJpeg failed.\n"); in main() 328 fprintf (stderr, "WBMP colors are:\n"); in main() 331 fprintf (stderr, "%02X%02X%02X\n", in main() [all …]
|
H A D | gd2topng.c | 17 fprintf (stderr, "Usage: gd2topng filename.gd2 filename.png\n"); in main() 23 fprintf (stderr, "Input file does not exist!\n"); in main() 30 fprintf (stderr, "Input is not in GD2 format!\n"); in main() 36 fprintf (stderr, "Output file cannot be written to!\n"); in main() 43 fprintf(stderr, "No PNG library support available.\n"); in main()
|
H A D | gdparttopng.c | 19 fprintf (stderr, "Usage: gdparttopng filename.gd filename.png x y w h\n"); in main() 25 fprintf (stderr, "Input file does not exist!\n"); in main() 40 fprintf (stderr, "Input is not in GD2 format!\n"); in main() 46 fprintf (stderr, "Output file cannot be written to!\n"); in main() 53 fprintf(stderr, "No PNG library support.\n"); in main()
|
H A D | gdtopng.c | 16 fprintf (stderr, "Usage: gdtopng filename.gd filename.png\n"); in main() 22 fprintf (stderr, "Input file does not exist!\n"); in main() 29 fprintf (stderr, "Input is not in GD format!\n"); in main() 35 fprintf (stderr, "Output file cannot be written to!\n"); in main()
|
H A D | pngtogd.c | 17 fprintf (stderr, "Usage: pngtogd filename.png filename.gd\n"); in main() 23 fprintf (stderr, "Input file does not exist!\n"); in main() 30 fprintf (stderr, "Input is not in PNG format!\n"); in main() 36 fprintf (stderr, "Output file cannot be written to!\n"); in main()
|
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | print.c | 60 (void) fprintf(stderr, "(%s,", in file_mdump() 66 (void) fprintf(stderr, "%c%u),", in file_mdump() 121 (void) fprintf(stderr, "%.8llx", in file_mdump() 125 (void) fprintf(stderr, ",%c", m->reln); in file_mdump() 138 (void) fprintf(stderr, "%d", m->value.l); in file_mdump() 160 (void)fprintf(stderr, "%s,", in file_mdump() 167 (void)fprintf(stderr, "%s,", in file_mdump() 174 (void)fprintf(stderr, "%s,", in file_mdump() 180 (void)fprintf(stderr, "%s,", in file_mdump() 187 (void)fprintf(stderr, "%s,", in file_mdump() [all …]
|