Searched refs:fmt (Results 1 - 25 of 1002) sorted by relevance

1234567891011>>

/external/clang/test/Sema/Inputs/
H A Dformat-unused-system-args.h4 #define PRINT2(fmt, a1, a2) \
5 printf((fmt), (a1), (a2))
7 #define PRINT1(fmt, a1) \
8 PRINT2((fmt), (a1), 0)
/external/clang/test/PCH/
H A D__va_list_tag.c13 int myvprintf(const char *fmt, va_list args) { argument
14 return myvfprintf(fmt, args);
/external/iproute2/examples/bpf/
H A Dbpf_graft.c41 char fmt[] = "aaa\n"; local
43 trace_printk(fmt, sizeof(fmt));
50 char fmt[] = "bbb\n"; local
52 trace_printk(fmt, sizeof(fmt));
59 char fmt[] = "fallthrough\n"; local
62 trace_printk(fmt, sizeof(fmt));
/external/curl/src/
H A Dtool_msgs.h26 void warnf(struct GlobalConfig *config, const char *fmt, ...);
27 void notef(struct GlobalConfig *config, const char *fmt, ...);
29 void helpf(FILE *errors, const char *fmt, ...);
/external/compiler-rt/test/asan/TestCases/
H A Dprintf-5.c17 volatile char fmt[2]; local
18 memcpy((char *)fmt, "%c %d %f %s\n", sizeof(fmt));
19 printf((char *)fmt, c, x, f, s);
/external/deqp/framework/qphelper/
H A DqpDebugOut.h33 void qpPrintf (const char* fmt, ...);
34 void qpPrintv (const char* fmt, va_list va);
36 void qpDief (const char* fmt, ...);
37 void qpDiev (const char* fmt, va_list va);
/external/selinux/libsemanage/tests/
H A Dutilities.c30 semanage_handle_t * handle, const char *fmt, ...)
29 test_msg_handler(void *varg, semanage_handle_t * handle, const char *fmt, ...) argument
H A Dutilities.h22 void test_msg_handler(void *varg, semanage_handle_t * handle, const char *fmt,
/external/tlsdate/src/
H A Dutil-plan9.h23 void die (const char *fmt, ...);
24 void verb (const char *fmt, ...);
25 extern void logat(int isverbose, const char *fmt, ...);
27 #define info(fmt, ...) logat(1, fmt, ## __VA_ARGS__)
28 #define pinfo(fmt, ...) logat(1, fmt ": %s", ## __VA_ARGS__, strerror(errno))
29 #define error(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
30 #define perror(fmt,
[all...]
H A Dutil.h45 void die (const char *fmt, ...);
46 void verb (const char *fmt, ...);
47 extern void logat (int isverbose, const char *fmt, ...);
50 #define debug(fmt, ...) if (verbose_debug) logat(1, fmt, ## __VA_ARGS__)
51 #define info(fmt, ...) logat(0, fmt, ## __VA_ARGS__)
52 #define pinfo(fmt, ...) logat(1, fmt ": %s", ## __VA_ARGS__, strerror(errno))
53 #define error(fmt,
[all...]
/external/libvpx/libvpx/
H A Dy4menc.c16 vpx_img_fmt_t fmt, unsigned int bit_depth) {
20 color = fmt == VPX_IMG_FMT_444A ? "C444alpha\n" :
21 fmt == VPX_IMG_FMT_I444 ? "C444\n" :
22 fmt == VPX_IMG_FMT_I422 ? "C422\n" :
26 color = fmt == VPX_IMG_FMT_I44416 ? "C444p9 XYSCSS=444P9\n" :
27 fmt == VPX_IMG_FMT_I42216 ? "C422p9 XYSCSS=422P9\n" :
31 color = fmt == VPX_IMG_FMT_I44416 ? "C444p10 XYSCSS=444P10\n" :
32 fmt == VPX_IMG_FMT_I42216 ? "C422p10 XYSCSS=422P10\n" :
36 color = fmt == VPX_IMG_FMT_I44416 ? "C444p12 XYSCSS=444P12\n" :
37 fmt
14 y4m_write_file_header(char *buf, size_t len, int width, int height, const struct VpxRational *framerate, vpx_img_fmt_t fmt, unsigned int bit_depth) argument
[all...]
/external/android-clat/
H A Dlogging.c28 * fmt - printf format specifier
31 void logmsg(int prio, const char *fmt, ...) { argument
34 va_start(ap, fmt);
35 __android_log_vprint(prio, "clatd", fmt, ap);
42 * fmt - printf format specifier
46 void logmsg_dbg(int prio, const char *fmt, ...) { argument
49 va_start(ap, fmt);
50 __android_log_vprint(prio, "clatd", fmt, ap);
54 void logmsg_dbg(__attribute__((unused)) int prio, __attribute__((unused)) const char *fmt, ...) {} argument
H A Dlogging.h24 void logmsg(int prio, const char *fmt, ...);
25 void logmsg_dbg(int prio, const char *fmt, ...);
/external/clang/test/SemaCXX/
H A Dbuiltins-va_arg.cpp14 int test_vprintf(const char *fmt, va_list ap) { argument
17 while (*fmt != '\0') {
18 ch = *fmt++;
23 ch = *fmt++;
46 int test_printf(const char *fmt, ...) { argument
48 va_start(ap, fmt);
49 int result = test_vprintf(fmt, ap);
/external/libpcap/
H A Dbpf_image.c55 const char *fmt, *op; local
64 fmt = "0x%x";
70 fmt = "#%d";
75 fmt = "";
80 fmt = "[%d]";
85 fmt = "[%d]";
90 fmt = "[%d]";
95 fmt = "#pktlen";
100 fmt = "[x + %d]";
105 fmt
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-valist.cpp4 void test1(const char *fmt, va_list ap) { argument
10 void test2(const char *fmt, va_list ap);
13 void Test2::test2(const char *fmt, va_list ap) { argument
/external/openssh/
H A Dfatal.c37 fatal(const char *fmt,...) argument
41 va_start(args, fmt);
42 do_log(SYSLOG_LEVEL_FATAL, fmt, args);
/external/autotest/client/tests/monotonic_time/src/
H A Dlogging.h18 void msg(enum msg_type, int data, const char *fmt, ...);
20 #define DEBUG(level, fmt, args...) msg(MSG_DEBUG, level, fmt, ##args)
21 #define INFO(fmt, args...) msg(MSG_INFO, 0, fmt, ##args)
22 #define WARN(err, fmt, args...) msg(MSG_WARN, err, fmt, ##args)
23 #define ERROR(err, fmt, args...) msg(MSG_ERROR, err, fmt, ##args)
24 #define FATAL(err, fmt, arg
[all...]
/external/lldb/tools/debugserver/source/
H A DDNBLog.h40 void _DNBLogDebug (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
41 void _DNBLogDebugVerbose (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
42 void _DNBLogThreaded (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
43 void _DNBLogThreadedIf (uint32_t mask, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))) DNB_EXPORT;
44 void _DNBLogError (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
45 void _DNBLogFatalError (int err, const char *fmt, ...) __attribute__ ((format (printf, 2, 3))) DNB_EXPORT;
46 void _DNBLogVerbose (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
47 void _DNBLogWarning (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
48 void _DNBLogWarningVerbose (const char *fmt, ...) __attribute__ ((format (printf, 1, 2))) DNB_EXPORT;
61 #define DNBLog(fmt,
[all...]
/external/mesa3d/src/glsl/
H A Dprogram.h30 linker_error(gl_shader_program *prog, const char *fmt, ...)
34 linker_warning(gl_shader_program *prog, const char *fmt, ...)
/external/icu/icu4c/source/test/intltest/
H A Dquantityformattertest.cpp37 QuantityFormatter fmt; local
40 fmt.addIfAbsent("a bad variant", "{0} pounds", status));
45 fmt.addIfAbsent("other", "{0} {1} too many placeholders", status));
48 assertFalse("isValid with no patterns", fmt.isValid());
51 fmt.addIfAbsent("zero", "no placeholder", status));
54 fmt.addIfAbsent("other", "{0} pounds", status));
55 assertTrue("isValid with other", fmt.isValid());
58 fmt.addIfAbsent("one", "{0} pound", status));
62 fmt.getByVariant("bad variant")->getTextWithNoPlaceholders(),
66 fmt
[all...]
/external/libcxx/test/std/re/re.results/re.results.form/
H A Dform1.pass.cpp32 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2"; local
34 fmt, fmt + std::char_traits<char>::length(fmt)).base();
44 const char fmt[] = "prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2"; local
46 fmt, fmt + std::char_traits<char>::length(fmt),
57 const char fmt[] = "match: &, m[1]: \\1, m[2]: \\2"; local
59 fmt, fm
71 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2"; local
83 const wchar_t fmt[] = L"prefix: $`, match: $&, suffix: $', m[1]: $1, m[2]: $2"; local
96 const wchar_t fmt[] = L"match: &, m[1]: \\\\1, m[2]: \\\\2"; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DNumberFormatRoundTripTest.java45 NumberFormat fmt = null;
50 fmt = NumberFormat.getInstance();
51 _test(fmt);
54 fmt = NumberFormat.getCurrencyInstance();
55 _test(fmt);
58 fmt = NumberFormat.getPercentInstance();
59 _test(fmt);
72 fmt = NumberFormat.getInstance(loc[i]);
73 _test(fmt);
75 fmt
96 _test(NumberFormat fmt) argument
148 _test(NumberFormat fmt, double value) argument
152 _test(NumberFormat fmt, long value) argument
156 _test(NumberFormat fmt, Number value) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatRoundTripTest.java41 NumberFormat fmt = null;
46 fmt = NumberFormat.getInstance();
47 _test(fmt);
50 fmt = NumberFormat.getCurrencyInstance();
51 _test(fmt);
54 fmt = NumberFormat.getPercentInstance();
55 _test(fmt);
68 fmt = NumberFormat.getInstance(loc[i]);
69 _test(fmt);
71 fmt
92 _test(NumberFormat fmt) argument
144 _test(NumberFormat fmt, double value) argument
148 _test(NumberFormat fmt, long value) argument
152 _test(NumberFormat fmt, Number value) argument
[all...]
/external/clang/test/CodeGen/
H A Dmips-varargs.c12 int test_i32(char *fmt, ...) { argument
15 va_start(va, fmt);
22 // ALL-LABEL: define i32 @test_i32(i8*{{.*}} %fmt, ...)
54 long long test_i64(char *fmt, ...) { argument
57 va_start(va, fmt);
64 // ALL-LABEL: define i64 @test_i64(i8*{{.*}} %fmt, ...)
88 char *test_ptr(char *fmt, ...) { argument
91 va_start(va, fmt);
98 // ALL-LABEL: define i8* @test_ptr(i8*{{.*}} %fmt, ...)
126 int test_v4i32(char *fmt, argument
[all...]

Completed in 2632 milliseconds

1234567891011>>