HomeSort by relevance Sort by last modified time
    Searched refs:printf (Results 476 - 500 of 5137) sorted by null

<<11121314151617181920>>

  /external/openssl/crypto/rand/
randtest.c 81 printf ("init failed, the rand method is not properly installed\n");
128 printf("test 1 failed, X=%lu\n",n1);
131 printf("test 1 done\n");
141 printf("test 2 failed, X=%.2f\n",d);
151 printf("test 2 failed, X=%ld.%02ld\n",d/100L,d%100L);
154 printf("test 2 done\n");
161 printf("test 3 failed, bit=%d run=%d num=%lu\n",
167 printf("test 3 failed, bit=%d run=%d num=%lu\n",
173 printf("test 3 failed, bit=%d run=%d num=%lu\n",
179 printf("test 3 failed, bit=%d run=%d num=%lu\n"
    [all...]
  /external/tcpdump/
print-dccp.c 185 (void)printf("(ack=%" PRIu64 ") ", ackno);
239 printf("[Invalid packet|dccp]");
244 printf("truncated-dccp - %ld bytes missing!",
255 (void)printf("%s.%d > %s.%d: ",
261 (void)printf("%s.%d > %s.%d: ",
268 (void)printf(" %d", len - hlen);
270 (void)printf("dccp [bad hdr length %u - too long, > %u]",
278 (void)printf("CCVal %d, CsCov %d, ", DCCPH_CCVAL(dh), DCCPH_CSCOV(dh));
289 printf("cksum 0x%04x", dccp_sum);
291 (void)printf(" (incorrect (-> 0x%04x), ",in_cksum_shouldbe(dccp_sum, sum))
    [all...]
print-gre.c 97 printf("[|gre]");
101 printf("GREv%u",vers);
111 printf(" ERROR: unknown-version");
126 printf(", Flags [%s]",
142 printf(", sum 0x%x", EXTRACT_16BITS(bp));
148 printf(", off 0x%x", EXTRACT_16BITS(bp));
156 printf(", key=0x%x", EXTRACT_32BITS(bp));
164 printf(", seq %u", EXTRACT_32BITS(bp));
196 printf(", proto %s (0x%04x)",
200 printf(", length %u",length)
    [all...]
print-mobility.c 111 printf("(pad1)");
115 printf("(padn: trunc)");
118 printf("(padn)");
122 printf("(refresh: trunc)");
126 printf("(refresh: %d)",
131 printf("(altcoa: trunc)");
134 printf("(alt-CoA: %s)", ip6addr_string(&bp[i+2]));
138 printf("(ni: trunc)");
141 printf("(ni: ho=0x%04x co=0x%04x)",
147 printf("(auth: trunc)")
    [all...]
print-l2tp.c 241 printf("%c", *dat++);
250 printf("%02x", *dat++);
257 printf("%u", EXTRACT_16BITS(dat));
263 printf("%lu", (u_long)EXTRACT_32BITS(dat));
274 printf("%s", tok2str(l2tp_msgtype2str, "MSGTYPE-#%u",
283 printf("%u", EXTRACT_16BITS(ptr)); ptr++; /* Result Code */
285 printf("/%u", EXTRACT_16BITS(ptr)); ptr++;
288 printf(" ");
296 printf("%u.%u", (EXTRACT_16BITS(dat) >> 8),
306 printf("A")
    [all...]
print-dvmrp.c 95 printf(" Probe");
103 printf(" Report");
111 printf(" Ask-neighbors(old)");
115 printf(" Neighbors(old)");
121 printf(" Ask-neighbors2");
125 printf(" Neighbors2");
140 printf(" Prune");
146 printf(" Graft");
152 printf(" Graft-ACK");
158 printf(" [type %d]", type)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/icuinfo/
icuinfo.cpp 78 printf("Milliseconds since Epoch: %.0f\n", uprv_getUTCtime());
85 printf("<ICUINFO>\n");
86 printf("International Components for Unicode for C/C++\n");
87 printf("%s\n", U_COPYRIGHT_STRING);
88 printf("Compiled-Version: %s\n", U_ICU_VERSION);
91 printf("Runtime-Version: %s\n", str);
92 printf("Compiled-Unicode-Version: %s\n", U_UNICODE_VERSION);
95 printf("Runtime-Unicode-Version: %s\n", U_UNICODE_VERSION);
96 printf("Platform: %s\n", getPlatform());
98 printf("Build: %s\n", U_BUILD)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4test.c 68 printf("No RC4 support\n");
136 printf("error calculating RC4\n");
137 printf("output:");
139 printf(" %02x",obuf[j]);
140 printf("\n");
141 printf("expect:");
144 printf(" %02x",*(p++));
145 printf("\n");
149 printf("test %d ok\n",i);
151 printf("test end processing ")
    [all...]
  /external/openssl/crypto/rc4/
rc4test.c 68 printf("No RC4 support\n");
136 printf("error calculating RC4\n");
137 printf("output:");
139 printf(" %02x",obuf[j]);
140 printf("\n");
141 printf("expect:");
144 printf(" %02x",*(p++));
145 printf("\n");
149 printf("test %d ok\n",i);
151 printf("test end processing ")
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
unit_test.c 11 printf("Test %s\n", tests[i].name);
14 printf("Test %s (%d/%d) pass\n", tests[i].name,
26 printf("Subtest %u -> ", result->test_count);
29 printf("Pass");
32 printf("Fail");
34 printf("\n");
  /external/clang/test/SemaCXX/
printf-cstr.cpp 6 extern int printf(const char *restrict, ...);
33 printf("%d: %s\n", n, hcs.c_str());
34 printf("%d: %s\n", n, hcs); // expected-warning{{cannot pass non-POD object of type 'HasCStr' to variadic function; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
35 printf("%d: %s\n", n, hncs); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic function; expected type from format string was 'char *'}}
38 printf(formatString, hcs, hncs); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}} expected-warning{{cannot pass object of non-POD type 'HasNoCStr' through variadic function}}
39 printf(extstr, hcs, n); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}}
42 struct Printf {
43 Printf();
44 Printf(const Printf&)
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
objectRRGC.c 28 //printf("_Block_object_assign(%p, %p, %d) called\n", destAddr, object, isWeak);
33 //printf("_Block_object_dispose(%p, %d) called\n", object, isWeak);
49 void (^myBlock)(void) = ^{ printf("field is %ld\n", xp->field); };
54 printf("using old runtime layout!\n");
58 printf("no copy dispose!!!!\n");
63 //printf("destbuffer is at %p, block at %p\n", destBuffer, (void *)bl);
64 //printf("dump is %s\n", _Block_dump(myBlock));
68 printf("did not call assign helper!\n");
72 printf("did not call dispose helper\n");
75 printf("%s: Success!\n", argv[0])
    [all...]
objectassign.c 27 //printf("_Block_object_assign(%p, %p, %d) called\n", destAddr, object, isWeak);
32 //printf("_Block_object_dispose(%p, %d) called\n", object, isWeak);
45 printf("need compiler version %d, have %d\n", 5627, __APPLE_CC__);
52 void (^myBlock)(void) = ^{ printf("field is %ld\n", xp->field); };
57 printf("no copy dispose!!!!\n");
62 //printf("destbuffer is at %p, block at %p\n", destBuffer, (void *)bl);
63 //printf("dump is %s\n", _Block_dump(myBlock));
67 printf("did not call assign helper!\n");
71 printf("did not call dispose helper\n");
74 printf("%s: Success!\n", argv[0])
    [all...]
  /external/eigen/demos/mix_eigen_and_c/
example.c 16 printf("*** demo_MatrixXd ***\n");
22 printf("Here is matrix1:\n");
27 printf("Here is matrix1*matrix1:\n");
47 printf("*** demo_Map_MatrixXd ***\n");
50 printf("Initially, the array is:\n");
57 printf("Now the array is:\n");
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.c 11 printf("Test %s\n", tests[i].name);
14 printf("Test %s (%d/%d) pass\n", tests[i].name,
26 printf("Subtest %u -> ", result->test_count);
29 printf("Pass");
32 printf("Fail");
34 printf("\n");
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_getenv.c 185 printf("Checking for non-existent variable... ");
188 printf("okay\n");
190 printf("failed\n");
192 printf("Setting FIRST=VALUE1 in the environment... ");
195 printf("okay\n");
197 printf("failed\n");
199 printf("Getting FIRST from the environment... ");
203 printf("okay\n");
205 printf("failed\n");
207 printf("Setting SECOND=VALUE2 in the environment... ")
    [all...]
  /external/valgrind/main/memcheck/tests/
clireq_nofill.c 21 printf("*s=%#hhx after MEMPOOL_ALLOC\n", *s);
23 printf("*s=%#hhx after MEMPOOL_FREE\n", *s);
25 printf("*s=%#hhx after second MEMPOOL_ALLOC\n", *s);
34 printf("*s=%#hhx after MALLOCLIKE_BLOCK\n", *s);
36 printf("*s=%#hhx after FREELIKE_BLOCK\n", *s);
38 printf("*s=%#hhx after second MALLOCLIKE_BLOCK\n", *s);
wrap3.c 30 printf("in wrapper1-pre: fact(%d)\n", n);
32 printf("in wrapper1-post: fact(%d) = %d\n", n, r);
41 printf("in wrapper2-pre: fact(%d)\n", n);
43 printf("in wrapper2-post: fact(%d) = %d\n", n, r);
52 printf("computing fact1(5)\n");
54 printf("fact1(5) = %d\n", r);
wrap4.c 34 printf("in wrapper1-pre: fact(%d)\n", n);
36 printf("in wrapper1-post: fact(%d) = %d\n", n, r);
46 printf("in wrapper2-pre: fact(%d)\n", n);
48 printf("in wrapper2-post: fact(%d) = %d\n", n, r);
57 printf("computing fact1(5)\n");
59 printf("fact1(5) = %d\n", r);
  /external/valgrind/main/none/tests/linux/
mremap3.c 16 printf("initial_area= %p\n", initial_area);
26 printf("FAILED : was expecting to get back the initial_area\n");
27 printf("area= %p\n", area);
36 printf("FAILED : was expecting to get back the same area increased\n");
37 printf("increased area= %p\n", a2);
38 printf("%s\n", (char *)a2);
  /ndk/tests/device/test-stlport_shared-exception/jni/
p11667.cpp 5 extern "C" int printf(const char *,...);
46 printf("Start dumping initial 10 item list\n");
49 printf("%d\n", mylist[i]);
52 printf("Growing list to 20\n");
55 printf("Start dumping grown 20 item list\n");
58 printf("%d\n", mylist[i]);
  /ndk/tests/device/test-stlport_static-exception/jni/
p11667.cpp 5 extern "C" int printf(const char *,...);
46 printf("Start dumping initial 10 item list\n");
49 printf("%d\n", mylist[i]);
52 printf("Growing list to 20\n");
55 printf("Start dumping grown 20 item list\n");
58 printf("%d\n", mylist[i]);
  /external/qemu/distrib/sdl-1.2.15/test/
testvidinfo.c 20 printf("0x%8.8x", (flags & FLAG_MASK));
22 printf(" SDL_HWSURFACE");
24 printf(" SDL_SWSURFACE");
27 printf(" | SDL_FULLSCREEN");
30 printf(" | SDL_DOUBLEBUF");
33 printf(" | SDL_SRCCOLORKEY");
36 printf(" | SDL_SRCALPHA");
39 printf(" | SDL_RLEACCEL");
42 printf(" | SDL_RLEACCELOK");
93 printf("Running color fill and fullscreen update test\n")
    [all...]
  /external/chromium_org/third_party/openssl/openssl/
check-all-builds.sh 24 printf "%s\n" "$@"
68 eval printf \"%s\" \"\$$1\"
78 printf "" > $TMP
440 printf "OUT_DIR := $OUT_DIR/$build_type\n\n"
441 printf "BUILD_CC := $build_cc\n\n"
442 printf "BUILD_LINKER := $build_linker\n\n"
443 printf "BUILD_CFLAGS := $build_cflags"
445 printf " -I\$(SRC_DIR)/$inc"
448 printf " -D$def"
450 printf "\n\n
    [all...]
  /external/openssl/
check-all-builds.sh 24 printf "%s\n" "$@"
68 eval printf \"%s\" \"\$$1\"
78 printf "" > $TMP
440 printf "OUT_DIR := $OUT_DIR/$build_type\n\n"
441 printf "BUILD_CC := $build_cc\n\n"
442 printf "BUILD_LINKER := $build_linker\n\n"
443 printf "BUILD_CFLAGS := $build_cflags"
445 printf " -I\$(SRC_DIR)/$inc"
448 printf " -D$def"
450 printf "\n\n
    [all...]

Completed in 580 milliseconds

<<11121314151617181920>>