Home
last modified time | relevance | path

Searched refs:fprintf (Results 1 – 25 of 188) sorted by relevance

12345678

/php-src/Zend/Optimizer/
H A Dzend_dump.c39 fprintf(stderr, ", "); in zend_dump_ht()
46 fprintf(stderr, " =>"); in zend_dump_ht()
179 fprintf(stderr, " ["); in zend_dump_type_info()
181 fprintf(stderr, "!"); in zend_dump_type_info()
356 fprintf(stderr, "]"); in zend_dump_type_info()
1047 fprintf(stderr, in zend_dump_op_array()
1107 fprintf(stderr, in zend_dump_op_array()
1134 fprintf(stderr, in zend_dump_op_array()
1139 fprintf(stderr, in zend_dump_op_array()
1146 fprintf(stderr, in zend_dump_op_array()
[all …]
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_printint.c210 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()
358 fprintf(f, " "); in pcre2_printint()
382 fprintf(f, " "); in pcre2_printint()
389 fprintf(f, "\n"); in pcre2_printint()
400 fprintf(f, "\n"); in pcre2_printint()
547 fprintf(f, "{"); in pcre2_printint()
564 fprintf(f, "{"); in pcre2_printint()
577 fprintf(f, "]"); in pcre2_printint()
619 fprintf(f, "]{"); in pcre2_printint()
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_dump.c20 fprintf(f, ")\n"); in ir_dump()
51 fprintf(f, "\n"); in ir_dump()
139 fprintf(f, "}\n"); in ir_dump_dot()
161 fprintf(f, "}\n"); in ir_dump_use_lists()
208 fprintf(f, "\n"); in ir_dump_dessa_moves()
225 fprintf(f, "]\n"); in ir_dump_cfg_block()
234 fprintf(f, "]\n"); in ir_dump_cfg_block()
248 fprintf(f, "]\n"); in ir_dump_cfg_block()
475 fprintf(f, "}\n"); in ir_dump_live_ranges()
486 fprintf(f, "{\n"); in ir_dump_codegen()
[all …]
H A Dir_save.c18 fprintf(f, "("); in ir_print_proto()
25 fprintf(f, ", ..."); in ir_print_proto()
28 fprintf(f, "..."); in ir_print_proto()
84 fprintf(f, "\n"); in ir_save_dessa_moves()
96 fprintf(f, "{\n"); in ir_save()
111 fprintf(f, ";\n"); in ir_save()
150 fprintf(f, "]"); in ir_save()
159 fprintf(f, "]"); in ir_save()
161 fprintf(f, "\n"); in ir_save()
275 fprintf(f, ";"); in ir_save()
[all …]
/php-src/ext/standard/tests/strings/
H A Dfprintf_error.phpt2 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 Dfprintf_variation_001.phpt2 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 Dfprintf_variation_002.phpt2 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 Dfprintf_variation_009.phpt2 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 Dfprintf_variation_004.phpt2 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 Dfprintf_variation_005.phpt2 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 Dfprintf_variation_003.phpt2 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 Dfprintf_variation_003_64bit.phpt2 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 Dfprintf_variation_006.phpt2 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 Dfprintf_variation_006_64bit.phpt2 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 Dfprintf_variation_007.phpt2 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 Dfprintf_variation_007_64bit.phpt2 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 Dfprintf_variation_008.phpt2 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 Dfprintf_variation_008_64bit.phpt2 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-src/ext/gd/libgd/
H A Dpngtogd2.c20 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 Dgdtest.c35 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 Dgd2copypal.c19 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 Dgd2topng.c17 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()
/php-src/ext/fileinfo/libmagic/
H A Dprint.c59 (void) fprintf(stderr, "(%s,", in file_mdump()
65 (void) fprintf(stderr, "%c%d),", in file_mdump()
120 (void) fprintf(stderr, "%.8llx", in file_mdump()
159 (void)fprintf(stderr, "%s,", in file_mdump()
166 (void)fprintf(stderr, "%s,", in file_mdump()
173 (void)fprintf(stderr, "%s,", in file_mdump()
179 (void)fprintf(stderr, "%s,", in file_mdump()
186 (void)fprintf(stderr, "%s,", in file_mdump()
208 (void)fprintf(stderr, "%s,", in file_mdump()
214 (void)fprintf(stderr, "%s,", in file_mdump()
[all …]
/php-src/ext/opcache/
H A Dzend_accelerator_debug.c56 fprintf(fLog, "%s (" ZEND_ULONG_FMT "): ", time_string, (zend_ulong)tsrm_thread_id()); in zend_accel_error_va_args()
58 fprintf(fLog, "%s (%d): ", time_string, getpid()); in zend_accel_error_va_args()
63 fprintf(fLog, "Fatal Error "); in zend_accel_error_va_args()
66 fprintf(fLog, "Error "); in zend_accel_error_va_args()
69 fprintf(fLog, "Warning "); in zend_accel_error_va_args()
72 fprintf(fLog, "Message "); in zend_accel_error_va_args()
75 fprintf(fLog, "Debug "); in zend_accel_error_va_args()
80 fprintf(fLog, "\n"); in zend_accel_error_va_args()
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitLir.c1012 fprintf(compiler->verbose, "sp"); in sljit_verbose_reg()
1022 fprintf(compiler->verbose, "^"); in sljit_verbose_freg()
1238 fprintf(compiler->verbose, "],"); in check_sljit_emit_enter()
1295 fprintf(compiler->verbose, "],"); in check_sljit_set_context()
1376 fprintf(compiler->verbose, "\n"); in check_sljit_emit_return()
1392 fprintf(compiler->verbose, "\n"); in check_sljit_emit_return_to()
1415 fprintf(compiler->verbose, "\n"); in check_sljit_emit_op0()
1459 fprintf(compiler->verbose, ", "); in check_sljit_emit_op1()
1461 fprintf(compiler->verbose, "\n"); in check_sljit_emit_op1()
1832 fprintf(compiler->verbose, " "); in check_sljit_emit_fop1_cmp()
[all …]

Completed in 77 milliseconds

12345678