Searched refs:printf (Results 1 - 25 of 5294) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/test/tst/common/types/
H A Dtst.basics.d42 printf("\nsizeof (char) = %u\n", sizeof (char));
43 printf("sizeof (signed char) = %u\n", sizeof (signed char));
44 printf("sizeof (unsigned char) = %u\n", sizeof (unsigned char));
45 printf("sizeof (short) = %u\n", sizeof (short));
46 printf("sizeof (signed short) = %u\n", sizeof (signed short));
47 printf("sizeof (unsigned short) = %u\n", sizeof (unsigned short));
48 printf("sizeof (int) = %u\n", sizeof (int));
49 printf("sizeof (signed int) = %u\n", sizeof (signed int));
50 printf("sizeof (unsigned int) = %u\n", sizeof (unsigned int));
51 printf("sizeo
[all...]
H A Dtst.inttypes.d39 printf("sizeof (int8_t) = %u\n", sizeof (int8_t));
40 printf("sizeof (int16_t) = %u\n", sizeof (int16_t));
41 printf("sizeof (int32_t) = %u\n", sizeof (int32_t));
42 printf("sizeof (int64_t) = %u\n", sizeof (int64_t));
43 printf("sizeof (intptr_t) = %u\n", sizeof (intptr_t));
44 printf("sizeof (uint8_t) = %u\n", sizeof (uint8_t));
45 printf("sizeof (uint16_t) = %u\n", sizeof (uint16_t));
46 printf("sizeof (uint32_t) = %u\n", sizeof (uint32_t));
47 printf("sizeof (uint64_t) = %u\n", sizeof (uint64_t));
48 printf("sizeo
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/features/
H A Dmap.c45 printf("#pragma prototyped\n");
46 printf("\n");
47 printf("/*\n");
48 printf(" * prototypes provided for standard interfaces hijacked\n");
49 printf(" * by ast and mapped to _ast_* but already prototyped\n");
50 printf(" * unmapped in native headers included by <ast_std.h>\n");
51 printf(" */\n");
52 printf("\n");
53 printf("#if _BLD_ast && defined(__EXPORT__)\n");
54 printf("#defin
[all...]
/macosx-10.10.1/vim-55/runtime/tools/
H A Dvimm3 printf "\033[1;2'z\033[1;3'{\c"
6 printf "\033[2;4'{\033[0'z\c"
/macosx-10.10.1/dtrace-147/test/tst/common/printf/
H A Dtst.precs.d33 * SECTION: Output Formatting/printf()
40 printf("\n");
43 printf("%.0s\n", "hello");
44 printf("%.1s\n", "hello");
45 printf("%.2s\n", "hello");
46 printf("%.3s\n", "hello");
47 printf("%.4s\n", "hello");
48 printf("%.5s\n", "hello");
50 printf("%.*s\n", x++, "hello");
51 printf("
[all...]
H A Dtst.widths.d33 * SECTION: Output Formatting/printf()
41 printf("\n");
44 printf("%0d\n", 1);
45 printf("%1d\n", 1);
46 printf("%2d\n", 1);
47 printf("%3d\n", 1);
48 printf("%4d\n", 1);
49 printf("%5d\n", 1);
51 printf("%*d\n", x++, 1);
52 printf("
[all...]
H A Dtst.ints.d31 * Test printf() with simple integer arguments, using a variety of
34 * SECTION: Output Formatting/printf()
42 printf("\n%d\n", (char)0x1234567890abcdef);
43 printf("%d\n", (short)0x1234567890abcdef);
44 printf("%d\n", (int)0x1234567890abcdef);
45 printf("%d\n", (long long)0x1234567890abcdef);
47 printf("\n%d\n", (unsigned char)0x1234567890abcdef);
48 printf("%d\n", (unsigned short)0x1234567890abcdef);
49 printf("%d\n", (unsigned int)0x1234567890abcdef);
50 printf("
[all...]
H A Derr.D_PRINTF_AGG_CONV.aggfmt.d31 * Test printf() with a bad aggregation format.
33 * SECTION: Output Formatting/printf()
39 printf("hello %@d", 123);
H A Derr.D_PRINTF_ARG_EXTRA.toomany.d31 * Test printf() with too many arguments.
33 * SECTION: Output Formatting/printf()
39 printf("x = %d y = %d\n", 123, 456, 789);
H A Derr.D_PRINTF_ARG_FMT.badfmt.d31 * Test printf() with a bad format string arg.
33 * SECTION: Output Formatting/printf()
39 printf(123);
H A Derr.D_PRINTF_ARG_PROTO.novalue.d31 * Test printf() with a missing value argument.
33 * SECTION: Output Formatting/printf()
39 printf("%s");
H A Derr.D_PRINTF_DYN_PROTO.noprec.d31 * Test printf() with a missing dynamic precision argument.
33 * SECTION: Output Formatting/printf()
39 printf("%s %.*d\n", "foo");
H A Derr.D_PRINTF_DYN_PROTO.nowidth.d31 * Test printf() with a missing dynamic width argument.
33 * SECTION: Output Formatting/printf()
39 printf("%s %*d\n", "foo");
H A Derr.D_PRINTF_DYN_TYPE.badprec.d33 * SECTION: Output Formatting/printf()
39 printf("%.*d\n", "foo", 1);
H A Derr.D_PRINTF_DYN_TYPE.badwidth.d33 * SECTION: Output Formatting/printf()
39 printf("%*d\n", "foo", 1);
H A Derr.D_PROTO_LEN.toofew.d31 * Test printf() with too few arguments.
33 * SECTION: Output Formatting/printf()
39 printf();
H A Derr.D_SYNTAX.badconv1.d33 * SECTION: Output Formatting/printf()
39 printf("%3$d", 123);
H A Derr.D_SYNTAX.badconv2.d33 * SECTION: Output Formatting/printf()
39 printf("%3", 123);
H A Derr.D_SYNTAX.badconv3.d33 * SECTION: Output Formatting/printf()
39 printf("%Z", 123);
H A Derr.D_PRINTF_ARG_TYPE.different-encoding.d24 * Test printf(), should not allow printing an integer/float in a specific format if
27 * SECTION: Output Formatting/printf()
33 printf("%lx\n", timestamp);
34 printf("%ld\n", timestamp);
H A Dtst.flags.d34 * SECTION: Output Formatting/printf()
42 printf("\n");
43 printf("# %#8x\n", 0x123);
44 printf("0 %08x\n", 0x123);
45 printf("- %-8x\n", 0x123);
46 printf("+ %+8d\n", 123);
47 printf(" % 8d\n", 123);
H A Dtst.printcont.d33 * SECTION: Output Formatting/printf()
44 printf("%u\n", ts);
45 printf("%u\n", ts);
46 printf("%u\n", ts);
47 printf("%u\n", ts);
48 printf("%u\n", ts);
49 printf("%u\n", ts);
50 printf("%u\n", ts);
51 printf("%u\n", ts);
52 printf("
[all...]
/macosx-10.10.1/ntp-92/scripts/stats/
H A Detf.awk16 printf "%5s %9.3f %7.1f %10.3e\n", $1, $2, $6, $9
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dz8kgen.c743 printf ("%s", table->token);
751 printf ("**** Can't find %s\n", x);
763 printf ("{");
772 printf (",");
777 printf ("0,");
780 printf ("}");
802 printf ("\"%s\",OPC_%s,0,{", *name, *name);
814 printf (",");
818 printf ("0");
820 printf ("},");
[all...]
/macosx-10.10.1/OpenSSL098-52/src/bugs/
H A Dultrixcc.c26 printf("7\n");
28 printf("6\n");
30 printf("5\n");
32 printf("4\n");
34 printf("3\n");
36 printf("2\n");
38 printf("1\n");

Completed in 146 milliseconds

1234567891011>>