HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 26 - 50 of 6363) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/bison/src/
complain.h 35 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/dexmaker/src/dx/java/com/android/dx/io/instructions/
FillArrayDataPayloadDecodedInstruction.java 38 private FillArrayDataPayloadDecodedInstruction(InstructionCodec format,
40 super(format, opcode, 0, null, 0, 0L);
50 public FillArrayDataPayloadDecodedInstruction(InstructionCodec format,
52 this(format, opcode, data, data.length, 1);
58 public FillArrayDataPayloadDecodedInstruction(InstructionCodec format,
60 this(format, opcode, data, data.length, 2);
66 public FillArrayDataPayloadDecodedInstruction(InstructionCodec format,
68 this(format, opcode, data, data.length, 4);
74 public FillArrayDataPayloadDecodedInstruction(InstructionCodec format,
76 this(format, opcode, data, data.length, 8)
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
util.c 8 static int perf_stdio__error(const char *format, va_list args)
11 vfprintf(stderr, format, args);
15 static int perf_stdio__warning(const char *format, va_list args)
18 vfprintf(stderr, format, args);
31 int ui__error(const char *format, ...)
36 va_start(args, format);
37 ret = perf_eops->error(format, args);
43 int ui__warning(const char *format, ...)
48 va_start(args, format);
49 ret = perf_eops->warning(format, args)
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
PrivateKeyStub.java 35 String format = null; field in class:PrivateKeyStub
43 * @param format
46 public PrivateKeyStub(String algorithm, String format, byte[] encoded) {
48 this.format = format;
62 * Returns format
67 return format;
PublicKeyStub.java 37 String format = null; field in class:PublicKeyStub
43 public PublicKeyStub(String algorithm, String format, byte[] encoded) {
45 this.format = format;
57 * returns format
62 return format;
  /external/chromium_org/cc/resources/
platform_color.h 24 static SourceDataFormat Format() {
28 // Returns the most efficient texture format for this platform.
30 switch (Format()) {
40 // Return true if the given texture format has the same component order
42 static bool SameComponentOrder(ResourceFormat format) {
43 switch (Format()) {
45 return format == RGBA_8888 || format == RGBA_4444;
47 return format == BGRA_8888 || format == RGBA_4444
    [all...]
resource.h 18 Resource(unsigned id, const gfx::Size& size, ResourceFormat format)
21 format_(format) {}
25 ResourceFormat format() const { return format_; } function in class:cc::Resource
29 ResourceFormat format) {
30 DCHECK_EQ(0u, (BitsPerPixel(format) * size.width() * size.height()) % 8);
31 return (BitsPerPixel(format) * size.width() * size.height()) / 8;
36 void set_dimensions(const gfx::Size& size, ResourceFormat format) {
38 format_ = format;
resource_format.cc 9 SkColorType ResourceFormatToSkColorType(ResourceFormat format) {
10 switch (format) {
  /external/chromium_org/third_party/skia/src/ports/
SkDebug_win.cpp 19 void SkDebugf(const char format[], ...) {
23 va_start(args, format);
24 vprintf(format, args);
30 va_start(args, format);
31 vsnprintf(buffer, kBufferSize, format, args);
  /external/e2fsprogs/lib/quota/
common.h 16 #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/chromium_org/third_party/mesa/src/src/mesa/main/
glformats.h 47 _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...]
format_pack.h 51 _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, GLuint n
    [all...]
  /external/mesa3d/src/mesa/main/
glformats.h 47 _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...]
format_pack.h 51 _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, GLuint n
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_tile_soa.py 33 * 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_channel, dst_native_type, dst_suffix)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_soa.py 33 * 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_channel, dst_native_type, dst_suffix)
    [all...]
  /development/ndk/sources/android/libportable/arch-mips64/
va_funcs.c 23 int WRAP(vfprintf)(FILE *stream, const char *format, va_list_portable *arg) {
24 return REAL(vfprintf)(stream, format, arg);
27 int WRAP(vfscanf)(FILE *stream, const char *format, va_list_portable *arg) {
28 return REAL(vfscanf)(stream, format, arg);
31 int WRAP(vprintf)(const char *format, va_list_portable *arg) {
32 return REAL(vprintf)(format, arg);
35 int WRAP(vscanf)(const char *format, va_list_portable *arg) {
36 return REAL(vscanf)(format, arg);
39 int WRAP(vsnprintf)(char *s, size_t n, const char *format, va_list_portable *arg) {
40 return REAL(vsnprintf)(s, n, format, arg)
    [all...]
  /development/ndk/sources/android/libportable/arch-x86_64/
va_funcs.c 23 int WRAP(vfprintf)(FILE *stream, const char *format, va_list_portable *arg) {
24 return REAL(vfprintf)(stream, format, arg);
27 int WRAP(vfscanf)(FILE *stream, const char *format, va_list_portable *arg) {
28 return REAL(vfscanf)(stream, format, arg);
31 int WRAP(vprintf)(const char *format, va_list_portable *arg) {
32 return REAL(vprintf)(format, arg);
35 int WRAP(vscanf)(const char *format, va_list_portable *arg) {
36 return REAL(vscanf)(format, arg);
39 int WRAP(vsnprintf)(char *s, size_t n, const char *format, va_list_portable *arg) {
40 return REAL(vsnprintf)(s, n, format, arg)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tile.h 32 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/
tcuDefs.cpp 34 void die (const char* format, ...)
37 va_start(args, format);
38 qpDiev(format, args);
42 void print (const char* format, ...)
45 va_start(args, format);
46 qpPrintv(format, args);
  /external/fio/t/
log.c 5 int log_err(const char *format, ...)
11 va_start(args, format);
12 len = vsnprintf(buffer, sizeof(buffer), format, args);
19 int log_info(const char *format, ...)
25 va_start(args, format);
26 len = vsnprintf(buffer, sizeof(buffer), format, args);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.h 32 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/
mDNSDebug.c 53 mDNSexport void verbosedebugf_(const char *format, ...)
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)
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, ...) LOG_HELPER_BODY(MDNS_LOG_SPS
    [all...]
  /external/clang/test/Sema/
attr-format.c 5 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(printf, 1, 0))); // no-erro
    [all...]
  /bionic/libc/bionic/
strftime_l.cpp 31 size_t strftime_l(char *s, size_t max, const char *format, const struct tm *tm,
33 return strftime(s, max, format, tm);

Completed in 838 milliseconds

12 3 4 5 6 7 8 91011>>