HomeSort by relevance Sort by last modified time
    Searched refs:printf (Results 51 - 75 of 3907) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/bindings/python/tests/cindex/INPUTS/
hello.cpp 4 printf("hello world\n");
  /external/clang/test/CodeGen/
shared-string-literals.c 8 printf("123");
writable-strings.c 6 printf("%s", str);
  /external/clang/test/Driver/
hello.c 16 printf("I'm a little driver, short and stout.");
  /external/clang/test/SemaCXX/
format-strings-0x.cpp 5 extern int printf(const char *restrict, ...);
11 printf("%a", 1.0);
13 printf(nullptr);
14 printf(*sp); // expected-warning {{not a string literal}}
  /external/valgrind/main/memcheck/tests/
inits.c 14 if (gs == 0xCAFEBABE) printf("1!\n");
15 if (g == 0xCAFEBABE) printf("2!\n");
16 if (ls == 0xCAFEBABE) printf("3!\n");
17 if (l == 0xCAFEBABE) printf("4!\n"); // complains
wrap1.c 12 printf("in actual\n");
22 printf("wrapper-pre\n");
24 printf("wrapper-post\n");
31 printf("starting\n");
  /external/valgrind/main/none/tests/
selfrun.c 6 printf("RUNNING_ON_VALGRIND=%d\n", RUNNING_ON_VALGRIND);
  /frameworks/compile/libbcc/tests/data/src/
double.c 4 printf("Value = %g\n", atof("10.42"));
assignmentop.c 6 printf("2 *= 5 %d\n", a);
9 printf("20 /= 5 %d\n", a);
12 printf("17 %%= 5 %d\n", a);
15 printf("17 += 5 %d\n", a);
18 printf("17 -= 5 %d\n", a);
21 printf("17<<= 1 %d\n", a);
24 printf("17>>= 1 %d\n", a);
27 printf("17&= 1 %d\n", a);
30 printf("17^= 1 %d\n", a);
33 printf("16|= 1 %d\n", a)
    [all...]
  /ndk/tests/build/multi-abi/jni/
main.c 5 printf("Hello world!\n");
  /ndk/tests/build/multi-module-path/jni/
test.c 6 printf("The answer is %d\n", bar());
  /ndk/tests/build/ndk-out/jni/
main.c 3 printf("Hello NDK_OUT!\n");
  /external/clang/test/Sema/
check-increment.c 3 int printf(const char *, ...);
9 printf("%d\n", *p);
format-strings-c90.c 5 int printf(const char *restrict, ...);
14 printf("%a", 1.0);
15 printf("%as", 1.0);
16 printf("%aS", 1.0);
17 printf("%a[", 1.0);
18 printf("%afoo", 1.0);
  /external/valgrind/main/none/tests/x86/
cse_fail.c 31 printf("V128 cse:\n");
43 printf("F64i cse:\n");
  /external/compiler-rt/BlocksRuntime/tests/
