Home
last modified time | relevance | path

Searched refs:format (Results 3676 - 3700 of 9398) sorted by relevance

1...<<141142143144145146147148149150>>...376

/third_party/libdrm/include/drm/
H A Dvmwgfx_drm.h167 * @format: Surface format as understood by the host.
184 __u32 format; member
475 * @format: Format of the overlay as understood by the host.
496 __s32 format; member
914 * @format: SVGA3d format.
930 __u32 format; member
/third_party/mbedtls/tests/scripts/
H A Dcheck_test_cases.py47 format(file_name, line_number, *args))
53 .format(file_name, line_number, *args))
111 # Assume test file is responsible for printing identical format of
237 .format(sys.argv[0], results.errors, results.warnings))
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/
H A Dh264einport.c56 buf_templ.format = PIPE_FORMAT_I8_UNORM; in enc_AllocateBackTexture()
60 buf_templ.width0 = port->portdef_.format.video.nFrameWidth; in enc_AllocateBackTexture()
61 buf_templ.height0 = port->portdef_.format.video.nFrameHeight * 3 / 2; in enc_AllocateBackTexture()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_formats.c139 VkFormat format, in pvr_GetPhysicalDeviceFormatProperties2()
142 const struct pvr_format *pvr_format = pvr_get_format(format); in pvr_GetPhysicalDeviceFormatProperties2()
240 VkFormat format, in pvr_GetPhysicalDeviceSparseImageFormatProperties()
282 /* clang-format off */ in pvr_GetPhysicalDeviceExternalBufferProperties()
292 /* clang-format on */ in pvr_GetPhysicalDeviceExternalBufferProperties()
137 pvr_GetPhysicalDeviceFormatProperties2( VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2 *pFormatProperties) pvr_GetPhysicalDeviceFormatProperties2() argument
238 pvr_GetPhysicalDeviceSparseImageFormatProperties( VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, uint32_t samples, VkImageUsageFlags usage, VkImageTiling tiling, uint32_t *pNumProperties, VkSparseImageFormatProperties *pProperties) pvr_GetPhysicalDeviceSparseImageFormatProperties() argument
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.c32 #include "util/format/u_format.h"
66 SVGA3dSurfaceFormat format = svga_translate_format(ss, pt->format, in svga_get_tex_sampler_view() local
151 flags, format, in svga_get_tex_sampler_view()
/third_party/mesa3d/src/gallium/tests/graw/
H A Dtri-gs.c209 templat.format = formats[i]; in init()
223 surf_tmpl.format = templat.format; in init()
H A Dshader-leak.c202 templat.format = formats[i]; in init()
216 surf_tmpl.format = templat.format; in init()
/third_party/node/lib/
H A Dutil.js59 format,
223 console.log('%s - %s', timestamp(), format(...args));
357 format,
/third_party/node/deps/v8/tools/release/
H A Dmerge_to_branch.py75 git_hashes = self.GitLog(reverse=True, format="%H",
79 revision_title = self.GitLog(n=1, format="%s", git_hash=git_hash)
102 patch_merge_desc = self.GitLog(n=1, format="%s", git_hash=commit_hash)
H A Droll_merge.py76 git_hashes = self.GitLog(reverse=True, format="%H",
80 revision_title = self.GitLog(n=1, format="%s", git_hash=git_hash)
119 patch_merge_desc = self.GitLog(n=1, format="%s", git_hash=commit_hash)
/third_party/node/test/parallel/
H A Dtest-path-parse-format.js108 { method: 'format', input: [null] },
109 { method: 'format', input: [''] },
110 { method: 'format', input: [true] },
111 { method: 'format', input: [1] },
196 assert.strictEqual(path.format(output), element);
213 assert.strictEqual(path.format(element), expect);
218 path.format(pathObject);
/third_party/node/tools/
H A Djs2c.py117 definition = template.format(var, array_content)
128 initializer = INITIALIZER.format(name, var, size)
159 out = TEMPLATE.format(definitions, initializers, config_size)
/third_party/mesa3d/src/intel/isl/tests/
H A Disl_surf_get_image_offset_test.c136 .format = ISL_FORMAT_R8G8B8A8_UNORM, in test_bdw_2d_r8g8b8a8_unorm_512x512_array01_samples01_noaux_tiley0()
184 .format = ISL_FORMAT_R8G8B8A8_UNORM, in test_bdw_2d_r8g8b8a8_unorm_1024x1024_array06_samples01_noaux_tiley0()
245 .format = ISL_FORMAT_R8G8B8A8_UNORM, in test_bdw_3d_r8g8b8a8_unorm_256x256x256_levels09_tiley0()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dreldatefmt.h358 * fmt.format(
361 * fmt.format(
364 * fmt.format(
367 * fmt.format(UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_SUNDAY, appendTo, status);
369 * fmt.format(UDAT_DIRECTION_THIS, UDAT_ABSOLUTE_SUNDAY, appendTo, status);
371 * fmt.format(UDAT_DIRECTION_NEXT, UDAT_ABSOLUTE_SUNDAY, appendTo, status);
373 * fmt.format(UDAT_DIRECTION_PLAIN, UDAT_ABSOLUTE_SUNDAY, appendTo, status);
376 * fmt.format(UDAT_DIRECTION_LAST, UDAT_ABSOLUTE_DAY, appendTo, status);
378 * fmt.format(UDAT_DIRECTION_THIS, UDAT_ABSOLUTE_DAY, appendTo, status);
380 * fmt.format(UDAT_DIRECTION_NEX
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dglthread.c312 const char *format, ...) in _mesa_error_glthread_safe()
320 va_start(args, format); in _mesa_error_glthread_safe()
321 ASSERTED size_t len = vsnprintf(s, MAX_DEBUG_MESSAGE_LENGTH, format, args); in _mesa_error_glthread_safe()
311 _mesa_error_glthread_safe(struct gl_context *ctx, GLenum error, bool glthread, const char *format, ...) _mesa_error_glthread_safe() argument
/third_party/icu/icu4c/source/test/intltest/
H A Dwindttst.cpp20 #include "unicode/format.h"
172 wbf->format(icuNow, ubBuffer); in testLocales()
173 wdf->format(icuNow, udBuffer); in testLocales()
174 wtf->format(icuNow, utBuffer); in testLocales()
180 log->errln("DateTime format error for locale " + baseName + ": expected date \"" + expected + in testLocales()
188 log->errln("DateTime format error for locale " + baseName + ": expected time \"" + expected + in testLocales()
196 log->errln("Date format error for locale " + baseName + ": expected \"" + expected + in testLocales()
204 log->errln("Time format error for locale " + baseName + ": expected \"" + expected + in testLocales()
/third_party/libevdev/libevdev/
H A Dlibevdev.h36 #define LIBEVDEV_ATTRIBUTE_PRINTF(_format, _args) __attribute__ ((format (printf, _format, _args)))
843 * @param format printf-style format string
852 const char *format, va_list args)
915 * @param format printf-style format string
926 const char *format, va_list args)
/third_party/libevdev/export_include/libevdev/
H A Dlibevdev.h36 #define LIBEVDEV_ATTRIBUTE_PRINTF(_format, _args) __attribute__ ((format (printf, _format, _args)))
843 * @param format printf-style format string
852 const char *format, va_list args)
915 * @param format printf-style format string
926 const char *format, va_list args)
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_translate.h39 #include "util/format/u_format.h"
226 /* Note: Pipe format convention is LSB to MSB, VIVS is MSB to LSB */ in translate_depth_format()
239 /* render target format for MSAA */
243 /* Note: Pipe format convention is LSB to MSB, VIVS is MSB to LSB */ in translate_ts_format()
274 /* Return normalization flag for vertex element format */
399 translate_clear_depth_stencil(enum pipe_format format, float depth, in translate_clear_depth_stencil() argument
405 switch (format) { in translate_clear_depth_stencil()
415 DBG("Unhandled pipe format for depth stencil clear: %i", format); in translate_clear_depth_stencil()
/third_party/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_winsys.h70 uint32_t format, uint32_t bind,
94 uint32_t format, uint32_t bind,
181 extern enum virgl_formats pipe_to_virgl_format(enum pipe_format format);
/third_party/mesa3d/src/panfrost/lib/tests/
H A Dtest-clear.c26 /* A test consists of a render target format, clear colour, dither state, and
27 * translated form. Dither state matters when the tilebuffer format is more
28 * precise than the final format. */
30 enum pipe_format format; member
147 util_format_short_name(T.format), T.dithered ? " dithered" : "", #x, x[0], x[1], x[2], x[3], #y, y[0], y[1], y[2], y[3]); \
158 pan_pack_color(&packed[0], &T.colour, T.format, T.dithered); in main()
/third_party/libphonenumber/javascript/i18n/phonenumbers/
H A Ddemo.js125 output.append('\nE164 format: ');
127 isNumberValid ? phoneUtil_.format(number, PNF.E164) : 'invalid');
128 output.append('\nOriginal format: ');
130 output.append('\nNational format: ');
131 output.append(phoneUtil_.format(number, PNF.NATIONAL));
132 output.append('\nInternational format: ');
134 isNumberValid ? phoneUtil_.format(number, PNF.INTERNATIONAL) :
136 output.append('\nOut-of-country format from US: ');
141 output.append('\nOut-of-country format from Switzerland: ');
147 output.append('\nNational format wit
[all...]
/third_party/pulseaudio/src/modules/rtp/
H A Dsdp.c62 pa_assert_se(f = pa_rtp_format_to_string(ss->format)); in pa_sdp_build()
99 ss->format = PA_SAMPLE_S16BE; in parse_sdp_sample_spec()
102 ss->format = PA_SAMPLE_S16LE; in parse_sdp_sample_spec()
/third_party/python/Lib/
H A Dstring.py189 def format(self, format_string, /, *args, **kwargs): member in Formatter
240 # expand the format spec, if needed
246 # format the object and append to the result
264 return format(value, format_spec)
277 raise ValueError("Unknown conversion specifier {0!s}".format(conversion))
284 # object to format and output
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemUtils.hpp89 vk::VkFormat format,
100 vk::VkFormat format);
102 vk::VkFormat format);

Completed in 22 milliseconds

1...<<141142143144145146147148149150>>...376