/system/extras/tests/bionic/libc/other/ |
test_atomics.c | 11 printf("old_x=%d\n", __atomic_dec(&x)); 12 printf("x=%d\n", x); 15 printf ("OK\n");
|
/external/e2fsprogs/lib/uuid/ |
tst_uuid.c | 54 printf("%s is %s", uuid, validStr[isValid]); 56 printf(" but uuid_parse says %s\n", validStr[parsedOk]); 59 printf(", OK\n"); 83 printf("UUID generate = %s\n", str); 84 printf("UUID: "); 86 printf("%02x", *cp++); 88 printf("\n"); 90 printf("UUID type = %d, UUID variant = %d\n", type, variant); 92 printf("Incorrect UUID Variant; was expecting DCE!\n"); 95 printf("\n") [all...] |
/external/valgrind/main/none/tests/s390x/ |
tcxb.c | 51 printf("%d", tcxb(+0.0l, 1UL<<i)); 52 printf("%d", tcxb(-0.0l, 1UL<<i)); 53 printf("%d", tcxb(+2.2l, 1UL<<i)); 54 printf("%d", tcxb(-2.2l, 1UL<<i)); 55 printf("%d", tcxb(+INFINITY, 1UL<<i)); 56 printf("%d", tcxb(-INFINITY, 1UL<<i)); 57 printf("%d", tcxb(+NAN, 1UL<<i)); 58 printf("%d", tcxb(-NAN, 1UL<<i)); 61 printf("%d", tcdb(+0.0l, 1UL<<i)); 62 printf("%d", tcdb(-0.0l, 1UL<<i)) [all...] |
stfle.c | 18 printf("the value of cc is %d and #double words is %llu\n", cc, __nr + 1); 24 printf("code needs to be updated\n"); 36 printf("The z/Architecture architectural mode is installed and active\n"); 38 printf("The z/Architecture architectural mode is not installed\n"); 42 printf("STFLE facility is installed\n"); 44 printf("STFLE facility is not installed\n"); 51 printf("The z/Architecture architectural mode is installed and active\n"); 53 printf("The z/Architecture architectural mode is not installed\n");
|
/external/compiler-rt/BlocksRuntime/tests/ |
blockimport.c | 33 printf("intblock returns %d\n", intblock()); 38 //printf("Block dump %s\n", _Block_dump(vv)); 41 printf("isa %p\n", layout->isa); 42 printf("flags %x\n", layout->flags); 43 printf("descriptor %p\n", layout->descriptor); 44 printf("descriptor->size %d\n", layout->descriptor->size); 49 printf("%s: success\n", argv[0]);
|
block-static.c | 18 printf("%s: success\n", argv[0]); 21 printf("**** did not update static local, rdar://6177162\n");
|
orbars.c | 20 void (^b)(void) = ^(void){ | i | printf("hello world, %d\n", ++i); }; 21 printf("%s: success :-(\n", argv[0]);
|
/external/valgrind/main/none/tests/x86/ |
pushpopseg.c | 26 printf("sp change after push = %ld\n", sp2 - sp1); 27 printf("sp change after pop = %ld\n", sp3 - sp2); 28 printf("fs after push and pop = %04x\n", fs1); 42 printf("sp change after push = %ld\n", sp2 - sp1); 43 printf("sp change after pop = %ld\n", sp3 - sp2); 44 printf("fs after push and pop = %04x\n", fs1);
|
fcmovnu.c | 9 printf("zzz = %f\n", zzz); 22 printf("zzz = %f\n", zzz);
|
lahf.c | 30 printf("0x%x\n", foo_0()); 31 printf("0x%x\n", foo_1());
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
captest.c | 62 printf("Error getting capabilities\n"); 73 printf("Attempting to regain root..."); 77 printf("SUCCESS - PRIVILEGE ESCALATION POSSIBLE\n"); 82 printf("FAILED\n"); 84 printf("Child "); 86 printf("User credentials uid:%d euid:%d suid:%d\n", uid, euid, suid); 88 printf("Child "); 89 printf("Group credentials gid:%d egid:%d sgid:%d\n", gid, egid, sgid); 91 printf("Note: app has mismatching credentials!!\n"); 97 printf("Child capabilities: none\n") [all...] |
/system/core/toolbox/ |
lsusb.c | 46 printf(" Device Descriptor\n"); 47 printf("\tbcdUSB: %04x\n", letoh16(desc->bcdUSB)); 48 printf("\tbDeviceClass: %02x\n", desc->bDeviceClass); 49 printf("\tbDeviceSubClass: %02x\n", desc->bDeviceSubClass); 50 printf("\tbDeviceProtocol: %02x\n", desc->bDeviceProtocol); 51 printf("\tbMaxPacketSize0: %02x\n", desc->bMaxPacketSize0); 52 printf("\tidVendor: %04x\n", letoh16(desc->idVendor)); 53 printf("\tidProduct: %04x\n", letoh16(desc->idProduct)); 54 printf("\tbcdDevice: %04x\n", letoh16(desc->bcdDevice)); 55 printf("\tiManufacturer: %s\n", get_str(dev, desc->iManufacturer)) [all...] |
/development/host/windows/usb/adb_winapi_test/ |
adb_winapi_test.cpp | 80 printf("\nNo ADB interfaces found. Make sure that device is "
97 printf("\nEnum interfaces failure:");
98 printf("\nUnable to enumerate ADB interfaces: %u", GetLastError());
115 printf("\nFound interface %ws:", interface_info.device_name);
117 printf(" ACTIVE");
119 printf(" DEFAULT");
121 printf(" REMOVED");
135 printf("\nTest interfaces failure:");
136 printf("\nUnable to enumerate ADB interfaces: %u", GetLastError());
161 printf("\nUnable to create interface by VID/PID: %u", GetLastError()); [all...] |
/external/chromium_org/tools/gyp/test/actions-multiple/src/ |
main.c | 15 printf("{\n"); 20 printf("}\n");
|
/external/chromium_org/tools/gyp/test/dependencies/sharedlib-linksettings/ |
program.c | 22 printf("%d\n", staticLibFunc()); 23 printf("%d\n", TEST_DEFINE);
|
/external/chromium_org/tools/gyp/test/toolsets/ |
main.cc | 11 printf("%s\n", GetToolset()); 12 printf("Shared: %s\n", GetToolsetShared());
|
/external/clang/test/CodeGenCXX/ |
default-constructor-for-members.cpp | 7 extern "C" int printf(...); 10 S() { printf("S::S()\n"); }
|
vararg-conversion-ctor.cpp | 4 extern "C" int printf(...); 8 printf("A::A(...)\n");
|
/external/e2fsprogs/ |
wordwrap.pl | 18 printf(" "); 23 printf("\\\n "); 26 printf("%s", $word); 28 printf("\n");
|
/external/libmtp/examples/ |
format.c | 59 printf("No devices.\n"); 63 printf("I will now format your device. This means that\n"); 64 printf("all content (and licenses) will be lost forever.\n"); 65 printf("you will not be able to undo this operation.\n"); 66 printf("Continue? (y/n)\n"); 71 printf("Aborted.\n"); 76 printf("Failed to format device.\n"); 84 printf("OK.\n");
|
/external/valgrind/main/memcheck/tests/ |
badaddrvalue.c | 10 printf("17\n"); else printf("not 17\n");
|
/external/valgrind/main/none/tests/amd64/ |
fcmovnu.c | 9 printf("zzz = %f\n", zzz); 22 printf("zzz = %f\n", zzz);
|
/external/valgrind/main/none/tests/ppc32/ |
xlc_dbl_u32.c | 59 printf("pass\n"); 61 printf("fail\n");
|
/ndk/tests/build/topological-sort/jni/ |
main.c | 8 printf("foo(%d) = %d\n", x, foo(x)); 9 printf("bar(%d) = %d\n", x, bar(x));
|
/ndk/tests/device/exceptions-crash/jni/ |
foo.cpp | 8 ::printf("Hello "); 12 ::printf(" World!\n");
|