Searched refs:format (Results 126 - 150 of 5209) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
H A DLoadTile.cpp82 pfnLoadTiles = sLoadTilesColorTable_SWR_TILE_NONE[pSrcSurface->format];
85 pfnLoadTiles = sLoadTilesColorTable_SWR_TILE_MODE_YMAJOR[pSrcSurface->format];
88 pfnLoadTiles = sLoadTilesColorTable_SWR_TILE_MODE_XMAJOR[pSrcSurface->format];
91 SWR_ASSERT(pSrcSurface->format == R8_UINT);
105 pfnLoadTiles = sLoadTilesDepthTable_SWR_TILE_NONE[pSrcSurface->format];
108 pfnLoadTiles = sLoadTilesDepthTable_SWR_TILE_MODE_YMAJOR[pSrcSurface->format];
118 SWR_ASSERT(pSrcSurface->format == R8_UINT);
135 SWR_ASSERT(false, "Unsupported format for load tile");
141 if (sBuckets[pSrcSurface->format] == -1)
145 if (sBuckets[pSrcSurface->format]
[all...]
/external/libcups/cups/
H A Dsnprintf.c31 const char *format, /* I - printf-style format string */
36 sign, /* Sign of format width */
41 char tformat[100], /* Temporary format string for sprintf() */
42 *tptr, /* Pointer into temporary format */
51 * Loop through the format string, formatting as needed...
58 while (*format)
60 if (*format == '%')
63 *tptr++ = *format++;
65 if (*format
29 _cups_vsnprintf(char *buffer, size_t bufsize, const char *format, va_list ap) argument
338 _cups_snprintf(char *buffer, size_t bufsize, const char *format, ...) argument
[all...]
/external/libxml2/
H A Dtrio.h80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...));
81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args));
84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...));
85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...));
89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
93 TRIO_CONST char *format,
[all...]
/external/fio/
H A Dlog.h12 extern size_t log_err(const char *format, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
13 extern size_t log_info(const char *format, ...) __attribute__ ((__format__ (__printf__, 1, 2)));
14 extern size_t __log_buf(struct buf_output *, const char *format, ...) __attribute__ ((__format__ (__printf__, 2, 3)));
19 #define log_buf(buf, format, args...) \
22 __log_buf(buf, format, ##args); \
24 log_info(format, ##args); \
H A Dgerror.h4 extern void gfio_report_error(struct gui_entry *ge, const char *format, ...);
/external/fio/t/
H A Dlog.c5 size_t log_err(const char *format, ...) argument
11 va_start(args, format);
12 len = vsnprintf(buffer, sizeof(buffer), format, args);
19 size_t log_info(const char *format, ...) argument
25 va_start(args, format);
26 len = vsnprintf(buffer, sizeof(buffer), format, args);
/external/wpa_supplicant_8/hostapd/src/fst/
H A Dfst_internal.h20 #define fst_printf(level, format, ...) \
21 wpa_printf((level), "FST: " format, ##__VA_ARGS__)
23 #define fst_printf_group(group, level, format, ...) \
24 wpa_printf((level), "FST: %s: " format, \
27 #define fst_printf_iface(iface, level, format, ...) \
28 fst_printf_group(fst_iface_get_group(iface), (level), "%s: " format, \
/external/wpa_supplicant_8/src/fst/
H A Dfst_internal.h20 #define fst_printf(level, format, ...) \
21 wpa_printf((level), "FST: " format, ##__VA_ARGS__)
23 #define fst_printf_group(group, level, format, ...) \
24 wpa_printf((level), "FST: %s: " format, \
27 #define fst_printf_iface(iface, level, format, ...) \
28 fst_printf_group(fst_iface_get_group(iface), (level), "%s: " format, \
/external/wpa_supplicant_8/wpa_supplicant/src/fst/
H A Dfst_internal.h20 #define fst_printf(level, format, ...) \
21 wpa_printf((level), "FST: " format, ##__VA_ARGS__)
23 #define fst_printf_group(group, level, format, ...) \
24 wpa_printf((level), "FST: %s: " format, \
27 #define fst_printf_iface(iface, level, format, ...) \
28 fst_printf_group(fst_iface_get_group(iface), (level), "%s: " format, \
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseAlgorithmParameters.java10 protected boolean isASN1FormatString(String format) argument
12 return format == null || format.equals("ASN.1");
/external/e2fsprogs/intl/
H A Dvasnprintf.h33 /* The __-protected variants of `format' and `printf' attributes
36 # define __format__ format
52 extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)
54 extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args)
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DNamedRunnable.java25 public NamedRunnable(String format, Object... args) { argument
26 this.name = String.format(format, args);
/external/swiftshader/src/Common/
H A DDebug.hpp28 void trace(const char *format, ...);
31 #define TRACE(format, ...) trace("[0x%0.8X]%s(" format ")\n", this, __FUNCTION__, ##__VA_ARGS__)
/external/syslinux/com32/lib/
H A Dvasprintf.c9 int vasprintf(char **bufp, const char *format, va_list ap) argument
17 bytes = vsnprintf(NULL, 0, format, ap1) + 1;
24 return vsnprintf(p, bytes, format, ap);
/external/valgrind/coregrind/
H A Dpub_core_debuglog.h77 const HChar* format, ... )
78 __attribute__((format(__printf__, 3, 4)));
87 const HChar *format,
/external/clang/test/CodeGen/
H A D2002-06-25-FWriteInterfaceFailure.c5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
H A D2003-10-02-UnionLValueError.c3 int sprintf(char * restrict str, const char * restrict format, ...);
/external/clang/test/Frontend/
H A Dsource-col-map.c18 __attribute__((format(printf, 1, 2)))
35 // CHECK: format specifies type 'int' but the argument has
/external/clang/test/Sema/
H A Dblock-printf-attribute-1.c6 void (^b) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 1, 3))) = // expected-error {{format argument not a string type}} local
7 ^ __attribute__ ((__format__ (__printf__, 1, 3))) (int arg, const char * format, ...) {}; // expected-error {{format argument not a string type}}
9 void (^z) (int arg, const char * format, ...) __attribute__ ((__format__ (__printf__, 2, 3))) = ^ __attribute__ ((__format__ (__printf__, 2, 3))) (int arg, const char * format, ...) {}; local
11 z(1, "%s", 1); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
16 // Handle block with multiple format attributes.
20 vprintf_scanf("%", ap, "%d"); // expected-warning {{incomplete format specifier}}, expected-warning {{more '%' conversions than data arguments}}
/external/compiler-rt/test/dfsan/
H A Dvararg.c10 int do_nothing(const char *format, ...) { argument
/external/deqp/modules/egl/
H A DteglAndroidUtil.hpp35 de::MovePtr<ImageSource> createAndroidNativeImageSource (glw::GLenum format);
/external/eigen/doc/snippets/
H A DIOFormat.cpp11 std::cout << m1.format(CommaInitFmt) << sep;
12 std::cout << m1.format(CleanFmt) << sep;
13 std::cout << m1.format(OctaveFmt) << sep;
14 std::cout << m1.format(HeavyFmt) << sep;
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DPeriodFormatter.java15 * The Period defines the fields to format and their
16 * values, and the formatter defines how to format them.
31 * @param ts the Period to format
34 String format(Period period); method in interface:PeriodFormatter
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodFormatter.java14 * The Period defines the fields to format and their
15 * values, and the formatter defines how to format them.
29 * @param ts the Period to format
32 String format(Period period); method in interface:PeriodFormatter
/external/libchrome/base/strings/
H A Dstringprintf.h19 BASE_EXPORT std::string StringPrintf(_Printf_format_string_ const char* format,
24 _Printf_format_string_ const wchar_t* format,
29 BASE_EXPORT std::string StringPrintV(const char* format, va_list ap)
35 _Printf_format_string_ const char* format,
40 _Printf_format_string_ const wchar_t* format,
46 _Printf_format_string_ const char* format,
50 _Printf_format_string_ const wchar_t* format,
56 BASE_EXPORT void StringAppendV(std::string* dst, const char* format, va_list ap)
60 const wchar_t* format, va_list ap)

Completed in 933 milliseconds

1234567891011>>