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

1234567891011>>

/external/libpcap/
H A Dbpf_image.c46 const char *fmt, *op; local
55 fmt = "0x%x";
61 fmt = "#%d";
66 fmt = "";
71 fmt = "[%d]";
76 fmt = "[%d]";
81 fmt = "[%d]";
86 fmt = "#pktlen";
91 fmt = "[x + %d]";
96 fmt
[all...]
/external/chromium/base/
H A Dsetproctitle_linux.h17 void setproctitle(const char* fmt, ...);
/external/grub/netboot/
H A Dmisc.c74 etherboot_vsprintf (char *buf, const char *fmt, const int *dp) argument
79 for ( ; *fmt != '\0'; ++fmt)
81 if (*fmt != '%')
83 buf ? *s++ = *fmt : grub_putchar (*fmt);
87 if (*++fmt == 's')
99 if (*fmt == '#')
102 fmt++;
105 if (*fmt
212 etherboot_sprintf(char *buf, const char *fmt, ...) argument
218 etherboot_printf(const char *fmt, ...) argument
[all...]
/external/chromium/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);
H A Dlog.c65 static void _warn_helper(int severity, int log_errno, const char *fmt,
70 event_err(int eval, const char *fmt, ...) argument
74 va_start(ap, fmt);
75 _warn_helper(_EVENT_LOG_ERR, errno, fmt, ap);
81 event_warn(const char *fmt, ...) argument
85 va_start(ap, fmt);
86 _warn_helper(_EVENT_LOG_WARN, errno, fmt, ap);
91 event_errx(int eval, const char *fmt, ...) argument
95 va_start(ap, fmt);
96 _warn_helper(_EVENT_LOG_ERR, -1, fmt, a
102 event_warnx(const char *fmt, ...) argument
112 event_msgx(const char *fmt, ...) argument
122 _event_debugx(const char *fmt, ...) argument
132 _warn_helper(int severity, int log_errno, const char *fmt, va_list ap) argument
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_blit.h89 #define RGB_FROM_PIXEL(Pixel, fmt, r, g, b) \
91 r = (((Pixel&fmt->Rmask)>>fmt->Rshift)<<fmt->Rloss); \
92 g = (((Pixel&fmt->Gmask)>>fmt->Gshift)<<fmt->Gloss); \
93 b = (((Pixel&fmt->Bmask)>>fmt->Bshift)<<fmt
[all...]
/external/chromium/third_party/icu/source/test/intltest/
H A Dnmfmtrt.cpp92 NumberFormat *fmt = NULL; local
96 fmt = NumberFormat::createInstance(status);
98 test(fmt);
100 delete fmt;
102 fmt = NumberFormat::createCurrencyInstance(status);
104 test(fmt);
106 delete fmt;
108 fmt = NumberFormat::createPercentInstance(status);
110 test(fmt);
112 delete fmt;
147 test(NumberFormat *fmt) argument
217 test(NumberFormat *fmt, double value) argument
223 test(NumberFormat *fmt, int32_t value) argument
229 test(NumberFormat *fmt, const Formattable& value) argument
[all...]
H A Dnumfmtst.h150 void expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
152 void expect3(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
154 void expect2(NumberFormat& fmt, const Formattable& n, const char* str) { argument
155 expect2(fmt, n, UnicodeString(str, ""));
158 void expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& str, UErrorCode ec);
160 void expect2(NumberFormat* fmt, const Formattable& n, const char* str, UErrorCode ec) { argument
161 expect2(fmt, n, UnicodeString(str, ""), ec);
164 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
166 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { argument
167 expect(fmt, UnicodeStrin
173 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
181 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
192 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, UChar pad) argument
200 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos, int32_t width, const UnicodeString& pad) argument
207 expectPat(DecimalFormat& fmt, const char *exp) argument
214 expectPad(DecimalFormat& fmt, const char *pat, int32_t pos) argument
[all...]
/external/icu4c/test/intltest/
H A Dnmfmtrt.cpp92 NumberFormat *fmt = NULL; local
96 fmt = NumberFormat::createInstance(status);
98 test(fmt);
100 delete fmt;
102 fmt = NumberFormat::createCurrencyInstance(status);
104 test(fmt);
106 delete fmt;
108 fmt = NumberFormat::createPercentInstance(status);
110 test(fmt);
112 delete fmt;
147 test(NumberFormat *fmt) argument
217 test(NumberFormat *fmt, double value) argument
223 test(NumberFormat *fmt, int32_t value) argument
229 test(NumberFormat *fmt, const Formattable& value) argument
[all...]
/external/bison/lib/
H A Dstrerror.c39 static char const fmt[] = "Unknown error (%d)"; local
40 static char mesg[sizeof fmt + sizeof n * CHAR_BIT / 3];
44 sprintf (mesg, fmt, n);
/external/chromium/third_party/icu/source/i18n/
H A Dmeasfmt.cpp24 CurrencyFormat* fmt = NULL; local
26 fmt = new CurrencyFormat(locale, ec);
28 delete fmt;
29 fmt = NULL;
32 return fmt;
H A Dcurrfmt.cpp21 fmt(NULL)
23 fmt = NumberFormat::createCurrencyInstance(locale, ec);
27 MeasureFormat(other), fmt(NULL)
29 fmt = (NumberFormat*) other.fmt->clone();
33 delete fmt;
44 return *fmt == *c->fmt;
56 return fmt->format(obj, appendTo, pos, ec);
63 fmt
[all...]
/external/icu4c/i18n/
H A Dmeasfmt.cpp24 CurrencyFormat* fmt = NULL; local
26 fmt = new CurrencyFormat(locale, ec);
28 delete fmt;
29 fmt = NULL;
32 return fmt;
H A Dcurrfmt.cpp21 fmt(NULL)
23 fmt = NumberFormat::createCurrencyInstance(locale, ec);
27 MeasureFormat(other), fmt(NULL)
29 fmt = (NumberFormat*) other.fmt->clone();
33 delete fmt;
44 return *fmt == *c->fmt;
56 return fmt->format(obj, appendTo, pos, ec);
63 fmt
[all...]
/external/astl/src/
H A Dostream.cpp63 const char *fmt = "%d"; local
65 int size = snprintf(buf, kNumSize, fmt, val);
70 const char *fmt = "%u"; local
72 int size = snprintf(buf, kNumSize, fmt, val);
77 const char *fmt = "%ld"; local
79 int size = snprintf(buf, kNumSize, fmt, val);
84 const char *fmt = "%lu"; local
86 int size = snprintf(buf, kNumSize, fmt, val);
91 const char *fmt = "%lld"; local
93 int size = snprintf(buf, kNumSize, fmt, va
98 const char *fmt = "%llu"; local
106 const char *fmt = "%.*e"; local
113 const char *fmt = "%.*e"; local
120 const char *fmt = "%p"; local
[all...]
/external/quake/quake/src/WinQuake/
H A Dconsole.h37 void Con_Printf (const char *fmt, ...);
38 void Con_DPrintf (const char *fmt, ...);
39 void Con_SafePrintf (const char *fmt, ...);
H A Dmain.cpp43 void PMP_Common(const char* fmt, va_list ap, char type) argument
46 vsnprintf(buf, sizeof(buf), fmt, ap);
102 void PMP_Begin(const char* fmt,...) argument
105 va_start(ap, fmt);
106 PMP_Common(fmt, ap, '<');
109 void PMP_Event(const char* fmt,...) argument
112 va_start(ap, fmt);
113 PMP_Common(fmt, ap, '=');
116 void PMP_End(const char* fmt,...) argument
119 va_start(ap, fmt);
[all...]
/external/qemu/
H A Dmigration-dummy-android.c25 #define dprintf(fmt, ...) \
26 do { printf("migration: " fmt, ## __VA_ARGS__); } while (0)
28 #define dprintf(fmt, ...) \
/external/e2fsprogs/lib/et/
H A Dcom_err.c21 char *fmt, va_list args)
26 char *fmt, va_list args)
36 if (fmt) {
37 vfprintf (stderr, fmt, args);
48 void com_err_va (const char *whoami, errcode_t code, const char *fmt, argument
51 (*com_err_hook) (whoami, code, fmt, args);
56 const char *fmt, ...)
62 va_start(pvar, fmt);
63 com_err_va (whoami, code, fmt, pvar);
25 default_com_err_proc(const char *whoami, errcode_t code, const char *fmt, va_list args) argument
54 com_err(const char *whoami, errcode_t code, const char *fmt, ...) argument
/external/qemu/distrib/sdl-1.2.12/src/
H A DSDL_error.c50 void SDL_SetError (const char *fmt, ...) argument
58 SDL_strlcpy((char *)error->key, fmt, sizeof(error->key));
60 va_start(ap, fmt);
62 while ( *fmt ) {
63 if ( *fmt++ == '%' ) {
64 while ( *fmt == '.' || (*fmt >= '0' && *fmt <= '9') ) {
65 ++fmt;
67 switch (*fmt
128 const char *fmt; local
[all...]
/external/qemu/android/utils/
H A Dbufprint.h49 extern char* vbufprint(char* buffer, char* buffend, const char* fmt, va_list args );
50 extern char* bufprint (char* buffer, char* buffend, const char* fmt, ... );
/external/quake/quake/src/QW/server/
H A Dsys.h29 void Sys_Printf (char *fmt, ...);
/external/sonivox/arm-fm-22k/host_src/
H A Deas_report.h65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.h65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.h65 extern void EAS_Report (int severity, const char* fmt, ...);
66 extern void EAS_ReportX (int severity, const char* fmt, ...);

Completed in 843 milliseconds

1234567891011>>