Searched defs:printf (Results 1 - 25 of 37) sorted by relevance

12

/external/bison/lib/
H A Dprintf.c30 printf (const char *format, ...) function
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Dkernel_compat.h79 #define printf(...) printk(__VA_ARGS__) macro
/external/srtp/crypto/include/
H A Dkernel_compat.h79 #define printf(...) printk(__VA_ARGS__) macro
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPrintStream.cpp38 void PrintStream::printf(const char* format, ...) function in class:WTF::PrintStream
52 out.printf("%s", string);
75 out.printf("%d", value);
80 out.printf("%u", value);
85 out.printf("%ld", value);
90 out.printf("%lu", value);
95 out.printf("%lld", value);
100 out.printf("%llu", value);
110 out.printf("%lf", value);
115 out.printf("
[all...]
/external/clang/test/Sema/
H A Dattr-format.c5 void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error
6 void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
7 void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
8 void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attribute requires variadic function}}
9 void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}}
12 void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-error
13 void g(xpto c) __attribute__((format(printf, 1, 0))); // no-error
18 int (*f_ptr)(char*,...) __attribute__((format(printf, 1,2))); // no-error
19 int (*f2_ptr)(double,...) __attribute__((format(printf, 1, 2))); // expected-error {{format argument not a string type}}
22 int (*printf)(cons member in struct:_mystruct
[all...]
H A Dformat-strings.c11 int printf(const char *restrict, ...); // expected-note{{passing argument to parameter here}}
31 printf(s); // expected-warning {{format string is not a string literal}}
50 printf("abc"
52 printf("abc\
59 printf("%*d", (unsigned) 1, 1); // no-warning
71 printf(s); // expected-warning {{format string is not a string literal}}
85 printf(i == 1 ? "yes" : "no"); // no-warning
86 printf(i == 0 ? (i == 1 ? "yes" : "no") : "dont know"); // no-warning
87 printf(i == 0 ? (i == 1 ? s : "no") : "dont know"); // expected-warning{{format string is not a string literal}}
88 printf("ye
525 printf(kFormat17, (int[]){0}); // expected-warning{{format specifies type 'unsigned short' but the argument}} function
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dcodegen-tester.cc322 if (false) printf("Int32BinopInputShapeTester i=%d, j=%d\n", i, j);
343 if (false) printf(" cmp(a=%d, b=%d) ?== %d\n", input_a, input_b, expect);
355 if (false) printf(" cmp(a=%d, b=%d) ?== %d\n", input_a, input_b, expect);
366 if (false) printf(" cmp(a=%d, b=%d) ?== %d\n", input_a, input_b, expect);
30 CHECK_EQ(a < b, wInt32LessThan.Int32Compare(a, b)); CHECK_EQ(a <= b, wInt32LessThanOrEqual.Int32Compare(a, b)); } } } { FOR_UINT32_INPUTS(pl) { FOR_UINT32_INPUTS(pr) { uint32_t a = *pl; uint32_t b = *pr; CHECK_EQ(a == b, wWord32Equal.Int32Compare(a, b)); CHECK_EQ(a < b, wUint32LessThan.Int32Compare(a, b)); CHECK_EQ(a <= b, wUint32LessThanOrEqual.Int32Compare(a, b)); } } } CHECK_EQ(true, wWord32Equal.Int32Compare(0, 0)); CHECK_EQ(true, wWord32Equal.Int32Compare(257, 257)); CHECK_EQ(true, wWord32Equal.Int32Compare(65539, 65539)); CHECK_EQ(true, wWord32Equal.Int32Compare(-1, -1)); CHECK_EQ(true, wWord32Equal.Int32Compare(0xffffffff, 0xffffffff)); CHECK_EQ(false, wWord32Equal.Int32Compare(0, 1)); CHECK_EQ(false, wWord32Equal.Int32Compare(257, 256)); CHECK_EQ(false, wWord32Equal.Int32Compare(65539, 65537)); CHECK_EQ(false, wWord32Equal.Int32Compare(-1, -2)); CHECK_EQ(false, wWord32Equal.Int32Compare(0xffffffff, 0xfffffffe)); CHECK_EQ(false, wInt32LessThan.Int32Compare(0, 0)); CHECK_EQ(false, wInt32LessThan.Int32Compare(357, 357)); CHECK_EQ(false, wInt32LessThan.Int32Compare(75539, 75539)); CHECK_EQ(false, wInt32LessThan.Int32Compare(-1, -1)); CHECK_EQ(false, wInt32LessThan.Int32Compare(0xffffffff, 0xffffffff)); CHECK_EQ(true, wInt32LessThan.Int32Compare(0, 1)); CHECK_EQ(true, wInt32LessThan.Int32Compare(456, 457)); CHECK_EQ(true, wInt32LessThan.Int32Compare(85537, 85539)); CHECK_EQ(true, wInt32LessThan.Int32Compare(-2, -1)); CHECK_EQ(true, wInt32LessThan.Int32Compare(0xfffffffe, 0xffffffff)); CHECK_EQ(false, wInt32LessThan.Int32Compare(1, 0)); CHECK_EQ(false, wInt32LessThan.Int32Compare(457, 456)); CHECK_EQ(false, wInt32LessThan.Int32Compare(85539, 85537)); CHECK_EQ(false, wInt32LessThan.Int32Compare(-1, -2)); CHECK_EQ(false, wInt32LessThan.Int32Compare(0xffffffff, 0xfffffffe)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0, 0)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(357, 357)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(75539, 75539)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(-1, -1)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0xffffffff, 0xffffffff)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0, 1)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(456, 457)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(85537, 85539)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(-2, -1)); CHECK_EQ(true, wInt32LessThanOrEqual.Int32Compare(0xfffffffe, 0xffffffff)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(1, 0)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(457, 456)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(85539, 85537)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(-1, -2)); CHECK_EQ(false, wInt32LessThanOrEqual.Int32Compare(0xffffffff, 0xfffffffe)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0, 0)); CHECK_EQ(false, wUint32LessThan.Int32Compare(357, 357)); CHECK_EQ(false, wUint32LessThan.Int32Compare(75539, 75539)); CHECK_EQ(false, wUint32LessThan.Int32Compare(-1, -1)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0xffffffff, 0xffffffff)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0xffffffff, 0)); CHECK_EQ(false, wUint32LessThan.Int32Compare(-2999, 0)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0, 1)); CHECK_EQ(true, wUint32LessThan.Int32Compare(456, 457)); CHECK_EQ(true, wUint32LessThan.Int32Compare(85537, 85539)); CHECK_EQ(true, wUint32LessThan.Int32Compare(-11, -10)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0xfffffffe, 0xffffffff)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0, 0xffffffff)); CHECK_EQ(true, wUint32LessThan.Int32Compare(0, -2996)); CHECK_EQ(false, wUint32LessThan.Int32Compare(1, 0)); CHECK_EQ(false, wUint32LessThan.Int32Compare(457, 456)); CHECK_EQ(false, wUint32LessThan.Int32Compare(85539, 85537)); CHECK_EQ(false, wUint32LessThan.Int32Compare(-10, -21)); CHECK_EQ(false, wUint32LessThan.Int32Compare(0xffffffff, 0xfffffffe)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0, 0)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(357, 357)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(75539, 75539)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(-1, -1)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0xffffffff, 0xffffffff)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0, 1)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(456, 457)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(85537, 85539)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(-300, -299)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(-300, -300)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0xfffffffe, 0xffffffff)); CHECK_EQ(true, wUint32LessThanOrEqual.Int32Compare(0, -2995)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(1, 0)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(457, 456)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(85539, 85537)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(-130, -170)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(0xffffffff, 0xfffffffe)); CHECK_EQ(false, wUint32LessThanOrEqual.Int32Compare(-2997, 0)); CompareWrapper wFloat64Equal(IrOpcode::kFloat64Equal); CompareWrapper wFloat64LessThan(IrOpcode::kFloat64LessThan); CompareWrapper wFloat64LessThanOrEqual(IrOpcode::kFloat64LessThanOrEqual); double nan = v8::base::OS::nan_value(); double inf = V8_INFINITY; CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, 0.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, 1.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0.0, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(1.0, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, 0.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, 1.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(0.0, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(1.0, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-inf, nan)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, 0.0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, 1.0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(0.0, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(1.0, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(-inf, nan)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(nan, nan)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, 0.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, 1.0)); CHECK_EQ(true, wFloat64Equal.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0.0, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(1.0, inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, 0.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, 1.0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(0.0, inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(1.0, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, 0.0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, 1.0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(inf, inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(0.0, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(1.0, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(inf, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, 0.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, 1.0)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-inf, inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(-inf, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0.0, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(1.0, -inf)); CHECK_EQ(false, wFloat64Equal.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(-inf, -inf)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, 0.0)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, 1.0)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-inf, inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-inf, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(0.0, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(1.0, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(inf, -inf)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-inf, -inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, 0.0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, 1.0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(0.0, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(1.0, -inf)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(inf, -inf)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-inf, -inf)); CHECK_EQ(true, wFloat64Equal.Float64Compare(0, 0)); CHECK_EQ(true, wFloat64Equal.Float64Compare(257.1, 257.1)); CHECK_EQ(true, wFloat64Equal.Float64Compare(65539.1, 65539.1)); CHECK_EQ(true, wFloat64Equal.Float64Compare(-1.1, -1.1)); CHECK_EQ(false, wFloat64Equal.Float64Compare(0, 1)); CHECK_EQ(false, wFloat64Equal.Float64Compare(257.2, 256.2)); CHECK_EQ(false, wFloat64Equal.Float64Compare(65539.2, 65537.2)); CHECK_EQ(false, wFloat64Equal.Float64Compare(-1.2, -2.2)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(0, 0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(357.3, 357.3)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(75539.3, 75539.3)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-1.3, -1.3)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(0, 1)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(456.4, 457.4)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(85537.4, 85539.4)); CHECK_EQ(true, wFloat64LessThan.Float64Compare(-2.4, -1.4)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(1, 0)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(457.5, 456.5)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(85539.5, 85537.5)); CHECK_EQ(false, wFloat64LessThan.Float64Compare(-1.5, -2.5)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(0, 0)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(357.6, 357.6)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(75539.6, 75539.6)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-1.6, -1.6)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(0, 1)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(456.7, 457.7)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(85537.7, 85539.7)); CHECK_EQ(true, wFloat64LessThanOrEqual.Float64Compare(-2.7, -1.7)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(1, 0)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(457.8, 456.8)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(85539.8, 85537.8)); CHECK_EQ(false, wFloat64LessThanOrEqual.Float64Compare(-1.8, -2.8)); } void Int32BinopInputShapeTester::TestAllInputShapes() { std::vector<int32_t> inputs = ValueHelper::int32_vector(); int num_int_inputs = static_cast<int>(inputs.size()); if (num_int_inputs > 16) num_int_inputs = 16; for (int i = -2; i < num_int_inputs; i++) { for (int j = -2; j < num_int_inputs; j++) { if (i >= 0 && j >= 0) break; RawMachineAssemblerTester<int32_t> m(kMachInt32, kMachInt32); Node* p0 = m.Parameter(0); Node* p1 = m.Parameter(1); Node* n0; Node* n1; if (i == -2) { n0 = p0; } else if (i == -1) { n0 = m.LoadFromPointer(&input_a, kMachInt32); } else { n0 = m.Int32Constant(inputs[i]); } if (j == -2) { n1 = p1; } else if (j == -1) { n1 = m.LoadFromPointer(&input_b, kMachInt32); } else { n1 = m.Int32Constant(inputs[j]); } gen->gen(&m, n0, n1); if (false) printf(�, i, j); if (i >= 0) { input_a = inputs[i]; RunRight(&m); } else if (j >= 0) argument
/external/clang/test/SemaCXX/
H A Dformat-strings.cpp7 extern int printf(const char *restrict, ...);
15 printf("%a", 1.0);
20 printf("%ls", "foo"); // expected-warning{{format specifies type 'wchar_t *' but the argument has type 'const char *'}}
29 int printf(const char *, ...) __attribute__((format(printf, 2, 3)));
33 static int printf_static(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
39 foo.printf("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
42 printf(foo.gettext("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
43 printf(Foo::gettext_static("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
59 int Foo::printf(cons function in class:Foo
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Drombios.h43 #define printf(format, p...) bios_printf(BIOS_PRINTF_SCREEN, format, ##p) macro
/external/srec/portable/include/
H A Dplog.h68 * printf).
73 ESR_ReturnCode(*printf)(struct PLogger_t *self, member in struct:PLogger_t
203 * @param msg The message format specification (ala printf).
214 * @param msg The message format specification (ala printf).
285 * Usage: PLOG_DBG_TRACE((printf-arguments))
287 * The reason we require double brackets is to allow the use of printf-style variable
/external/chromium_org/third_party/libxml/src/
H A Dtrio.h158 # define printf trio_printf macro
/external/chromium_org/third_party/libxslt/libxslt/
H A Dtrio.h158 # define printf trio_printf macro
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcalculator.c27 /* Redirect printf to a function in the test application so it's possible to
29 #ifdef printf
30 #undef printf macro
31 #endif // printf
32 #define printf example_test_printf macro
253 printf("%s\n", argv[1]);
256 printf(" %s %s = %d\n", argv[i], argv[i + 1],
259 printf("= %d\n", result);
/external/libxml2/
H A Dtrio.h158 # define printf trio_printf macro
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dinternal_logging.cc177 void TCMalloc_Printer::printf(const char* format, ...) { function in class:TCMalloc_Printer
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dinternal_logging.cc176 void TCMalloc_Printer::printf(const char* format, ...) { function in class:TCMalloc_Printer
/external/jhead/
H A Dgpsinfo.c63 #define printf ALOGE macro
76 printf("found tag %d", tag);
79 printf("tag %s format not defined", GpsTags[i].Desc);
85 printf("tag %d NOT FOUND", tag);
94 printf("found tag %d", tag);
97 printf("tag %s format not defined", GpsTags[i].Desc);
103 printf("tag %d NOT FOUND", tag);
112 printf("found GPS tag %s val %d", GpsTags[i].Desc, GpsTags[i].Tag);
116 printf("GPS tag %s NOT FOUND", tagName);
134 printf("(di
[all...]
H A Djpgfile.c27 #define printf ALOGE macro
73 printf("COM marker comment: %s\n",Comment);
102 printf("JPEG image is %uw * %uh, %d color components, %d bits per sample\n",
195 printf("reading marker %d", marker);
264 printf("Image cotains XMP section, %d bytes long\n", itemlen);
279 printf("Image cotains IPTC section, %d bytes long\n", itemlen);
306 printf("Jpeg section marker 0x%02x size %d\n",marker, itemlen);
392 printf("reading marker %d", marker);
538 printf("ReadJpegSections");
/external/valgrind/main/drd/tests/
H A Dunit_bitmap.c55 UInt VG_(printf)(const HChar *format, ...) function
58 { UInt ret; va_list vargs; va_start(vargs, format); ret = vprintf(format, vargs); va_end(vargs); printf("\n"); return ret; }
108 VG_(printf)("Bitmaps are different.\n");
114 printf("0x%x %c %c %c %c\n",
163 VG_(printf)("Deleting bitmap bm\n");
166 VG_(printf)("Deleting bitmap bm2\n");
H A Dunit_vc.c41 UInt VG_(printf)(const HChar *format, ...) function
47 { UInt ret; va_list vargs; va_start(vargs, format); ret = vprintf(format, vargs); va_end(vargs); printf("\n"); return ret; }
/external/pdfium/fpdfsdk/src/javascript/
H A Dutil.cpp42 JS_STATIC_METHOD_ENTRY(printf, 20)
140 FX_BOOL util::printf(OBJ_METHOD_PARAMS) function in class:util
/external/valgrind/main/coregrind/
H A Dm_libcprint.c86 printf() and friends
89 /* --------- printf --------- */
146 UInt VG_(printf) ( const HChar *format, ... ) function
377 pretty much the same as VG_(printf)'s scheme, with two differences:
496 with the other printf variants in earlier parts of this file. */
/external/bison/darwin-lib/
H A Dstdio.h66 The __-protected variants of the attributes 'format' and 'printf' are
69 gnulib and libintl do '#define printf __printf__' when they override
70 the 'printf' function. */
91 are the ones of the system printf(), rather than the ones standardized by
1144 /* Don't break __attribute__((format(printf,M,N))). */
1145 # define printf __printf__ macro
1162 _GL_CXXALIAS_RPL_1 (printf, __printf__, int, (const char *format, ...));
1165 # define printf rpl_printf macro
1167 _GL_FUNCDECL_RPL (printf, int,
1171 _GL_CXXALIAS_RPL (printf, in
1177 _GL_CXXALIASWARN (printf); variable
1181 # undef printf macro
[all...]
/external/bison/linux-lib/
H A Dstdio.h66 The __-protected variants of the attributes 'format' and 'printf' are
69 gnulib and libintl do '#define printf __printf__' when they override
70 the 'printf' function. */
91 are the ones of the system printf(), rather than the ones standardized by
1144 /* Don't break __attribute__((format(printf,M,N))). */
1145 # define printf __printf__ macro
1162 _GL_CXXALIAS_RPL_1 (printf, __printf__, int, (const char *format, ...));
1165 # define printf rpl_printf macro
1167 _GL_FUNCDECL_RPL (printf, int,
1171 _GL_CXXALIAS_RPL (printf, in
1177 _GL_CXXALIASWARN (printf); variable
1181 # undef printf macro
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkString.cpp17 // number of bytes (on the stack) to receive the printf result
558 void SkString::printf(const char format[], ...) { function in class:SkString

Completed in 331 milliseconds

12