Searched refs:format (Results 151 - 175 of 5209) sorted by relevance

1234567891011>>

/external/ltp/tools/pounder21/
H A Ddebug.h27 int pounder_fprintf(FILE *stream, const char *format, ...);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.h64 lp_build_name(LLVMValueRef val, const char *format, ...) argument
69 va_start(ap, format);
70 util_vsnprintf(name, sizeof name, format, ap);
75 (void)format;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sampler.c40 enum pipe_format format,
45 /* XXX: Check if format is compatible with texture->format.
49 view->format = format;
73 if (format != PIPE_FORMAT_A8_UNORM) {
74 const struct util_format_description *desc = util_format_description(format);
91 enum pipe_format format)
96 format,
103 enum pipe_format format)
38 default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format, unsigned expand_green_blue) argument
89 u_sampler_view_default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
101 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
[all...]
H A Du_format_pack.py33 * Pixel format packing and unpacking functions.
53 def print_channels(format, func):
54 if format.nr_channels() <= 1:
55 func(format.le_channels, format.le_swizzles)
58 func(format.be_channels, format.be_swizzles)
60 func(format.le_channels, format.le_swizzles)
63 def generate_format_type(format)
[all...]
H A Du_format.h46 * Describe how to pack/unpack pixels into/from the prescribed format.
140 enum pipe_format format; member in struct:util_format_description
167 * Whether the pixel format can be described as a bitfield structure.
414 util_format_description(enum pipe_format format);
422 util_format_name(enum pipe_format format) argument
424 const struct util_format_description *desc = util_format_description(format);
435 util_format_short_name(enum pipe_format format) argument
437 const struct util_format_description *desc = util_format_description(format);
448 * Whether this format is plain, see UTIL_FORMAT_LAYOUT_PLAIN for more info.
451 util_format_is_plain(enum pipe_format format) argument
463 util_format_is_compressed(enum pipe_format format) argument
486 util_format_is_s3tc(enum pipe_format format) argument
499 util_format_is_srgb(enum pipe_format format) argument
520 util_format_is_depth_or_stencil(enum pipe_format format) argument
534 util_format_is_depth_and_stencil(enum pipe_format format) argument
579 util_format_get_mask(enum pipe_format format) argument
738 util_format_get_blocksizebits(enum pipe_format format) argument
754 util_format_get_blocksize(enum pipe_format format) argument
769 util_format_get_blockwidth(enum pipe_format format) argument
782 util_format_get_blockheight(enum pipe_format format) argument
795 util_format_get_nblocksx(enum pipe_format format, unsigned x) argument
803 util_format_get_nblocksy(enum pipe_format format, unsigned y) argument
811 util_format_get_nblocks(enum pipe_format format, unsigned width, unsigned height) argument
819 util_format_get_stride(enum pipe_format format, unsigned width) argument
826 util_format_get_2d_size(enum pipe_format format, size_t stride, unsigned height) argument
834 util_format_get_component_bits(enum pipe_format format, enum util_format_colorspace colorspace, uint component) argument
881 util_format_srgb(enum pipe_format format) argument
960 util_format_linear(enum pipe_format format) argument
1035 util_format_stencil_only(enum pipe_format format) argument
1064 util_format_intensity_to_red(enum pipe_format format) argument
1102 util_format_luminance_to_red(enum pipe_format format) argument
1180 util_format_get_nr_components(enum pipe_format format) argument
1191 util_format_get_first_non_void_channel(enum pipe_format format) argument
[all...]
/external/mesa3d/src/gallium/targets/graw-null/
H A Dgraw_null.c11 enum pipe_format format,
7 graw_create_window_and_screen( int x, int y, unsigned width, unsigned height, enum pipe_format format, void **handle) argument
/external/mesa3d/src/mesa/main/
H A Dshaderimage.h40 * Get the matching mesa_format for a shader image format GL enum.
43 _mesa_get_shader_image_format(GLenum format);
46 * Get the GL image format class for a shader image format GL enum
49 _mesa_get_image_format_class(GLenum format);
52 * Return whether an image format should be supported based on the current API
57 GLenum format);
85 GLenum format);
H A Dtexcompress_fxt1.h40 _mesa_get_fxt_fetch_func(mesa_format format);
/external/protobuf/src/google/protobuf/stubs/
H A Dsubstitute.cc1 // Protocol Buffers - Google's data interchange format
54 const char* format,
61 SubstituteAndAppend(&result, format, arg0, arg1, arg2, arg3, arg4,
67 string* output, const char* format,
79 for (int i = 0; format[i] != '\0'; i++) {
80 if (format[i] == '$') {
81 if (ascii_isdigit(format[i+1])) {
82 int index = format[i+1] - '0';
85 << "strings::Substitute format string invalid: asked for \"$"
87 << " args were given. Full format strin
53 Substitute( const char* format, const SubstituteArg& arg0, const SubstituteArg& arg1, const SubstituteArg& arg2, const SubstituteArg& arg3, const SubstituteArg& arg4, const SubstituteArg& arg5, const SubstituteArg& arg6, const SubstituteArg& arg7, const SubstituteArg& arg8, const SubstituteArg& arg9) argument
66 SubstituteAndAppend( string* output, const char* format, const SubstituteArg& arg0, const SubstituteArg& arg1, const SubstituteArg& arg2, const SubstituteArg& arg3, const SubstituteArg& arg4, const SubstituteArg& arg5, const SubstituteArg& arg6, const SubstituteArg& arg7, const SubstituteArg& arg8, const SubstituteArg& arg9) argument
[all...]
/external/python/cpython2/Include/
H A Dsysmodule.h17 PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
18 Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
19 PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
20 Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
/external/python/cpython2/Tools/bgen/bgen/
H A DbgenOutput.py57 def Output(format = "", *args):
58 VaOutput(format, args)
60 def VaOutput(format, args):
61 """Call this with a format string and argument tuple for the format.
65 format expansion contains embedded newlines. Exception: lines
69 text = format % args
96 def OutIndent(format = "", *args):
101 if format: VaOutput(format, arg
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DMakefile16 CompileCommonOpts += -Wno-format
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
H A DMakefile16 CompileCommonOpts += -Wno-format
/external/syslinux/com32/lib/
H A Dasprintf.c9 int asprintf(char **bufp, const char *format, ...) argument
16 va_start(ap, format);
19 bytes = vsnprintf(NULL, 0, format, ap1) + 1;
26 rv = vsnprintf(p, bytes, format, ap);
/external/deqp/framework/opengl/
H A DgluPixelTransfer.cpp36 static inline int getTransferAlignment (tcu::TextureFormat format) argument
38 int pixelSize = format.getPixelSize();
47 * \note Stride must be default stride for format.
58 TransferFormat format = getTransferFormat(dst.getFormat()); local
61 gl.readPixels(x, y, width, height, format.format, format.dataType, dst.getDataPtr());
66 * \note Stride must be default stride for format.
77 TransferFormat format = getTransferFormat(src.getFormat()); local
80 gl.texImage2D(target, level, internalFormat, width, height, 0, format
97 TransferFormat format = getTransferFormat(src.getFormat()); local
116 TransferFormat format = getTransferFormat(src.getFormat()); local
136 TransferFormat format = getTransferFormat(src.getFormat()); local
[all...]
H A DgluTextureUtil.hpp23 * \brief Texture format utilities.
40 * \brief GL pixel transfer format.
44 deUint32 format; //!< Pixel format. member in struct:glu::TransferFormat
48 : format (0)
54 : format (format_)
60 tcu::TextureFormat mapGLTransferFormat (deUint32 format, deUint32 dataType);
62 tcu::CompressedTexFormat mapGLCompressedTexFormat (deUint32 format);
69 TransferFormat getTransferFormat (tcu::TextureFormat format);
70 deUint32 getInternalFormat (tcu::TextureFormat format);
[all...]
/external/e2fsprogs/contrib/android/
H A Dfsmap.c11 struct fsmap_format *format; member in struct:walk_ext_priv_data
21 struct fsmap_format *format = pdata->format; variable in typeref:struct:fsmap_format
23 return format->add_block(fs, *blocknr, blockcnt < 0, format->private);
31 struct fsmap_format *format = pdata->format; local
38 return format->inline_data(&(inode.i_block[0]),
39 format->private);
69 struct fsmap_format *format variable in typeref:struct:fsmap_format
104 fsmap_iter_filsys(ext2_filsys fs, struct fsmap_format *format, const char *file, const char *mountpoint) argument
[all...]
/external/slf4j/integration/lib/
H A Dslf4j-simple-1.4.2.jar ... .lang.String, java.lang.Object) String format Object param1 public void trace (java.lang.String ...
H A Dslf4j-simple-1.5.0.jar ... .lang.String, java.lang.Object) String format Object param1 public void trace (java.lang.String ...
H A Dslf4j-simple-1.5.11.jar ... .lang.String, java.lang.Object) String format Object param1 public void trace (java.lang.String ...
H A Dslf4j-simple-1.5.4-SNAPSHOT.jar ... .lang.String, java.lang.Object) String format Object param1 public void trace (java.lang.String ...
H A Dslf4j-simple-1.6.99.jar ... .lang.String, java.lang.Object) String format Object param1 public void trace (java.lang.String ...
/external/autotest/client/common_lib/cros/
H A Dpower_cycle_usb_util.py59 if not os.path.exists('/sys/class/gpio/gpio{}'.format(gpio_idx)):
61 cmd = 'echo {} > /sys/class/gpio/export'.format(gpio_idx)
63 cmd = 'echo out > /sys/class/gpio/gpio{}/direction'.format(gpio_idx)
65 cmd = 'echo 0 > /sys/class/gpio/gpio{}/value'.format(gpio_idx)
68 cmd = 'echo 1 > /sys/class/gpio/gpio{}/value'.format(gpio_idx)
71 cmd = 'echo {} > /sys/class/gpio/unexport'.format(gpio_idx)
95 raise KeyError('Couldn\'t find target device, {}:{}.'.format(vid, pid))
96 logging.info('found device bus {} port {}'.format(bus_idx, port_idx))
97 token_bus = 'bus{}'.format(bus_idx)
102 logging.info('target gpio num {}'.format(target_gpi
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DIntlTestDateFormatAPIC.java12 * Port From: ICU4C v1.8.1 : format : IntlTestDateFormatAPI
16 package android.icu.dev.test.format;
36 * Test hiding of parse() and format() APIs in the Format hierarchy.
58 str = dateFmt.format(dateObj);
59 strBuffer = dateFmt.format(dateObj, strBuffer, fpos);
70 str = sdf.format(dateObj);
71 strBuffer = sdf.format(dateObj, strBuffer, fpos);
73 strBuffer = sdf.format(new Date(0), strBuffer, fpos);
74 str = sdf.format(new Date(0));
88 str = fmt.format(numOb
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DIntlTestDateFormatAPIC.java11 * Port From: ICU4C v1.8.1 : format : IntlTestDateFormatAPI
15 package com.ibm.icu.dev.test.format;
35 * Test hiding of parse() and format() APIs in the Format hierarchy.
57 str = dateFmt.format(dateObj);
58 strBuffer = dateFmt.format(dateObj, strBuffer, fpos);
69 str = sdf.format(dateObj);
70 strBuffer = sdf.format(dateObj, strBuffer, fpos);
72 strBuffer = sdf.format(new Date(0), strBuffer, fpos);
73 str = sdf.format(new Date(0));
87 str = fmt.format(numOb
[all...]

Completed in 502 milliseconds

1234567891011>>