Searched refs:fmt (Results 1 - 25 of 1124) 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.c12 int myvprintf(const char *fmt, va_list args) { argument
13 return myvfprintf(fmt, args);
/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/chromium_org/third_party/libvpx/source/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/qemu/distrib/libsparse/src/
H A Dsparse_err.c23 void sparse_default_print(const char *fmt, ...) argument
27 va_start(argp, fmt);
28 vfprintf(stderr, fmt, argp);
32 void (*sparse_print_error)(const char *fmt, ...) = sparse_default_print;
33 void (*sparse_print_verbose)(const char *fmt, ...) = sparse_default_print;
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Dparse-utils.c28 void __vdie(const char *fmt, va_list ap) argument
38 vfprintf(stderr, fmt, ap);
44 void __die(const char *fmt, ...) argument
48 va_start(ap, fmt);
49 __vdie(fmt, ap);
53 void __weak die(const char *fmt, ...) argument
57 va_start(ap, fmt);
58 __vdie(fmt, ap);
62 void __vwarning(const char *fmt, va_list ap) argument
69 vfprintf(stderr, fmt, a
74 __warning(const char *fmt, ...) argument
83 warning(const char *fmt, ...) argument
92 __vpr_stat(const char *fmt, va_list ap) argument
98 __pr_stat(const char *fmt, ...) argument
107 vpr_stat(const char *fmt, va_list ap) argument
112 pr_stat(const char *fmt, ...) argument
[all...]
H A Devent-utils.h26 void die(const char *fmt, ...);
28 void warning(const char *fmt, ...);
29 void pr_stat(const char *fmt, ...);
30 void vpr_stat(const char *fmt, va_list ap);
33 void __die(const char *fmt, ...);
34 void __warning(const char *fmt, ...);
35 void __pr_stat(const char *fmt, ...);
37 void __vdie(const char *fmt, ...);
38 void __vwarning(const char *fmt, ...);
39 void __vpr_stat(const char *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/libpcap/
H A Dbpf_image.c60 const char *fmt, *op; local
69 fmt = "0x%x";
75 fmt = "#%d";
80 fmt = "";
85 fmt = "[%d]";
90 fmt = "[%d]";
95 fmt = "[%d]";
100 fmt = "#pktlen";
105 fmt = "[x + %d]";
110 fmt
[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/chromium_org/content/common/
H A Dset_process_title_linux.h16 void setproctitle(const char* fmt, ...);
/external/chromium_org/third_party/mesa/src/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/chromium_org/ui/events/ozone/evdev/libgestures_glue/
H A Dgesture_logging.h12 const char* fmt,
H A Dgesture_logging.cc15 std::string FormatLog(const char* fmt, va_list args) { argument
16 std::string msg = base::StringPrintV(fmt, args);
24 void gestures_log(int verb, const char* fmt, ...) { argument
26 va_start(args, fmt);
28 LOG(ERROR) << "gestures: " << FormatLog(fmt, args);
30 VLOG(3) << "gestures: " << FormatLog(fmt, args);
/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/qemu/android/
H A Dcore-init-utils.h32 void android_core_init_failure(const char* fmt, ...);
/external/qemu/android/utils/
H A Dpanic.c17 _android_panic_defaultHandler( const char* fmt, va_list args ) argument
20 vfprintf(stderr, fmt, args);
26 void android_panic( const char* fmt, ... ) argument
29 va_start(args, fmt);
30 android_vpanic(fmt, args);
35 void android_vpanic( const char* fmt, va_list args ) argument
37 _panicHandler(fmt, args);
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_thread.h32 void SetError(const char* fmt, ...) { argument
34 va_start(args, fmt);
35 SetErrorArgs(fmt, args);
39 void SetErrorArgs(const char* fmt, va_list args);
42 void AppendError(const char* fmt, ...) { argument
44 va_start(args, fmt);
45 AppendErrorArgs(fmt, args);
49 void AppendErrorArgs(const char* fmt, va_list args);
77 void SetLinkerError(const char* fmt, ...);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dhelpline.c19 static int nop_helpline__show(const char *fmt __maybe_unused,
43 void ui_helpline__vpush(const char *fmt, va_list ap) argument
47 if (vasprintf(&s, fmt, ap) < 0)
48 vfprintf(stderr, fmt, ap);
55 void ui_helpline__fpush(const char *fmt, ...) argument
59 va_start(ap, fmt);
60 ui_helpline__vpush(fmt, ap);
70 int ui_helpline__vshow(const char *fmt, va_list ap) argument
72 return helpline_fns->show(fmt, ap);
/external/chromium_org/third_party/libevent/
H A Dlog.h36 void event_err(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3);
37 void event_warn(const char *fmt, ...) EV_CHECK_FMT(1,2);
38 void event_errx(int eval, const char *fmt, ...) EV_CHECK_FMT(2,3);
39 void event_warnx(const char *fmt, ...) EV_CHECK_FMT(1,2);
40 void event_msgx(const char *fmt, ...) EV_CHECK_FMT(1,2);
41 void _event_debugx(const char *fmt, ...) EV_CHECK_FMT(1,2);
/external/libcxx/test/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...]

Completed in 2901 milliseconds

1234567891011>>