Searched refs:format (Results 326 - 350 of 6114) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dformats.c45 * Base format is one of GL_RED, GL_RG, GL_RGB, GL_RGBA, GL_ALPHA,
76 * Info about each format.
1537 _mesa_get_format_info(gl_format format) argument
1539 const struct gl_format_info *info = &format_info[format];
1540 assert(info->Name == format);
1545 /** Return string name of format (for debugging) */
1547 _mesa_get_format_name(gl_format format) argument
1549 const struct gl_format_info *info = _mesa_get_format_info(format);
1556 * Return bytes needed to store a block of pixels in the given format.
1563 _mesa_get_format_bytes(gl_format format) argument
1579 _mesa_get_format_bits(gl_format format, GLenum pname) argument
1628 _mesa_get_format_max_bits(gl_format format) argument
1653 _mesa_get_format_datatype(gl_format format) argument
1666 _mesa_get_format_base_format(gl_format format) argument
1681 _mesa_get_format_block_size(gl_format format, GLuint *bw, GLuint *bh) argument
1691 _mesa_is_format_compressed(gl_format format) argument
1702 _mesa_is_format_packed_depth_stencil(gl_format format) argument
1714 _mesa_is_format_integer_color(gl_format format) argument
1728 _mesa_is_format_unsigned(gl_format format) argument
1740 _mesa_get_format_color_encoding(gl_format format) argument
1765 _mesa_get_srgb_format_linear(gl_format format) argument
1807 _mesa_get_uncompressed_format(gl_format format) argument
1854 _mesa_format_num_components(gl_format format) argument
1873 _mesa_format_image_size(gl_format format, GLsizei width, GLsizei height, GLsizei depth) argument
1899 _mesa_format_image_size64(gl_format format, GLsizei width, GLsizei height, GLsizei depth) argument
1925 _mesa_format_row_stride(gl_format format, GLsizei width) argument
2061 _mesa_format_to_type_and_comps(gl_format format, GLenum *datatype, GLuint *comps) argument
2546 _mesa_format_matches_format_and_type(gl_format gl_format, GLenum format, GLenum type, GLboolean swapBytes) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dformats.c45 * Base format is one of GL_RED, GL_RG, GL_RGB, GL_RGBA, GL_ALPHA,
76 * Info about each format.
1537 _mesa_get_format_info(gl_format format) argument
1539 const struct gl_format_info *info = &format_info[format];
1540 assert(info->Name == format);
1545 /** Return string name of format (for debugging) */
1547 _mesa_get_format_name(gl_format format) argument
1549 const struct gl_format_info *info = _mesa_get_format_info(format);
1556 * Return bytes needed to store a block of pixels in the given format.
1563 _mesa_get_format_bytes(gl_format format) argument
1579 _mesa_get_format_bits(gl_format format, GLenum pname) argument
1628 _mesa_get_format_max_bits(gl_format format) argument
1653 _mesa_get_format_datatype(gl_format format) argument
1666 _mesa_get_format_base_format(gl_format format) argument
1681 _mesa_get_format_block_size(gl_format format, GLuint *bw, GLuint *bh) argument
1691 _mesa_is_format_compressed(gl_format format) argument
1702 _mesa_is_format_packed_depth_stencil(gl_format format) argument
1714 _mesa_is_format_integer_color(gl_format format) argument
1728 _mesa_is_format_unsigned(gl_format format) argument
1740 _mesa_get_format_color_encoding(gl_format format) argument
1765 _mesa_get_srgb_format_linear(gl_format format) argument
1807 _mesa_get_uncompressed_format(gl_format format) argument
1854 _mesa_format_num_components(gl_format format) argument
1873 _mesa_format_image_size(gl_format format, GLsizei width, GLsizei height, GLsizei depth) argument
1899 _mesa_format_image_size64(gl_format format, GLsizei width, GLsizei height, GLsizei depth) argument
1925 _mesa_format_row_stride(gl_format format, GLsizei width) argument
2061 _mesa_format_to_type_and_comps(gl_format format, GLenum *datatype, GLuint *comps) argument
2546 _mesa_format_matches_format_and_type(gl_format gl_format, GLenum format, GLenum type, GLboolean swapBytes) argument
[all...]
/external/libunwind/src/coredump/
H A D_UCD_find_proc_info.c38 if (ui->edi.ktab.format != -1 && ip >= ui->edi.ktab.start_ip && ip < ui->edi.ktab.end_ip)
42 if ((ui->edi.di_cache.format != -1
45 || (ui->edi.di_debug.format != -1
48 || (ui->edi.di_debug.format != -1
81 if (ui->edi.di_cache.format != -1
83 ui->edi.di_cache.format = -1;
85 if (ui->edi.di_debug.format != -1
87 ui->edi.di_debug.format = -1;
89 if (ui->edi.di_cache.format == -1
91 && ui->edi.di_arm.format
[all...]
/external/libunwind/src/ptrace/
H A D_UPT_find_proc_info.c49 if (edi->ktab.format != -1 && ip >= edi->ktab.start_ip && ip < edi->ktab.end_ip)
53 if ((edi->di_cache.format != -1
56 || (edi->di_debug.format != -1
59 || (edi->di_debug.format != -1
79 if (edi->di_cache.format != -1
81 edi->di_cache.format = -1;
83 if (edi->di_debug.format != -1
85 edi->di_debug.format = -1;
87 if (edi->di_cache.format == -1
89 && edi->di_arm.format
[all...]
/external/chromium_org/v8/src/arm/
H A Ddisasm-arm.cc78 int FormatVFPRegister(Instruction* instr, const char* format);
80 int FormatVFPinstruction(Instruction* instr, const char* format);
93 void Format(Instruction* instr, const char* format);
301 int Decoder::FormatRegister(Instruction* instr, const char* format) { argument
302 DCHECK(format[0] == 'r');
303 if (format[1] == 'n') { // 'rn: Rn register
307 } else if (format[1] == 'd') { // 'rd: Rd register
311 } else if (format[1] == 's') { // 'rs: Rs register
315 } else if (format[1] == 'm') { // 'rm: Rm register
319 } else if (format[
350 FormatVFPRegister(Instruction* instr, const char* format) argument
393 FormatVFPinstruction(Instruction* instr, const char* format) argument
448 FormatOption(Instruction* instr, const char* format) argument
671 Format(Instruction* instr, const char* format) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_format_interceptor_test.cc50 static void verifyFormatResults(const char *format, unsigned n, argument
53 // "+ 1" because of format string
55 computed_sizes.size()) << "Unexpected number of format arguments: '"
56 << format << "'";
59 << "Unexpect write size for argument " << i << ", format string '"
60 << format << "'"; local
69 const char *format, ...) {
71 va_start(ap, format);
72 scanf_common(ctx, result, allowGnuMalloc, format, ap);
76 static void testScanf2(const char *format, in argument
68 testScanf3(void *ctx, int result, bool allowGnuMalloc, const char *format, ...) argument
88 testScanf(const char *format, unsigned n, ...) argument
95 testScanfPartial(const char *format, int scanf_result, unsigned n, ...) argument
103 testScanfNoGnuMalloc(const char *format, unsigned n, ...) argument
206 testPrintf3(void *ctx, const char *format, ...) argument
213 testPrintf2(const char *format, unsigned n, va_list expected_sizes) argument
224 testPrintf(const char *format, unsigned n, ...) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_screen.c348 enum pipe_format format,
357 boolean is_color2101010 = format == PIPE_FORMAT_R10G10B10A2_UNORM ||
358 format == PIPE_FORMAT_R10G10B10X2_SNORM ||
359 format == PIPE_FORMAT_B10G10R10A2_UNORM ||
360 format == PIPE_FORMAT_R10SG10SB10SA2U_NORM;
361 boolean is_ati1n = format == PIPE_FORMAT_RGTC1_UNORM ||
362 format == PIPE_FORMAT_RGTC1_SNORM ||
363 format == PIPE_FORMAT_LATC1_UNORM ||
364 format == PIPE_FORMAT_LATC1_SNORM;
365 boolean is_ati2n = format
347 r300_is_format_supported(struct pipe_screen* screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned usage) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_screen.c348 enum pipe_format format,
357 boolean is_color2101010 = format == PIPE_FORMAT_R10G10B10A2_UNORM ||
358 format == PIPE_FORMAT_R10G10B10X2_SNORM ||
359 format == PIPE_FORMAT_B10G10R10A2_UNORM ||
360 format == PIPE_FORMAT_R10SG10SB10SA2U_NORM;
361 boolean is_ati1n = format == PIPE_FORMAT_RGTC1_UNORM ||
362 format == PIPE_FORMAT_RGTC1_SNORM ||
363 format == PIPE_FORMAT_LATC1_UNORM ||
364 format == PIPE_FORMAT_LATC1_SNORM;
365 boolean is_ati2n = format
347 r300_is_format_supported(struct pipe_screen* screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned usage) argument
[all...]
/external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/bool
23 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_short
27 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/pointer
31 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/int
35 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/long_double
39 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/short
43 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_int
47 test_name := input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/unsigned_long
51 test_name := input.output/iostream.format/inpu
[all...]
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/bool
23 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_short
27 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/pointer
31 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/int
35 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/long_double
39 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/short
43 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_int
47 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/unsigned_long
51 test_name := input.output/iostream.format/outpu
[all...]
/external/lldb/include/lldb/Core/
H A DLog.h130 Printf (const char *format, ...) __attribute__ ((format (printf, 2, 3)));
133 VAPrintf (const char *format, va_list args);
136 PrintfWithFlags( uint32_t flags, const char *format, ...) __attribute__ ((format (printf, 3, 4)));
139 LogIf (uint32_t mask, const char *fmt, ...) __attribute__ ((format (printf, 3, 4)));
142 Debug (const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
145 DebugVerbose (const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
148 Error (const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
151 FatalError (int err, const char *fmt, ...) __attribute__ ((format (print
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dutility.cc24 int NaClPluginPrintLog(const char *format, ...) { argument
33 va_start(arg, format);
34 int rc = vfprintf(stderr, format, arg);
39 va_start(arg, format);
40 out_size = vsnprintf(stack_buffer, kStackBufferSize, format, arg);
48 va_start(arg, format);
49 vsnprintf(buffer, out_size + 1, format, arg);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_describe.c44 util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
47 util_sprintf(buf, "pipe_texture1d<%u,%s,%u>", ptr->width0, util_format_short_name(ptr->format), ptr->last_level);
50 util_sprintf(buf, "pipe_texture2d<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level);
53 util_sprintf(buf, "pipe_texture_rect<%u,%u,%s>", ptr->width0, ptr->height0, util_format_short_name(ptr->format));
56 util_sprintf(buf, "pipe_texture_cube<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level);
59 util_sprintf(buf, "pipe_texture3d<%u,%u,%u,%s,%u>", ptr->width0, ptr->height0, ptr->depth0, util_format_short_name(ptr->format), ptr->last_level);
80 util_sprintf(buf, "pipe_sampler_view<%s,%s>", res, util_format_short_name(ptr->format));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph.h36 // format 1
39 // format 2
42 // format 3
44 // format 4
46 // format 5
49 // format 6
52 // format 7
55 // format 8
60 // format 9
85 int32_t format() { retur function in class:sfntly::BitmapGlyph::Builder
102 int32_t format() { return format_; } function in class:sfntly::BitmapGlyph
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_describe.c44 util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
47 util_sprintf(buf, "pipe_texture1d<%u,%s,%u>", ptr->width0, util_format_short_name(ptr->format), ptr->last_level);
50 util_sprintf(buf, "pipe_texture2d<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level);
53 util_sprintf(buf, "pipe_texture_rect<%u,%u,%s>", ptr->width0, ptr->height0, util_format_short_name(ptr->format));
56 util_sprintf(buf, "pipe_texture_cube<%u,%u,%s,%u>", ptr->width0, ptr->height0, util_format_short_name(ptr->format), ptr->last_level);
59 util_sprintf(buf, "pipe_texture3d<%u,%u,%u,%s,%u>", ptr->width0, ptr->height0, ptr->depth0, util_format_short_name(ptr->format), ptr->last_level);
80 util_sprintf(buf, "pipe_sampler_view<%s,%s>", res, util_format_short_name(ptr->format));
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph.h36 // format 1
39 // format 2
42 // format 3
44 // format 4
46 // format 5
49 // format 6
52 // format 7
55 // format 8
60 // format 9
85 int32_t format() { retur function in class:sfntly::BitmapGlyph::Builder
102 int32_t format() { return format_; } function in class:sfntly::BitmapGlyph
[all...]
/external/smack/src/org/xbill/DNS/
H A DFormattedTime.java6 * Routines for converting time values to and from YYYYMMDDHHMMSS format.
36 format(Date date) { method in class:FormattedTime
41 sb.append(w4.format(c.get(Calendar.YEAR)));
42 sb.append(w2.format(c.get(Calendar.MONTH)+1));
43 sb.append(w2.format(c.get(Calendar.DAY_OF_MONTH)));
44 sb.append(w2.format(c.get(Calendar.HOUR_OF_DAY)));
45 sb.append(w2.format(c.get(Calendar.MINUTE)));
46 sb.append(w2.format(c.get(Calendar.SECOND)));
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_gsxb.c204 Uint16 test_format = SDL_FirstAudioFormat(spec->format);
207 resolution = spec->format & 0x00ff;
208 format_signed = ((spec->format & 0x8000)!=0);
209 format_bigendian = ((spec->format & 0x1000)!=0);
211 DEBUG_PRINT((DEBUG_NAME "asked: %d bits, ",spec->format & 0x00ff));
212 DEBUG_PRINT(("signed=%d, ", ((spec->format & 0x8000)!=0)));
213 DEBUG_PRINT(("big endian=%d, ", ((spec->format & 0x1000)!=0)));
224 spec->format = test_format;
225 resolution = spec->format & 0xff;
226 format_signed = (spec->format
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcprint.c115 const HChar *format, va_list vargs )
120 ( add_to__printf_buf, b, format, vargs );
126 const HChar *format, va_list vargs )
131 = vprintf_to_buf(&myprintf_buf, format, vargs);
141 UInt VG_(vprintf) ( const HChar *format, va_list vargs ) argument
143 return vprintf_WRK( &VG_(log_output_sink), format, vargs );
146 UInt VG_(printf) ( const HChar *format, ... ) argument
150 va_start(vargs, format);
151 ret = VG_(vprintf)(format, vargs);
156 UInt VG_(vprintf_xml) ( const HChar *format, va_lis argument
114 vprintf_to_buf( printf_buf_t* b, const HChar *format, va_list vargs ) argument
125 vprintf_WRK( OutputSink* sink, const HChar *format, va_list vargs ) argument
161 printf_xml( const HChar *format, ... ) argument
171 emit_WRK( const HChar* format, va_list vargs ) argument
181 emit( const HChar* format, ... ) argument
203 vsprintf( HChar* buf, const HChar *format, va_list vargs ) argument
217 sprintf( HChar* buf, const HChar *format, ... ) argument
250 vsnprintf( HChar* buf, Int size, const HChar *format, va_list vargs ) argument
264 snprintf( HChar* buf, Int size, const HChar *format, ... ) argument
277 vcbprintf( void(*char_sink)(HChar, void* opaque), void* opaque, const HChar* format, va_list vargs ) argument
491 vmessage( VgMsgKind kind, const HChar* format, va_list vargs ) argument
519 message( VgMsgKind kind, const HChar* format, ... ) argument
537 fmsg( const HChar* format, ... ) argument
547 fmsg_bad_option( const HChar* opt, const HChar* format, ... ) argument
559 umsg( const HChar* format, ... ) argument
569 dmsg( const HChar* format, ... ) argument
598 err_config_error( const HChar* format, ... ) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcaltztst.cpp136 // Tries to mimic the Java Date.toString() format.
148 DateFormat* format = getDateFormat(); local
149 if (format == 0)
154 format->format(d, str);
155 releaseDateFormat(format);
164 DateFormat* format = getDateFormat(); local
165 if (format == 0)
170 TimeZone* save = format->getTimeZone().clone();
171 format
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_printf.c87 char format[2 + 5 * LP_MAX_VECTOR_LENGTH + 2] = "%s"; local
119 /* Create format string and arguments */
120 assert(strlen(format) + strlen(type_fmt) * length + 2 <= sizeof format);
124 util_strncat(format, type_fmt, sizeof(format) - strlen(format) - 1);
128 util_strncat(format, type_fmt, sizeof(format) - strlen(format)
[all...]
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dsinglepix.c38 __indirect_glGetSeparableFilter(GLenum target, GLenum format, GLenum type, argument
54 __GLX_SINGLE_PUT_LONG(4, format);
67 widthsize = __glImageSize(width, 1, 1, format, type, 0);
68 heightsize = __glImageSize(height, 1, 1, format, type, 0);
82 __glEmptyImage(gc, 1, width, 1, 1, format, type, rowBuf, row);
96 __glEmptyImage(gc, 1, height, 1, 1, format, type, colBuf, column);
111 void gl_dispatch_stub_GetSeparableFilterEXT (GLenum target, GLenum format, argument
123 p(target, format, type, row, column, span);
142 (void) memcpy((void *) (pc + 4), (void *) (&format), 4);
154 __glImageSize(width, 1, 1, format, typ
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcaltztst.cpp136 // Tries to mimic the Java Date.toString() format.
148 DateFormat* format = getDateFormat(); local
149 if (format == 0)
154 format->format(d, str);
155 releaseDateFormat(format);
164 DateFormat* format = getDateFormat(); local
165 if (format == 0)
170 TimeZone* save = format->getTimeZone().clone();
171 format
[all...]
H A Dsimplepatternformattertest.cpp44 fmt.format("unused", appendTo, status));
51 fmt.format("unused", appendTo, status));
64 fmt.format("1", appendTo, status));
74 s.format("1", appendTo, status));
82 r.format("1", appendTo, status));
102 fmt.format(
116 fmt.format(
129 fmt.format(
145 s.format(
159 r.format(
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_printf.c87 char format[2 + 5 * LP_MAX_VECTOR_LENGTH + 2] = "%s"; local
119 /* Create format string and arguments */
120 assert(strlen(format) + strlen(type_fmt) * length + 2 <= sizeof format);
124 util_strncat(format, type_fmt, sizeof(format) - strlen(format) - 1);
128 util_strncat(format, type_fmt, sizeof(format) - strlen(format)
[all...]

Completed in 838 milliseconds

<<11121314151617181920>>