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

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dutil.c8 static int perf_stdio__error(const char *format, va_list args) argument
11 vfprintf(stderr, format, args);
15 static int perf_stdio__warning(const char *format, va_list args) argument
18 vfprintf(stderr, format, args);
31 int ui__error(const char *format, ...) argument
36 va_start(args, format);
37 ret = perf_eops->error(format, args);
43 int ui__warning(const char *format, ...) argument
48 va_start(args, format);
49 ret = perf_eops->warning(format, arg
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DPrivateKeyStub.java35 String format = null; field in class:PrivateKeyStub
43 * @param format
46 public PrivateKeyStub(String algorithm, String format, byte[] encoded) { argument
48 this.format = format;
62 * Returns format
67 return format;
H A DPublicKeyStub.java37 String format = null; field in class:PublicKeyStub
43 public PublicKeyStub(String algorithm, String format, byte[] encoded) { argument
45 this.format = format;
57 * returns format
62 return format;
/external/chromium_org/third_party/skia/src/ports/
H A DSkDebug_win.cpp19 void SkDebugf(const char format[], ...) { argument
23 va_start(args, format);
24 vprintf(format, args);
30 va_start(args, format);
31 vsnprintf(buffer, kBufferSize, format, args);
/external/e2fsprogs/lib/quota/
H A Dcommon.h16 #define log_err(format, arg ...) \
17 fprintf(stderr, "[ERROR] %s:%d:%s:: " format "\n", \
21 # define log_debug(format, arg ...) \
22 fprintf(stderr, "[DEBUG] %s:%d:%s:: " format "\n", \
25 # define log_debug(format, ...)
/external/skia/src/ports/
H A DSkDebug_win.cpp19 void SkDebugf(const char format[], ...) { argument
23 va_start(args, format);
24 vprintf(format, args);
30 va_start(args, format);
31 vsnprintf(buffer, kBufferSize, format, args);
/external/valgrind/main/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/qemu-pc-bios/bochs/bios/
H A Drombios.h43 #define printf(format, p...) bios_printf(BIOS_PRINTF_SCREEN, format, ##p)
49 # define BX_DEBUG(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
51 # define BX_DEBUG(format, p...)
53 #define BX_INFO(format, p...) bios_printf(BIOS_PRINTF_INFO, format, ##p)
54 #define BX_PANIC(format, p...) bios_printf(BIOS_PRINTF_DEBHALT, format, ##p)
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/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/mdnsresponder/mDNSShared/
H A DmDNSDebug.c53 mDNSexport void verbosedebugf_(const char *format, ...) argument
57 va_start(ptr,format);
58 buffer[mDNS_vsnprintf(buffer, sizeof(buffer), format, ptr)] = 0;
65 mDNSlocal void LogMsgWithLevelv(mDNSLogLevel_t logLevel, const char *format, va_list ptr) argument
68 buffer[mDNS_vsnprintf((char *)buffer, sizeof(buffer), format, ptr)] = 0;
75 va_start(ptr,format); \
76 LogMsgWithLevelv(L, format, ptr); \
82 void LogMsg_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_MSG)
83 void LogOperation_(const char *format, ...) LOG_HELPER_BODY(MDNS_LOG_OPERATION)
84 void LogSPS_(const char *format,
[all...]
/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/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_pixels.c35 * Allocate a pixel format structure and fill it according to the given info.
40 SDL_PixelFormat *format; local
43 /* Allocate an empty pixel format structure */
44 format = SDL_malloc(sizeof(*format));
45 if ( format == NULL ) {
49 SDL_memset(format, 0, sizeof(*format));
50 format->alpha = SDL_ALPHA_OPAQUE;
52 /* Set up the format */
251 SDL_FreeFormat(SDL_PixelFormat *format) argument
340 SDL_MapRGB(const SDL_PixelFormat * const format, const Uint8 r, const Uint8 g, const Uint8 b) argument
355 SDL_MapRGBA(const SDL_PixelFormat * const format, const Uint8 r, const Uint8 g, const Uint8 b, const Uint8 a) argument
[all...]
/external/chromium_org/cc/resources/
H A Dresource_format.cc9 SkColorType ResourceFormatToSkColorType(ResourceFormat format) { argument
10 switch (format) {
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_sampler.h45 enum pipe_format format);
50 enum pipe_format format);

Completed in 3911 milliseconds

1234567891011>>