Searched refs:format (Results 226 - 250 of 6114) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Draw_printer.cc50 void RawPrinter::Printf(const char* format, ...) { argument
53 va_start(ap, format);
57 const int r = perftools_vsnprintf(ptr_, avail+1, format, ap);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Draw_printer.cc50 void RawPrinter::Printf(const char* format, ...) { argument
53 va_start(ap, format);
57 const int r = perftools_vsnprintf(ptr_, avail+1, format, ap);
/external/chromium_org/tools/gyp/test/actions-multiple/
H A Dgyptest-all.py33 if test.format in ['make', 'ninja']:
35 if test.format == 'make':
37 elif test.format == 'ninja':
/external/clang/test/Sema/
H A Dvariadic-block.c8 long (^addthem)(const char *, ...) = ^long (const char *format, ...){
15 va_start(argp, format);
16 for (p = format; *p; p++) switch (*p) {
/external/compiler-rt/test/BlocksRuntime/
H A Dvariadic.c23 long (^addthem)(const char *, ...) = ^long (const char *format, ...){
30 va_start(argp, format);
32 for (p = format; *p; p++) switch (*p) {
/external/lldb/source/Interpreter/
H A DCommandReturnObject.cpp58 CommandReturnObject::AppendErrorWithFormat (const char *format, ...) argument
60 if (!format)
63 va_start (args, format);
65 sstrm.PrintfVarArg(format, args);
79 CommandReturnObject::AppendMessageWithFormat (const char *format, ...) argument
81 if (!format)
84 va_start (args, format);
86 sstrm.PrintfVarArg(format, args);
93 CommandReturnObject::AppendWarningWithFormat (const char *format, ...) argument
95 if (!format)
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_tex_layout.c42 gl_format format)
56 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
57 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
58 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
68 if (_mesa_is_format_compressed(format)) {
73 _mesa_get_format_block_size(format, &i, &j);
77 if (format == MESA_FORMAT_S8)
80 if (intel->gen >= 7 && format == MESA_FORMAT_Z16)
88 gl_format format)
102 * | BC1-5 compressed format (DXT
41 intel_horizontal_texture_alignment_unit(struct intel_context *intel, gl_format format) argument
87 intel_vertical_texture_alignment_unit(struct intel_context *intel, gl_format format) argument
133 intel_get_texture_alignment_unit(struct intel_context *intel, gl_format format, unsigned int *w, unsigned int *h) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_tex_layout.c42 gl_format format)
56 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
57 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
58 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
68 if (_mesa_is_format_compressed(format)) {
73 _mesa_get_format_block_size(format, &i, &j);
77 if (format == MESA_FORMAT_S8)
80 if (intel->gen >= 7 && format == MESA_FORMAT_Z16)
88 gl_format format)
102 * | BC1-5 compressed format (DXT
41 intel_horizontal_texture_alignment_unit(struct intel_context *intel, gl_format format) argument
87 intel_vertical_texture_alignment_unit(struct intel_context *intel, gl_format format) argument
133 intel_get_texture_alignment_unit(struct intel_context *intel, gl_format format, unsigned int *w, unsigned int *h) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_tex_layout.c42 gl_format format)
56 * | YUV 4:2:2 format | 8 | 4 | 4 | 4 | 4 |
57 * | BC1-5 compressed format (DXTn/S3TC) | 4 | 4 | 4 | 4 | 4 |
58 * | FXT1 compressed format | 8 | 8 | 8 | 8 | 8 |
68 if (_mesa_is_format_compressed(format)) {
73 _mesa_get_format_block_size(format, &i, &j);
77 if (format == MESA_FORMAT_S8)
80 if (intel->gen >= 7 && format == MESA_FORMAT_Z16)
88 gl_format format)
102 * | BC1-5 compressed format (DXT
41 intel_horizontal_texture_alignment_unit(struct intel_context *intel, gl_format format) argument
87 intel_vertical_texture_alignment_unit(struct intel_context *intel, gl_format format) argument
133 intel_get_texture_alignment_unit(struct intel_context *intel, gl_format format, unsigned int *w, unsigned int *h) argument
[all...]
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Module.h26 virtual void JBig2_Error(FX_LPCSTR format, ...) {}; argument
28 virtual void JBig2_Warn(FX_LPCSTR format, ...) {}; argument
30 virtual void JBig2_Log(FX_LPCSTR format, ...) {}; argument
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsimple_bitmap_glyph.h30 Builder(WritableFontData* data, int32_t format);
31 Builder(ReadableFontData* data, int32_t format);
37 SimpleBitmapGlyph(ReadableFontData* data, int32_t format);
/external/valgrind/main/include/
H A Dpub_tool_libcassert.h44 #define tl_assert2(expr, format, args...) \
49 format, ##args), \
62 const HChar* format, ... );
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocommon.h103 // 1 Primary Compressed YUV format.
130 // 1 Auxiliary compressed YUV format set aside for capturer.
199 explicit VideoFormat(const VideoFormatPod& format) { argument
200 Construct(format.width, format.height, format.interval, format.fourcc);
229 bool operator==(const VideoFormat& format) const {
230 return width == format.width && height == format
[all...]
H A Dvideocommon_unittest.cc65 VideoFormat format; local
66 EXPECT_TRUE(format.IsSize0x0());
67 format.width = 320;
68 EXPECT_FALSE(format.IsSize0x0());
73 VideoFormat format; local
74 EXPECT_EQ("0x0x0", format.ToString());
76 format.fourcc = FOURCC_I420;
77 format.width = 640;
78 format.height = 480;
79 format
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dglformats.c106 * format data types.
160 * Get the number of components in a pixel format.
162 * \param format pixel format.
164 * \return the number of components in the given format, or -1 if a bad format.
167 _mesa_components_in_format(GLenum format) argument
169 switch (format) {
216 * Get the bytes per pixel of pixel format type pair.
218 * \param format pixe
224 _mesa_bytes_per_pixel(GLenum format, GLenum type) argument
314 _mesa_is_enum_format_integer(GLenum format) argument
410 _mesa_is_enum_format_or_type_integer(GLenum format, GLenum type) argument
454 _mesa_is_color_format(GLenum format) argument
677 _mesa_is_depth_format(GLenum format) argument
696 _mesa_is_stencil_format(GLenum format) argument
711 _mesa_is_ycbcr_format(GLenum format) argument
726 _mesa_is_depthstencil_format(GLenum format) argument
743 _mesa_is_depth_or_stencil_format(GLenum format) argument
770 _mesa_is_dudv_format(GLenum format) argument
788 _mesa_is_compressed_format(struct gl_context *ctx, GLenum format) argument
855 _mesa_base_format_to_integer_format(GLenum format) argument
978 _mesa_generic_compressed_format_to_uncompressed_format(GLenum format) argument
1024 _mesa_error_check_format_and_type(const struct gl_context *ctx, GLenum format, GLenum type) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dglformats.c106 * format data types.
160 * Get the number of components in a pixel format.
162 * \param format pixel format.
164 * \return the number of components in the given format, or -1 if a bad format.
167 _mesa_components_in_format(GLenum format) argument
169 switch (format) {
216 * Get the bytes per pixel of pixel format type pair.
218 * \param format pixe
224 _mesa_bytes_per_pixel(GLenum format, GLenum type) argument
314 _mesa_is_enum_format_integer(GLenum format) argument
410 _mesa_is_enum_format_or_type_integer(GLenum format, GLenum type) argument
454 _mesa_is_color_format(GLenum format) argument
677 _mesa_is_depth_format(GLenum format) argument
696 _mesa_is_stencil_format(GLenum format) argument
711 _mesa_is_ycbcr_format(GLenum format) argument
726 _mesa_is_depthstencil_format(GLenum format) argument
743 _mesa_is_depth_or_stencil_format(GLenum format) argument
770 _mesa_is_dudv_format(GLenum format) argument
788 _mesa_is_compressed_format(struct gl_context *ctx, GLenum format) argument
855 _mesa_base_format_to_integer_format(GLenum format) argument
978 _mesa_generic_compressed_format_to_uncompressed_format(GLenum format) argument
1024 _mesa_error_check_format_and_type(const struct gl_context *ctx, GLenum format, GLenum type) argument
[all...]
/external/lldb/source/Core/
H A DLog.cpp86 Log::PrintfWithFlagsVarArg (uint32_t flags, const char *format, va_list args) argument
120 header.PrintfVarArg (format, args);
141 Log::Printf(const char *format, ...) argument
144 va_start (args, format);
145 PrintfWithFlagsVarArg (0, format, args);
150 Log::VAPrintf (const char *format, va_list args) argument
152 PrintfWithFlagsVarArg (0, format, args);
160 Log::PrintfWithFlags (uint32_t flags, const char *format, ...) argument
163 va_start (args, format);
164 PrintfWithFlagsVarArg (flags, format, arg
173 Debug(const char *format, ...) argument
190 DebugVerbose(const char *format, ...) argument
206 LogIf(uint32_t bits, const char *format, ...) argument
222 Error(const char *format, ...) argument
242 FatalError(int err, const char *format, ...) argument
264 Verbose(const char *format, ...) argument
280 WarningVerbose(const char *format, ...) argument
301 Warning(const char *format, ...) argument
[all...]
/external/chromium_org/cc/resources/
H A Dresource_format.h25 SkColorType ResourceFormatToSkColorType(ResourceFormat format);
/external/chromium_org/content/common/gpu/client/
H A Dgl_helper_readback_support.h23 // how it should be performed. The |format|, |type| and |bytes_per_pixel| are
26 // the data needs to be swizzled before using the returned |format| otherwise
32 GLenum* format,
35 // Provides the additional readback format/type pairing for a render target
36 // of a given format/type pairing
37 void GetAdditionalFormat(GLenum format, GLenum type, GLenum *format_out,
41 GLenum format; member in struct:content::GLHelperReadbackSupport::FormatCacheEntry
51 // This api is called once per format and it is done in the
60 bool SupportsFormat(GLenum format, GLenum type);
/external/chromium_org/ppapi/cpp/
H A Dimage_data.h46 /// @param[in] format A PP_ImageDataFormat containing desired image format.
61 PP_ImageDataFormat format,
76 /// format is supported by the browser. Note:
82 /// @param[in] format Image data format.
84 /// @return <code>true</code> if the format is supported by the browser.
85 static bool IsImageDataFormatSupported(PP_ImageDataFormat format);
87 /// GetNativeImageDataFormat() determines the browser's preferred format for
88 /// images. Using this format guarantee
97 PP_ImageDataFormat format() const { return desc_.format; } function in class:pp::ImageData
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Ddate-format-xparb.js18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName;
32 for (var i = 0; i < format.length; ++i) {
33 ch = format.charAt(i);
109 Date.parseDate = function(input, format) {
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Ddate-format-xparb.js18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName;
32 for (var i = 0; i < format.length; ++i) {
33 ch = format.charAt(i);
109 Date.parseDate = function(input, format) {
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Ddate-format-xparb.js18 Date.prototype.dateFormat = function(format) {
19 if (Date.formatFunctions[format] == null) {
20 Date.createNewFormat(format);
22 var func = Date.formatFunctions[format];
26 Date.createNewFormat = function(format) {
27 var funcName = "format" + Date.formatFunctions.count++;
28 Date.formatFunctions[format] = funcName;
32 for (var i = 0; i < format.length; ++i) {
33 ch = format.charAt(i);
109 Date.parseDate = function(input, format) {
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Drun-perf-tests38 logging.basicConfig(level=logging.INFO, format="%(message)s")
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcdtdptst.h53 void tryPat994(UDateFormat* format, const char* pat, const char* s, UDate expected);

Completed in 3025 milliseconds

1234567891011>>