/external/dropbear/libtommath/demo/ |
demo.c | 16 printf("%s: ", name); 18 printf("%s\n", buf); 73 printf("Testing montgomery...\n"); 75 printf("Testing digit size: %d\n", i); 95 printf("d = e mod a, c = e MOD a\n"); 96 mp_todecimal(&a, buf); printf("a = %s\n", buf); 97 mp_todecimal(&e, buf); printf("e = %s\n", buf); 98 mp_todecimal(&d, buf); printf("d = %s\n", buf); 99 mp_todecimal(&c, buf); printf("c = %s\n", buf); 100 printf("compare no compare!\n"); exit(EXIT_FAILURE); [all...] |
/system/bluetooth/tools/ |
sock_shutdown_test.c | 101 printf("%d: socket()\n", gettid()); 103 printf("%d: socket() = %d\n", gettid(), ret); 104 if (ret < 0) printf("\terr %d (%s)\n", errno, strerror(errno)); 112 printf("%d: close(%d)\n", gettid(), fd); 114 printf("%d: close(%d) = %d\n", gettid(), fd, ret); 115 if (ret < 0) printf("\terr %d (%s)\n", errno, strerror(errno)); 149 printf("%d: bind(%d)\n", gettid(), fd); 151 printf("%d: bind(%d) = %d\n", gettid(), fd, ret); 152 if (ret < 0) printf("\terr %d (%s)\n", errno, strerror(errno)); 160 printf("%d: listen(%d)\n", gettid(), fd) [all...] |
/external/tcpdump/ |
print-isakmp.c | 334 printf("%02x", p[i] & 0xff); 360 printf("[|attr]"); 364 printf("("); 367 printf("type=%s ", map[t].type); 369 printf("type=#%d ", t); 371 printf("value="); 374 printf("%s", map[t].value[v]); 378 printf("len=%d value=", EXTRACT_16BITS(&q[1])); 381 printf(")"); 398 printf("[|attr]") [all...] |
print-pim.c | 134 (void)printf(" RPF %s ", ipaddr_string(bp)); 137 (void)printf("Hold "); 140 (void)printf("%s (%s/%d, %s", njoin ? "Join" : "Prune", 144 (void)printf("/%s", ipaddr_string(&bp[16])); 145 (void)printf(") %s%s %s", 154 (void)printf("\n"); 155 (void)printf(" Upstream Nbr: %s", ipaddr_string(bp)); 158 (void)printf("\n"); 159 (void)printf(" Hold time: "); 178 (void)printf("\n\tGroup: %s", ipaddr_string(bp)) [all...] |
print-isoclns.c | 616 printf("|OSI"); 621 printf("OSI NLPID %s (0x%02x): ", 642 (void)printf("%slength: %u", 667 printf("OSI NLPID 0x%02x unknown",*p); 668 (void)printf("%slength: %u", 728 printf("CLNP"); 735 printf("version %d packet not supported", clnp_header->version); 758 printf("%s%s > %s, %s, length %u", 766 printf("%slength %u",eflag ? "" : ", ",length); 768 printf("\n\t%s PDU, hlen: %u, v: %u, lifetime: %u.%us, Segment PDU length: %u, checksum: 0x%04x " [all...] |
print-802_11.c | 54 printf(" ("); \ 56 printf(")"); \ 63 printf("%s%2.1f%s", _sep, (.5 * ((_r) & 0x7f)), _suf) 78 printf(" Mbit]"); \ 90 printf(" CH: %u", p.ds.channel); \ 95 printf("%s", \ 149 printf("Data IV:%3x Pad %x KeyID %x", IV_IV(iv), IV_PAD(iv), 279 printf("(1) unhandled element_id (%d) ", 318 printf(" %s", 367 printf(" AID(%x) :%s: %s", ((u_int16_t)(pbody.aid << 2 )) >> 2 [all...] |
/external/yaffs2/yaffs2/direct/ |
dtest.c | 30 printf("problem writing yaffs file\n"); 100 printf("pattern check failed on file %s, size %d at position %d. Got %x instead of %x\n", 124 printf("%s\n",fn); 127 printf("%02x",b); 131 printf("\n"); 135 printf("\n"); 151 printf("*****\nDump file %s does not exist\n",fn); 156 printf("*****\nDump file %s size %d\n",fn,size); 206 printf("=====>>>>> verification of file %s failed near position %d\n",fn,yaffs_lseek(h,0,SEEK_CUR)); 323 printf("\n*****************\nIteration %d\n",i) [all...] |
/external/bison/lib/ |
getopt1.c | 119 printf ("option %s", long_options[option_index].name); 121 printf (" with arg %s", optarg); 122 printf ("\n"); 136 printf ("digits occur in two different argv-elements.\n"); 138 printf ("option %c\n", c); 142 printf ("option a\n"); 146 printf ("option b\n"); 150 printf ("option c with value `%s'\n", optarg); 154 printf ("option d with value `%s'\n", optarg); 161 printf ("?? getopt returned character code 0%o ??\n", c) [all...] |
/external/clang/test/CodeGenCXX/ |
conversion-function.cpp | 6 extern "C" int printf(...); 20 public: operator int() { printf("operator int()\n"); return iX; } 21 public: operator float() { printf("operator float()\n"); return fX; } 30 operator X() { printf("perator X()\n"); x.iX += iZ; x.fX += fZ; return x; } 39 public: operator Z(){printf("perator Z()\n"); return z; } 56 printf("i = %d j = %d a.iO = %d b.iO = %d\n", i, j, a.iO, b.iO); 61 printf("c = %d\n", c); 63 printf("f = %f\n", f); 65 printf("i = %d float = %f\n", i, float(x)); 68 printf("i = %d float = %f\n", i,f) [all...] |
array-operator-delete-call.cpp | 7 extern "C" int printf(...); 12 S() : iS (++count) { printf("S::S(%d)\n", iS); } 13 ~S() { printf("S::~S(%d)\n", iS); } 18 V() : iV (++count) { printf("V::V(%d)\n", iV); } 19 virtual ~V() { printf("V::~V(%d)\n", iV); }
|
/external/e2fsprogs/lib/ext2fs/ |
tst_iscan.c | 45 printf(", "); 48 printf("%lu-%lu", block, block+count-1); 50 printf("%lu", block); 54 printf("\nDuplicate block?!? --- %lu\n", block); 146 printf("Reading blocks: "); 164 printf("\n"); 178 printf("Bad block was touched --- %u\n", test_vec[i]); 190 printf("Missing block --- %lu\n", blk); 195 printf("Bad inodes: "); 201 printf(", "); [all...] |
tst_byteswap.c | 52 printf("Testing ext2fs_swab16\n"); 55 printf("swab16(0x%04x) = 0x%04x\n", test1[i], 58 printf("Error!!! %04x != %04x\n", 63 printf("Error!!! %04x != %04x\n", 70 printf("Testing ext2fs_swab32\n"); 73 printf("swab32(0x%08x) = 0x%08x\n", test2[i], 76 printf("Error!!! %04x != %04x\n", 81 printf("Error!!! %04x != %04x\n", 89 printf("No errors found in the byteswap implementation!\n");
|
/external/iptables/extensions/ |
libxt_tos.c | 43 printf( 50 printf(" (0x%02x) %2u %s\n", 53 printf("\n"); 86 printf(" tos match "); 88 printf("!"); 90 printf("0x%02x", info->tos); 98 printf(" tos match"); 100 printf("!"); 103 printf("0x%02x/0x%02x", info->tos_value, info->tos_mask); 111 printf(" !"); [all...] |
/frameworks/base/media/libstagefright/id3/ |
testid3.cpp | 36 printf("0x%04x ", offset); 45 printf(" "); 49 printf("%02x ", data[offset + i]); 51 printf(" "); 55 printf(" "); 59 printf("%c", data[offset + i]); 61 printf("."); 65 printf("\n"); 77 printf("FAIL %s\n", path); 79 printf("SUCCESS %s\n", path) [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
getopt1.c | 115 printf ("option %s", long_options[option_index].name); 117 printf (" with arg %s", optarg); 118 printf ("\n"); 132 printf ("digits occur in two different argv-elements.\n"); 134 printf ("option %c\n", c); 138 printf ("option a\n"); 142 printf ("option b\n"); 146 printf ("option c with value `%s'\n", optarg); 150 printf ("option d with value `%s'\n", optarg); 157 printf ("?? getopt returned character code 0%o ??\n", c) [all...] |
/external/dropbear/libtomcrypt/demos/ |
hashsum.c | 26 printf("usage: ./hash algorithm file [file ...]\n"); 27 printf("Algorithms:\n"); 29 printf(" %s (%d)\n", hash_descriptor[x].name, hash_descriptor[x].ID); 48 printf("%02x",hash_buffer[x]); 50 printf(" (stdin)\n"); 55 printf("File hash error: %s\n", error_to_string(errno)); 58 printf("%02x",hash_buffer[x]); 60 printf(" %s\n", argv[z]); 110 printf("chc_register error: %s\n", error_to_string(err));
|
encrypt.c | 18 printf("Usage: %s [-d](ecrypt) cipher infile outfile\nCiphers:\n", name); 20 printf("%s\n",cipher_descriptor[x].name); 80 printf("Error registering SHA256\n"); 85 printf("Error registering yarrow PRNG\n"); 90 printf("Error registering sprng PRNG\n"); 141 printf("Invalid cipher entered on command line.\n"); 147 printf("SHA256 not found...?\n"); 154 printf("Invalid keysize???\n"); 158 printf("\nEnter key: "); 162 printf("Error hashing key: %s\n", error_to_string(errno)) [all...] |
/external/ipsec-tools/src/racoon/ |
getcertsbyname.c | 142 printf("getrrsetbyname: %s\n", hstrerror(error)); 152 printf("getrrsetbyname: %s", hstrerror(error)); 159 printf("rr is not valid"); 174 printf("type=%d keytag=%d alg=%d len=%d\n", 183 printf("getnewci: %s", strerror(errno)); 232 printf("realloc: %s", strerror(errno)); 246 printf("get a DNS packet len=%d\n", anslen); 259 printf("query count is not 1.\n"); 268 printf("dn_expand failed.\n"); 281 printf("dn_expand failed.\n") [all...] |
/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" );
|
/frameworks/base/services/sensorservice/tests/ |
sensorservicetest.cpp | 47 printf("%lld\t%8f\t%8f\t%8f\t%f\n", 56 printf("error reading events (%s)\n", strerror(-n)); 68 printf("numSensors=%d\n", int(count)); 71 printf("queue=%p\n", q.get()); 74 printf("accelerometer=%p (%s)\n", 87 //printf("about to poll...\n"); 97 printf("ALOOPER_POLL_TIMEOUT\n"); 100 printf("ALOOPER_POLL_TIMEOUT\n"); 103 printf("ugh? poll returned %d\n", ret);
|
/external/clang/test/Rewriter/ |
rewrite-block-literal.c | 7 int printf(const char*, ...); 20 noop = ^{printf("\nClosure\n"); }; 24 return ^{printf("\nClosure\n"); }; 29 takeblock(^{ printf("%d\n", x); }); 74 void (^global_block)(void) = ^{ printf("global x is %d\n", global_x); };
|
/external/icu4c/samples/csdet/ |
csdet.c | 22 printf("Usage: %s [filename]...\n", argv[0]); 35 printf("\n"); 41 printf("Cannot open file \"%s\"\n\n", filename); 45 printf("%s:\n", filename); 65 printf("%s (%s) %d\n", name, lang, confidence);
|
/external/icu4c/samples/datefmt/answers/ |
main_0.cpp | 26 printf("Error: TimeZone::createTimeZone("); 28 printf(") returned zone with ID "); 30 printf("\n"); 60 printf("Date (%s)\n", LANGUAGE[i]); 63 printf("Exiting successfully\n");
|
main_1.cpp | 25 printf("Error: TimeZone::createTimeZone("); 27 printf(") returned zone with ID "); 29 printf("\n"); 59 printf("Date (%s)\n", LANGUAGE[i]); 62 printf("Exiting successfully\n");
|
/external/icu4c/samples/translit/answers/ |
main_1.cpp | 51 printf("Date: "); 53 printf("\n"); 59 printf("Greek formatted date: "); 61 printf("\n\n"); 68 printf("Exiting successfully\n");
|