localisglobal.c 19 void (^global)(void) = ^{ printf("hello world\n"); };
28 void (^local)(void) = ^ { printf("hi %d\n", i); };
29 void (^localisglobal)(void) = ^ { printf("hi\n"); };
32 printf("local block could be global, but isn't\n");
36 printf("local block is not global, not stack, what is it??\n");
39 printf("%s: success\n", argv[0]);
recursive-test.c 22 if (verbose) printf("recursive_local_block is a local recursive block\n");
24 if (verbose) printf("%d\n", i);
30 if (verbose) printf("recursive_local_block's address is %p, running it:\n", (void*)recursive_local_block);
33 if (verbose) printf("Creating other_local_block: a local block that calls recursive_local_block\n");
36 if (verbose) printf("other_local_block running\n");
40 if (verbose) printf("other_local_block's address is %p, running it:\n", (void*)other_local_block);
45 if (verbose) printf("Creating other_copied_block: a Block_copy of a block that will call recursive_local_block\n");
48 if (verbose) printf("other_copied_block running\n");
52 if (verbose) printf("other_copied_block's address is %p, running it:\n", (void*)other_copied_block);
59 if (verbose) printf("Creating recursive_copy_block: a Block_copy of a block that will call recursive_copy_block recurs (…)
    [all...]
  /bootable/recovery/minui/
mkfont.c 16 printf("struct {\n");
17 printf(" unsigned width;\n");
18 printf(" unsigned height;\n");
19 printf(" unsigned cwidth;\n");
20 printf(" unsigned cheight;\n");
21 printf(" unsigned char rundata[];\n");
22 printf("} font = {\n");
23 printf(" .width = %d,\n .height = %d,\n .cwidth = %d,\n .cheight = %d,\n", gimp_image.width, gimp_image.height,
25 printf(" .rundata = {\n");
39 printf("0x%02x,",run_count | (run_val ? 0x80 : 0x00))
    [all...]
  /external/qemu-pc-bios/vgabios/
vbetables-gen.c 99 printf("/* THIS FILE IS AUTOMATICALLY GENERATED - DO NOT EDIT */\n\n");
100 printf("#define VBE_DISPI_TOTAL_VIDEO_MEMORY_MB %d\n\n", VBE_DISPI_TOTAL_VIDEO_MEMORY_MB);
101 printf("static ModeInfoListItem mode_info_list[]=\n");
102 printf("{\n");
110 printf("{ 0x%04x, /* %dx%dx%d */\n",
113 printf("{ /*Bit16u ModeAttributes*/ %s,\n",
120 printf("{ /*Bit16u ModeAttributes*/ %s,\n",
126 printf("/*Bit8u WinAAttributes*/ %s,\n",
131 printf("/*Bit8u WinBAttributes*/ %d,\n", 0);
133 printf("/*Bit16u WinGranularity*/ %s,\n", "VBE_DISPI_BANK_SIZE_KB")
    [all...]
  /external/dropbear/libtomcrypt/demos/
test.c 19 printf("build == \n%s\n", crypt_build_settings);
20 printf("\nstore_test...."); fflush(stdout); x = store_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
21 printf("\ncipher_test..."); fflush(stdout); x = cipher_hash_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
22 printf("\nmodes_test...."); fflush(stdout); x = modes_test(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
23 printf("\nder_test......"); fflush(stdout); x = der_tests(); printf(x ? "failed" : "passed");if (x) exit(EXIT_FAILURE);
24 printf("\nmac_test......"); fflush(stdout); x = mac_test(); printf(x ? "failed" : "passed");if (x (…)
    [all...]
  /external/valgrind/main/none/tests/s390x/
mvst.c 40 printf("CC:%d\n", mvst(target, buffer));
41 printf("%s\n", target);
42 printf("CC:%d\n",mvst_full(target, bigbuf));
43 printf("%s\n", target);
46 printf("%s\n", (char *) &t);
47 printf("CC:%d\n",mvst(&t,&s));
48 printf("%s\n", (char *) &t);
  /external/e2fsprogs/lib/blkid/
tst_types.c 21 printf("Sizeof(__u8) is %d should be 1\n",
26 printf("Sizeof(_s8) is %d should be 1\n",
31 printf("Sizeof(__u16) is %d should be 2\n",
36 printf("Sizeof(__s16) is %d should be 2\n",
41 printf("Sizeof(__u32) is %d should be 4\n",
46 printf("Sizeof(__s32) is %d should be 4\n",
51 printf("Sizeof(__u64) is %d should be 8\n",
56 printf("Sizeof(__s64) is %d should be 8\n",
60 printf("The blkid_types.h types are correct.\n");
  /external/e2fsprogs/lib/ext2fs/
tst_types.c 21 printf("Sizeof(__u8) is %d should be 1\n",
26 printf("Sizeof(_s8) is %d should be 1\n",
31 printf("Sizeof(__u16) is %d should be 2\n",
36 printf("Sizeof(__s16) is %d should be 2\n",
41 printf("Sizeof(__u32) is %d should be 4\n",
46 printf("Sizeof(__s32) is %d should be 4\n",
51 printf("Sizeof(__u64) is %d should be 8\n",
56 printf("Sizeof(__s64) is %d should be 8\n",
60 printf("The ext2_types.h types are correct.\n");
  /external/stlport/test/compiler/StTerm-order/
stterm-test.cc 75 printf( "Init::Init()\n" );
77 printf( "Init ctor done\n" );
82 printf( "Init dtor done\n" );
87 printf( "Init::use_it\n" );
91 printf( "Init::use_it done\n" );
96 printf( "Init2 ctor done\n" );
101 printf( "Init2 dtor done\n" );
106 printf( "It ctor done\n" );
111 printf( "It dtor done\n" );

Completed in 2572 milliseconds

1 23 4 5 6 7 8 91011>>