Searched refs:format (Results 351 - 375 of 6114) sorted by relevance

<<11121314151617181920>>

/external/mesa3d/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/chromium_org/media/audio/
H A Daudio_parameters.cc22 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout, argument
25 : format_(format),
34 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout, argument
37 : format_(format),
46 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout, argument
50 : format_(format),
61 void AudioParameters::Reset(Format format, ChannelLayout channel_layout, argument
67 format_ = format;
109 return format_ == other.format() &&
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Daddress_field_util.cc65 void ParseFormatRule(const std::string& format, argument
70 std::string::const_iterator prev = format.begin();
71 for (std::string::const_iterator next = format.begin();
72 next != format.end(); prev = ++next) {
74 if ((next = std::find(next, format.end(), '%')) == format.end()) {
75 // No more tokens in the format string.
82 if ((prev = ++next) == format.end()) {
95 if (prev != format.end()) {
96 elements->push_back(FormatElement(std::string(prev, format
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_pack_color.h64 enum pipe_format format, union util_color *uc)
66 switch (format) {
154 util_format_write_4ub(format, src, 0, uc, 0, 0, 0, 1, 1);
164 util_unpack_color_ub(enum pipe_format format, union util_color *uc, argument
167 switch (format) {
320 util_format_read_4ub(format, dst, 0, uc, 0, 0, 0, 1, 1);
334 util_pack_color(const float rgba[4], enum pipe_format format, union util_color *uc) argument
341 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0) <= 8) {
342 /* format uses 8-bit components or less */
349 switch (format) {
63 util_pack_color_ub(ubyte r, ubyte g, ubyte b, ubyte a, enum pipe_format format, union util_color *uc) argument
438 util_pack_mask_z(enum pipe_format format, uint32_t z) argument
463 util_pack64_mask_z(enum pipe_format format, uint32_t z) argument
475 util_pack_mask_z_stencil(enum pipe_format format, uint32_t z, uint8_t s) argument
498 util_pack64_mask_z_stencil(enum pipe_format format, uint32_t z, uint8_t s) argument
517 util_pack_z(enum pipe_format format, double z) argument
559 util_pack64_z(enum pipe_format format, double z) argument
581 util_pack_z_stencil(enum pipe_format format, double z, uint8_t s) argument
604 util_pack64_z_stencil(enum pipe_format format, double z, uint8_t s) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_eglimage.c44 * Return the base format just like _mesa_base_fbo_format does.
47 st_pipe_format_to_base_format(enum pipe_format format) argument
51 if (util_format_is_depth_or_stencil(format)) {
52 if (util_format_is_depth_and_stencil(format)) {
56 if (format == PIPE_FORMAT_S8_UINT)
64 if (util_format_has_alpha(format))
88 strb->Base.Format = st_pipe_format_to_mesa_format(ps->format);
89 strb->Base._BaseFormat = st_pipe_format_to_base_format(ps->format);
110 /* map pipe format to base format */
[all...]
/external/deqp/framework/delibs/debase/
H A DdeString.c115 int deVsprintf (char* string, size_t size, const char* format, va_list list) argument
119 DE_ASSERT(string && format);
123 res = _vsnprintf(string, size, format, list);
125 res = vsnprintf_s(string, size, _TRUNCATE, format, list);
128 res = vsnprintf(string, size, format, list);
139 int deSprintf (char* string, size_t size, const char* format, ...) argument
144 DE_ASSERT(string && format);
146 va_start(list, format);
148 res = deVsprintf(string, size, format, list);
/external/libpng/
H A Dpngdebug.h110 char format[256]; \
111 snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \
114 fprintf(PNG_DEBUG_FILE,format); \
121 char format[256]; \
122 snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \
125 fprintf(PNG_DEBUG_FILE,format,p1); \
132 char format[256]; \
133 snprintf(format,256,"%s%s%s",(num_tabs==1 ? "\t" : \
136 fprintf(PNG_DEBUG_FILE,format,p1,p2); \
/external/mdnsresponder/mDNSCore/
H A DmDNSDebug.h34 // warning: `#' flag used with `%s' printf format (for %#s -- pascal string format)
35 // warning: repeated `#' flag in format (for %##s -- DNS name string format)
36 // warning: double format, pointer arg (arg 2) (for %.4a, %.16a, %#a -- IP address formats)
61 #define IS_A_PRINTF_STYLE_FUNCTION(F,A) __attribute__ ((format(printf,F,A)))
119 extern void LogMsg_(const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(1,2);
120 extern void LogOperation_(const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(1,2);
121 extern void LogSPS_(const char *format, ...) IS_A_PRINTF_STYLE_FUNCTION(1,2);
122 extern void LogInfo_(const char *format,
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_pack_color.h64 enum pipe_format format, union util_color *uc)
66 switch (format) {
154 util_format_write_4ub(format, src, 0, uc, 0, 0, 0, 1, 1);
164 util_unpack_color_ub(enum pipe_format format, union util_color *uc, argument
167 switch (format) {
320 util_format_read_4ub(format, dst, 0, uc, 0, 0, 0, 1, 1);
334 util_pack_color(const float rgba[4], enum pipe_format format, union util_color *uc) argument
341 if (util_format_get_component_bits(format, UTIL_FORMAT_COLORSPACE_RGB, 0) <= 8) {
342 /* format uses 8-bit components or less */
349 switch (format) {
63 util_pack_color_ub(ubyte r, ubyte g, ubyte b, ubyte a, enum pipe_format format, union util_color *uc) argument
438 util_pack_mask_z(enum pipe_format format, uint32_t z) argument
463 util_pack64_mask_z(enum pipe_format format, uint32_t z) argument
475 util_pack_mask_z_stencil(enum pipe_format format, uint32_t z, uint8_t s) argument
498 util_pack64_mask_z_stencil(enum pipe_format format, uint32_t z, uint8_t s) argument
517 util_pack_z(enum pipe_format format, double z) argument
559 util_pack64_z(enum pipe_format format, double z) argument
581 util_pack_z_stencil(enum pipe_format format, double z, uint8_t s) argument
604 util_pack64_z_stencil(enum pipe_format format, double z, uint8_t s) argument
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_eglimage.c44 * Return the base format just like _mesa_base_fbo_format does.
47 st_pipe_format_to_base_format(enum pipe_format format) argument
51 if (util_format_is_depth_or_stencil(format)) {
52 if (util_format_is_depth_and_stencil(format)) {
56 if (format == PIPE_FORMAT_S8_UINT)
64 if (util_format_has_alpha(format))
88 strb->Base.Format = st_pipe_format_to_mesa_format(ps->format);
89 strb->Base._BaseFormat = st_pipe_format_to_base_format(ps->format);
110 /* map pipe format to base format */
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DNumberUtils.java47 private static final DecimalFormat format = new DecimalFormat("0.####################E0"); field in class:NumberUtils
81 String asInt = format.format(value);
82 String asFloat = format.format(floatValue);
123 String asLong = format.format(value);
124 String asDouble = format.format(doubleValue);
/external/bison/src/
H A Duniqstr.c58 uniqstr_vsprintf (char const *format, ...) argument
62 va_start (args, format);
63 length = vsnprintf (NULL, 0, format, args);
67 va_start (args, format);
68 vsprintf (res, format, args);
/external/chromium_org/gpu/gles2_conform_support/native/
H A Degl_native_x11.cc16 GLenum format, GLenum type) {
27 if (format != GL_RGBA && format != GL_RGB)
38 format,
42 format,
15 GTFCreateEGLImage(int width, int height, GLenum format, GLenum type) argument
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDataLog.cpp90 void dataLogFV(const char* format, va_list argList) argument
92 dataFile().vprintf(format, argList);
95 void dataLogF(const char* format, ...) argument
98 va_start(argList, format);
99 dataLogFV(format, argList);
/external/chromium_org/third_party/icu/source/i18n/
H A Dwinnmfmt.h19 #include "unicode/format.h"
60 virtual UnicodeString& format(double number,
74 virtual UnicodeString& format(int32_t number,
88 virtual UnicodeString& format(int64_t number,
93 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const;
94 // virtual UnicodeString &format(int32_t number, UnicodeString &appendTo) const;
95 // virtual UnicodeString &format(int64_t number, UnicodeString &appendTo) const;
146 UnicodeString &format(int32_t numDigits, UnicodeString &appendTo, const wchar_t *format, ...) const;
/external/chromium_org/third_party/mesa/src/src/gbm/main/
H A Dgbmint.h62 uint32_t format,
67 uint32_t format,
76 uint32_t format, uint32_t flags);
94 uint32_t format; member in struct:gbm_bo
104 uint32_t format; member in struct:gbm_surface
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dbitmap_glyph_info.cc25 int32_t format)
31 format_(format) {
37 int32_t format)
43 format_(format) {
57 return (format_ == rhs->format() &&
21 BitmapGlyphInfo(int32_t glyph_id, int32_t block_offset, int32_t start_offset, int32_t length, int32_t format) argument
34 BitmapGlyphInfo(int32_t glyph_id, int32_t start_offset, int32_t length, int32_t format) argument
/external/clang/unittests/Format/
H A DFormatTestProto.cpp15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
22 static std::string format(llvm::StringRef Code, unsigned Offset, function in class:clang::format::FormatTestProto
34 static std::string format(llvm::StringRef Code) { function in class:clang::format::FormatTestProto
37 return format(Code, 0, Code.size(), Style);
41 EXPECT_EQ(Code.str(), format(test::messUp(Code)));
/external/deqp/modules/gles2/performance/
H A Des2pTextureCountTests.cpp55 deUint32 format; member in struct:deqp::gles2::Performance::__anon19962
70 deUint32 format = texFormats[formatNdx].format; local
78 string description = string(glu::getPixelFormatName(format)) + ", " + glu::getTypeName(dataType);
80 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
H A Des2pTextureFormatTests.cpp21 * \brief Texture format performance tests.
40 : TestCaseGroup(context, "format", "Texture Format Performance Tests")
53 deUint32 format; member in struct:deqp::gles2::Performance::__anon19965
69 deUint32 format = texFormats[formatNdx].format; local
77 string descriptionBase = string(glu::getPixelFormatName(format)) + ", " + glu::getTypeName(dataType);
79 addChild(new Texture2DRenderCase(m_context, nameBase.c_str(), descriptionBase.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
/external/icu/icu4c/source/i18n/
H A Dwinnmfmt.h19 #include "unicode/format.h"
60 virtual UnicodeString& format(double number,
74 virtual UnicodeString& format(int32_t number,
88 virtual UnicodeString& format(int64_t number,
93 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const;
94 // virtual UnicodeString &format(int32_t number, UnicodeString &appendTo) const;
95 // virtual UnicodeString &format(int64_t number, UnicodeString &appendTo) const;
146 UnicodeString &format(int32_t numDigits, UnicodeString &appendTo, wchar_t *format, ...) const;
/external/libcxx/test/input.output/iostream.format/ext.manip/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/ext.manip/Android.mk
19 test_name := input.output/iostream.format/ext.manip/get_money
23 test_name := input.output/iostream.format/ext.manip/get_time
27 test_name := input.output/iostream.format/ext.manip/put_time
31 test_name := input.output/iostream.format/ext.manip/put_money
/external/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/Android.mk
19 test_name := input.output/iostream.format/input.streams/istream.unformatted/peek
23 test_name := input.output/iostream.format/input.streams/istream.unformatted/sync
27 test_name := input.output/iostream.format/input.streams/istream.unformatted/unget
31 test_name := input.output/iostream.format/input.streams/istream.unformatted/get_pointer_size_chart
35 test_name := input.output/iostream.format/input.streams/istream.unformatted/ignore
39 test_name := input.output/iostream.format/input.streams/istream.unformatted/putback
43 test_name := input.output/iostream.format/input.streams/istream.unformatted/get_streambuf
47 test_name := input.output/iostream.format/input.streams/istream.unformatted/getline_pointer_size
51 test_name := input.output/iostream.format/inpu
[all...]
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/Android.mk
19 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/ostream
23 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/basic_ios
27 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/streambuf
31 test_name := input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/ios_base
/external/mesa3d/src/gbm/main/
H A Dgbmint.h62 uint32_t format,
67 uint32_t format,
76 uint32_t format, uint32_t flags);
94 uint32_t format; member in struct:gbm_bo
104 uint32_t format; member in struct:gbm_surface

Completed in 575 milliseconds

<<11121314151617181920>>