Searched refs:format (Results 26 - 50 of 4509) sorted by relevance

1234567891011>>

/external/skia/src/ports/
H A DSkDebug_android.cpp20 void SkDebugf(const char format[], ...) { argument
22 va_start(args1, format);
26 vprintf(format, args2);
30 __android_log_vprint(ANDROID_LOG_DEBUG, LOG_TAG, format, args1);
H A DSkImageGeneratorWIC.cpp69 // Get the encoded pixel format.
70 WICPixelFormatGUID format; local
71 hr = imageSource->GetPixelFormat(&format);
82 if (GUID_WICPixelFormat16bppBGR555 == format ||
83 GUID_WICPixelFormat16bppBGR565 == format ||
84 GUID_WICPixelFormat32bppBGR101010 == format ||
85 GUID_WICPixelFormatBlackWhite == format ||
86 GUID_WICPixelFormat2bppGray == format ||
87 GUID_WICPixelFormat4bppGray == format ||
88 GUID_WICPixelFormat8bppGray == format ||
152 GUID format = GUID_WICPixelFormat32bppPBGRA; local
[all...]
H A DSkDebug_win.cpp19 void SkDebugf(const char format[], ...) { argument
23 va_start(args, format);
24 vfprintf(stderr, format, args);
28 va_start(args, format);
29 vsnprintf(buffer, kBufferSize, format, args);
/external/swiftshader/src/OpenGL/compiler/
H A Ddebug.cpp29 void Trace(const char *format, ...) { argument
30 if (!format) return;
36 va_start(args, format);
37 vsnprintf(buf, kTraceBufferLen, format, args);
/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(print
[all...]
/external/fmtlib/fmt/
H A Dprintf.cc7 For the license information refer to format.h.
10 #include "format.h"
16 void printf(BasicWriter<Char> &w, BasicCStringRef<Char> format, ArgList args);
18 FMT_FUNC int fprintf(std::FILE *f, CStringRef format, ArgList args) { argument
20 printf(w, format, args);
27 template void PrintfFormatter<char>::format(CStringRef format);
28 template void PrintfFormatter<wchar_t>::format(WCStringRef format);
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsimple_bitmap_glyph.cc21 SimpleBitmapGlyph::SimpleBitmapGlyph(ReadableFontData* data, int32_t format) argument
22 : BitmapGlyph(data, format) {
28 SimpleBitmapGlyph::Builder::Builder(ReadableFontData* data, int32_t format) argument
29 : BitmapGlyph::Builder(data, format) {
32 SimpleBitmapGlyph::Builder::Builder(WritableFontData* data, int32_t format) argument
33 : BitmapGlyph::Builder(data, format) {
41 Ptr<SimpleBitmapGlyph> glyph = new SimpleBitmapGlyph(data, format());
/external/swiftshader/src/OpenGL/common/
H A Ddebug.cpp30 void output(const char *format, va_list vararg) argument
32 ALOGI("%s", android::String8::formatV(format, vararg).string());
35 static void output(const char *format, va_list vararg)
47 vfprintf(file, format, vararg);
53 void trace(const char *format, ...) argument
56 va_start(vararg, format);
57 output(format, vararg);
/external/bison/src/
H A Dcomplain.h35 the normal warning format. */
41 void warn (char const *format, ...)
44 void warn_at (location loc, char const *format, ...)
51 char const *format, ...)
56 void complain (char const *format, ...)
59 void complain_at (location loc, char const *format, ...)
66 char const *format, ...)
72 void yacc_at (location loc, char const *format, ...)
78 void midrule_value_at (location loc, char const *format, ...)
83 void fatal (char const *format,
[all...]
/external/curl/include/curl/
H A Dmprintf.h33 CURL_EXTERN int curl_mprintf(const char *format, ...);
34 CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
35 CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
37 const char *format, ...);
38 CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
39 CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
40 CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
42 const char *format, va_list args);
43 CURL_EXTERN char *curl_maprintf(const char *format, ...);
44 CURL_EXTERN char *curl_mvaprintf(const char *format, va_lis
[all...]
/external/valgrind/coregrind/
H A Dpub_core_clreq.h62 static int VALGRIND_INTERNAL_PRINTF(const char *format, ...)
63 __attribute__((format(__printf__, 1, 2), __unused__));
64 static int VALGRIND_INTERNAL_PRINTF(const char *format, ...) argument
68 va_start(vargs, format);
71 (unsigned long)format, (unsigned long)&vargs, 0, 0, 0
/external/mesa3d/src/mesa/main/
H A Dglformats.h47 _mesa_components_in_format( GLenum format );
50 _mesa_bytes_per_pixel( GLenum format, GLenum type );
59 _mesa_is_enum_format_integer(GLenum format);
62 _mesa_is_enum_format_or_type_integer(GLenum format, GLenum type);
65 _mesa_is_color_format(GLenum format);
68 _mesa_is_depth_format(GLenum format);
71 _mesa_is_stencil_format(GLenum format);
74 _mesa_is_ycbcr_format(GLenum format);
77 _mesa_is_depthstencil_format(GLenum format);
80 _mesa_is_depth_or_stencil_format(GLenum format);
[all...]
H A Dformat_pack.h51 _mesa_get_pack_ubyte_rgba_function(gl_format format);
55 _mesa_get_pack_float_rgba_function(gl_format format);
59 _mesa_get_pack_float_z_func(gl_format format);
63 _mesa_get_pack_uint_z_func(gl_format format);
67 _mesa_get_pack_ubyte_stencil_func(gl_format format);
72 _mesa_pack_float_rgba_row(gl_format format, GLuint n,
76 _mesa_pack_ubyte_rgba_row(gl_format format, GLuint n,
81 _mesa_pack_ubyte_rgba_rect(gl_format format, GLuint width, GLuint height,
86 _mesa_pack_float_z_row(gl_format format, GLuint n,
90 _mesa_pack_uint_z_row(gl_format format, GLuin
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_soa.py33 * Pixel format accessor functions.
48 def is_format_supported(format):
50 to read/write to/from this format.'''
52 # FIXME: Ideally we would support any format combination here.
54 if format.name == 'PIPE_FORMAT_R11G11B10_FLOAT':
57 if format.name == 'PIPE_FORMAT_R9G9B9E5_FLOAT':
60 if format.layout != PLAIN:
64 channel = format.channels[i]
70 if format.colorspace not in ('rgb', 'srgb'):
76 def generate_format_read(format, dst_channe
[all...]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineVertexUtil.hpp50 deUint32 getVertexFormatSize (vk::VkFormat format);
51 deUint32 getVertexFormatComponentCount (vk::VkFormat format);
52 deUint32 getVertexFormatComponentSize (vk::VkFormat format);
53 bool isVertexFormatComponentOrderBGR (vk::VkFormat format);
54 bool isVertexFormatSint (vk::VkFormat format);
55 bool isVertexFormatUint (vk::VkFormat format);
56 bool isVertexFormatSfloat (vk::VkFormat format);
57 bool isVertexFormatUfloat (vk::VkFormat format);
58 bool isVertexFormatUnorm (vk::VkFormat format);
59 bool isVertexFormatSnorm (vk::VkFormat format);
[all...]
/external/deqp/framework/common/
H A DtcuDefs.cpp34 void die (const char* format, ...) argument
37 va_start(args, format);
38 qpDiev(format, args);
42 void print (const char* format, ...) argument
45 va_start(args, format);
46 qpPrintv(format, args);
/external/fio/t/
H A Dlog.c5 int log_err(const char *format, ...) argument
11 va_start(args, format);
12 len = vsnprintf(buffer, sizeof(buffer), format, args);
19 int log_info(const char *format, ...) argument
25 va_start(args, format);
26 len = vsnprintf(buffer, sizeof(buffer), format, args);
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_tile.h32 gl_format format, unsigned width, unsigned height);
36 gl_format format, unsigned width, unsigned height);
38 void get_tile_size(gl_format format, unsigned *block_width, unsigned *block_height);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tile.h32 gl_format format, unsigned width, unsigned height);
36 gl_format format, unsigned width, unsigned height);
38 void get_tile_size(gl_format format, unsigned *block_width, unsigned *block_height);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkImageUtil.hpp35 bool isFloatFormat (VkFormat format);
36 bool isUnormFormat (VkFormat format);
37 bool isSnormFormat (VkFormat format);
38 bool isIntFormat (VkFormat format);
39 bool isUintFormat (VkFormat format);
40 bool isDepthStencilFormat (VkFormat format);
41 bool isCompressedFormat (VkFormat format);
42 bool isSrgbFormat (VkFormat format);
44 bool isSupportedByFramework (VkFormat format);
46 tcu::TextureFormat mapVkFormat (VkFormat format);
[all...]
/external/mdnsresponder/mDNSShared/
H A DmDNSDebug.c52 mDNSexport void verbosedebugf_(const char *format, ...) argument
56 va_start(ptr,format);
57 buffer[mDNS_vsnprintf(buffer, sizeof(buffer), format, ptr)] = 0;
64 mDNSlocal void LogMsgWithLevelv(mDNSLogLevel_t logLevel, const char *format, va_list ptr) argument
67 buffer[mDNS_vsnprintf((char *)buffer, sizeof(buffer), format, ptr)] = 0;
74 va_start(ptr,format); \
75 LogMsgWithLevelv(L, format, ptr); \
81 void LogMsg_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_MSG)
82 void LogOperation_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_OPERATION)
83 void LogSPS_(const char *format,
[all...]
/external/clang/test/SemaCXX/
H A Dattr-format.cpp3 static void f(const char*, ...) __attribute__((format(printf, 1, 2)));
7 // the format argument is argument 2 here.
8 void g(const char*, ...) __attribute__((format(printf, 2, 3)));
11 void h(const char*, ...) __attribute__((format(printf, 1, 4))); // \
12 expected-error{{implicit this argument as the format string}}
13 void h2(const char*, ...) __attribute__((format(printf, 2, 1))); // \
18 void operator() (const char*, ...) __attribute__((format(printf, 2, 3)));
22 struct A { void a(const char*,...) __attribute((format(printf,2,3))); };
32 __attribute__((format(printf, 2, 3)));
/external/compiler-rt/lib/builtins/
H A Deprintf.c29 __eprintf(const char* format, const char* assertion_expression, argument
32 fprintf(stderr, format, assertion_expression, line, file);
/external/e2fsprogs/intl/
H A Dprintf.c1 /* Formatted output to strings, using POSIX/XSI format strings with positions.
80 libintl_vfprintf (FILE *stream, const char *format, va_list args) argument
82 if (strchr (format, '$') == NULL)
83 return vfprintf (stream, format, args);
87 char *result = libintl_vasnprintf (NULL, &length, format, args);
101 libintl_fprintf (FILE *stream, const char *format, ...) argument
106 va_start (args, format);
107 retval = libintl_vfprintf (stream, format, args);
114 libintl_vprintf (const char *format, va_list args) argument
116 return libintl_vfprintf (stdout, format, arg
121 libintl_printf(const char *format, ...) argument
134 libintl_vsprintf(char *resultbuf, const char *format, va_list args) argument
154 libintl_sprintf(char *resultbuf, const char *format, ...) argument
177 libintl_vsnprintf(char *resultbuf, size_t length, const char *format, va_list args) argument
204 libintl_snprintf(char *resultbuf, size_t length, const char *format, ...) argument
221 libintl_vasprintf(char **resultp, const char *format, va_list args) argument
233 libintl_asprintf(char **resultp, const char *format, ...) argument
273 libintl_vfwprintf(FILE *stream, const wchar_t *format, va_list args) argument
298 libintl_fwprintf(FILE *stream, const wchar_t *format, ...) argument
311 libintl_vwprintf(const wchar_t *format, va_list args) argument
318 libintl_wprintf(const wchar_t *format, ...) argument
331 libintl_vswprintf(wchar_t *resultbuf, size_t length, const wchar_t *format, va_list args) argument
358 libintl_swprintf(wchar_t *resultbuf, size_t length, const wchar_t *format, ...) argument
[all...]
/external/elfutils/backends/
H A Dalpha_auxv.c37 EBLHOOK(auxv_info) (GElf_Xword a_type, const char **name, const char **format) argument
43 *format = "b"

Completed in 516 milliseconds

1234567891011>>