/dalvik/vm/alloc/TEST/HeapBitmapTest/include/ |
Dalvik.h | 11 #define LOGW(...) printf("W/" __VA_ARGS__) 12 #define LOGE(...) printf("E/" __VA_ARGS__)
|
/external/clang/test/Parser/ |
block-block-storageclass.c | 2 int printf(const char *, ...); 13 printf ("%s(%d)\n", message, X);
|
/external/clang/test/Sema/ |
block-storageclass.c | 3 int printf(const char *, ...); 14 printf ("%s(%d)\n", message, X);
|
check-increment.c | 3 int printf(const char *, ...); 9 printf("%d\n", *p);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
bindings.c | 9 /* printd - printf that takes a double prints it as "%f\n", returning 0. */ 11 printf("%f\n", X);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
bindings.c | 9 /* printd - printf that takes a double prints it as "%f\n", returning 0. */ 11 printf("%f\n", X);
|
/external/llvm/test/CodeGen/ARM/ |
2009-04-08-FREM.ll | 3 declare i32 @printf(i8*, ...) 7 %1 = call i32 (i8*, ...)* @printf(i8* null, double %rem_r) ; <i32> [#uses=0]
|
/external/valgrind/main/memcheck/tests/ |
erringfds.c | 13 printf("fd = %d\n", fd); 15 printf ("n = %d\n", n);
|
malloc3.c | 12 printf("malloc(0) = 0x%lx\n", (unsigned long)p); 16 printf("malloc(-1) = 0x%lx\n", (unsigned long)p); 20 printf("calloc(0,1) = 0x%lx\n", (unsigned long)p); 24 printf("calloc(0,-1) = 0x%lx\n", (unsigned long)p); 31 printf("calloc(-1,-1) = 0x%lx\n", (unsigned long)p);
|
/external/valgrind/main/none/tests/ |
resolv.c | 8 printf("PRE _res.nscount = %d\n", _res.nscount); 11 printf("POST _res.nscount = %d\n", ( int ) _res.nscount > 0 );
|
/frameworks/compile/libbcc/tests/data/src/ |
char.c | 7 printf("a = %d, b = %d\n", a, b); 10 printf("ga = %d, gb = %d\n", ga, gb);
|
/external/dropbear/libtomcrypt/notes/etc/ |
whirlgen.c | 45 // for (x = 0; x < 16; x++) printf("%2x ", sbox(x)); 53 printf("\n"); 55 for (x = 0; x < 8; x++) printf("%2d ", cir[y][x]); 56 printf("\n"); 61 printf("static const ulong64 sbox%d[] = {\n", y); 63 printf("CONST64(0x%02x%02x%02x%02x%02x%02x%02x%02x)", 72 if (x < 255) printf(", "); 73 if (!(++x & 3)) printf("\n"); 75 printf("};\n\n"); 78 printf("static const ulong64 cont[] = {\n") [all...] |
/external/qemu-pc-bios/vgabios/tests/ |
testbios.c | 51 printf("We are now at 24/17");
59 printf("\nCursor is ax%04x cx%04x dx%04x\n",regs->r_ax,regs->r_cx,regs->r_dx);
69 printf("We are now on page 2");
79 printf("Scrolled 2 up");
89 printf("Scrolled 2 down");
105 {printf("%02x ",attr);
110 printf("\n");
144 printf("Read state info in %04x:%04x\n",regs->r_es,regs->r_di);
148 {if(i%16==0)printf("\n%02x ",i);
149 printf("%02x ",table[i]); [all...] |
/system/extras/tests/bionic/libc/common/ |
test_gethostbyname.c | 47 printf("gethostbyname(%s) returned NULL !!\n", hostname); 50 printf( "gethostbyname(%s) returned:\n", hostname); 51 printf( " name: %s\n", hent->h_name ); 52 printf( " aliases:" ); 54 printf( " %s", hent->h_aliases[i] ); 55 printf( "\n" ); 56 printf( " address type: " ); 58 case AF_INET: printf( "AF_INET\n"); break; 59 case AF_INET6: printf( "AF_INET6\n"); break; 60 default: printf("UNKNOWN (%d)\n", hent->h_addrtype) [all...] |
test_semaphore.c | 52 printf( "thread 1: waiting for semaphore\n" ); 54 printf( "thread 1: could not wait for semaphore: %s\n", strerror(errno) ); 57 printf( "thread 1: got the semaphore ! sleeping for 2 seconds\n" ); 59 printf( "thread 1: awake !! posting semaphore\n" ); 61 printf( "thread 2: could not post semaphore: %s\n", strerror(errno) ); 63 printf( "thread 1: quitting\n" ); 70 printf( "thread 2: sleeping for 1 second\n" ); 72 printf( "thread 2: awake !! waiting for semaphore\n" ); 74 printf( "thread 2: could not wait for semaphore: %s\n", strerror(errno) ); 77 printf( "thread 2: got the semaphore ! sleeping for 2 seconds\n" ) [all...] |
/external/clang/test/CodeGen/ |
constructor-attribute.c | 7 int printf(const char *, ...); 13 printf("A\n"); 17 printf("B\n"); 29 printf("A: %d\n", foo()); 33 printf("B\n");
|
/external/clang/test/CodeGenCXX/ |
copy-constructor-elim.cpp | 5 extern "C" int printf(...); 9 C() : iC(6) {printf("C()\n"); } 10 C(const C& c) { printf("C(const C& c)\n"); } 22 printf("X(const X&, %d, %d, %d)\n", i, j, c.iC); 31 S::S() { printf("S()\n"); }
|
reference-in-blocks.cpp | 3 extern "C" int printf(const char*, ...); 18 printf(" field = %d\n", field); 19 printf(" field = %f\n", d1); 35 void (^bl)(range<int> ) = ^(range<int> i){printf("Hello Blocks %d\n", i.get()); }; 38 void (^bl2)(range<int>& ) = ^(range<int>& i){printf("Hello Blocks %d\n", i.get()); };
|
/external/clang/test/Rewriter/ |
rewrite-local-externs-in-block.mm | 5 extern "C" int printf(const char*, ...); 13 printf ("%d %d %d\n", myArr[0], myArr[1], myArr[2]); 16 printf ("%d %d %d\n", myArr[0], myArr[1], myArr[2]); 19 printf ("%d %d %d\n", myArr[0], myArr[1], myArr[2]); 22 printf ("%d %d %d\n", myArr[0], myArr[1], myArr[2]);
|
/external/oprofile/libopagent/ |
bfddefines.c | 33 printf("/* automatically generated by bfddefines, do not edit*/\n"); 34 printf("#define BFD_TARGET_NAME \"%s\"\n", bfd->xvec->name); 35 printf("#define BFD_ARCH %i\n", bfd_get_arch(bfd)); 36 printf("#define BFD_MACH %lu\n", bfd_get_mach(bfd)); 37 printf("#define BFD_PRINTABLE_NAME \"%s\"\n", bfd_printable_name(bfd));
|
/external/tcpdump/ |
print-sctp.c | 94 (void)printf("truncated-sctp - %ld bytes missing!", 107 (void)printf("%s.%d > %s.%d: sctp", 115 (void)printf("%s.%d > %s.%d: sctp", 145 printf("%s%d) [Bad chunk length %u]", sep, chunkCount+1, chunkLength); 158 printf("%s%d) ", sep, chunkCount+1); 165 printf("[DATA] "); 169 printf("(U)"); 173 printf("(B)"); 177 printf("(E)"); 187 printf(" "); [all...] |
print-pptp.c | 281 printf(" BEARER_CAP("); 283 printf("D"); 286 printf("A"); 288 printf(")"); 294 printf(" BEARER_TYPE("); 297 printf("A"); /* Analog */ 300 printf("D"); /* Digital */ 303 printf("Any"); 306 printf("?"); 309 printf(")"); [all...] |
/frameworks/compile/linkloader/tests/images/ |
test.c | 19 printf(ptr); 43 printf("%d %f\n", local_static_z_i, local_static_z_d); 44 printf("%d %f\n", local_static_z_i_init, local_static_z_d_init); 50 printf("%d %f\n", global_z_i, global_z_d); 53 printf("%d %f\n", global_big_z_i[100], global_big_z_d[100]); 56 printf("%d %f\n", global_static_z_i, global_static_z_d); 59 printf("%d %f\n", local_z_i, local_z_d); 62 printf("%d %f\n", global_static_big_z_i[500], global_static_big_z_d[500]); 65 printf("%d %f\n", global_z_i_init, global_z_d_init); 66 /*printf("%d %f\n", extern_z_i, extern_z_d);* [all...] |
/external/clang/test/CodeGenObjC/ |
property-complex.m | 24 printf("im0: %.2f + %.2fi\n", __real iv0, __imag iv0); 28 printf("setIm0: %.2f + %.2fi\n", __real a0, __imag a0); 33 printf("p0: %.2f + %.2fi\n", __real iv0, __imag iv0); 37 printf("setP0: %.2f + %.2fi\n", __real a0, __imag a0); 52 printf("l0: %.2f + %.2fi\n", __real l0, __imag l0); 53 printf("l1: %.2f + %.2fi\n", __real l1, __imag l1); 54 printf("l2: %.2f + %.2fi\n", __real l2, __imag l2); 55 printf("l3: %.2f + %.2fi\n", __real l3, __imag l3); 56 printf("l4: %.2f + %.2fi\n", __real l4, __imag l4); 57 printf("l5: %.2f + %.2fi\n", __real l5, __imag l5) [all...] |
/external/iptables/extensions/ |
libipt_ah.c | 11 printf( 42 printf("%s", name); 44 printf(":%s", inv); 45 printf("%u", min); 47 printf("s:%s", inv); 48 printf("%u",min); 49 printf(":"); 50 printf("%u",max); 60 printf(" ah "); 64 printf(" Unknown invflags: 0x%X" [all...] |