Home
last modified time | relevance | path

Searched refs:format (Results 2226 - 2250 of 13358) sorted by relevance

1...<<81828384858687888990>>...535

/kernel/linux/linux-6.6/drivers/staging/media/imx/
H A Dimx-media-csi.c32 * TODO: move this into pad format negotiation, if capture device
146 * media bus format is other than UYVY8_2X8/YUYV8_2X8.
1361 sdformat->format = *fmt; in csi_get_fmt()
1379 if (sdformat->format.field == V4L2_FIELD_ANY) in csi_try_field()
1380 sdformat->format.field = V4L2_FIELD_NONE; in csi_try_field()
1392 if (!V4L2_FIELD_IS_SEQUENTIAL(sdformat->format.field)) in csi_try_field()
1393 sdformat->format.field = infmt->field; in csi_try_field()
1405 if (!V4L2_FIELD_IS_SEQUENTIAL(sdformat->format.field)) in csi_try_field()
1406 sdformat->format.field = (infmt->height == 480 / 2) ? in csi_try_field()
1411 sdformat->format in csi_try_field()
1544 struct v4l2_subdev_format format; csi_set_fmt() local
[all...]
/third_party/backends/sanei/
H A Dsanei_magic.c98 if(params->format == SANE_FRAME_RGB){ in sanei_magic_despeck()
166 else if(params->format == SANE_FRAME_GRAY && params->depth == 8){ in sanei_magic_despeck()
220 else if(params->format == SANE_FRAME_GRAY && params->depth == 1){ in sanei_magic_despeck()
264 DBG (5, "sanei_magic_despeck: unsupported format/depth\n"); in sanei_magic_despeck()
451 if(params->format == SANE_FRAME_RGB){ in sanei_magic_crop()
457 else if(params->format == SANE_FRAME_GRAY && params->depth == 8){ in sanei_magic_crop()
461 else if(params->format == SANE_FRAME_GRAY && params->depth == 1){ in sanei_magic_crop()
468 DBG (5, "sanei_magic_crop: unsupported format/depth\n"); in sanei_magic_crop()
632 if(params->format == SANE_FRAME_RGB || in sanei_magic_rotate()
633 (params->format in sanei_magic_rotate()
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_bufimage.c1208 struct radv_image_view *iview, VkFormat format, VkImageAspectFlagBits aspects) in create_iview()
1210 if (format == VK_FORMAT_UNDEFINED) in create_iview()
1211 format = surf->format; in create_iview()
1218 .format = format, in create_iview()
1232 VkFormat format, struct radv_buffer_view *bview) in create_bview()
1239 .format = format, in create_bview()
1279 VkFormat format; in create_bview_for_r32g32b32() local
1207 create_iview(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *surf, struct radv_image_view *iview, VkFormat format, VkImageAspectFlagBits aspects) create_iview() argument
1231 create_bview(struct radv_cmd_buffer *cmd_buffer, struct radv_buffer *buffer, unsigned offset, VkFormat format, struct radv_buffer_view *bview) create_bview() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp91 const tcu::TextureFormat format(mapVkFormat(vkformat)); in aspectFlagsForFormat()
93 ((tcu::hasDepthComponent(format.order) ? static_cast<vk::VkImageAspectFlags>(vk::VK_IMAGE_ASPECT_DEPTH_BIT) : 0u) | in aspectFlagsForFormat()
94 (tcu::hasStencilComponent(format.order) ? static_cast<vk::VkImageAspectFlags>(vk::VK_IMAGE_ASPECT_STENCIL_BIT) : 0u)); in aspectFlagsForFormat()
106 VkFormat format; member
128 return compatibleFormat ? compatibleFormat.get() : format; in resolveFormat()
137 // Auxiliar class to group depth formats by compatibility in bit size and format. Note there is at most one alternative format for
138 // each given format as of the time this comment is being written, and the alternative (compatible) format for a given format ca
1077 VkFormat format = m_config.format; verifyDepth() local
1390 VkFormat format; initTests() member
1501 VkFormat format = formatData.format; initTests() local
1685 VkFormat format = formatData.format; initTests() local
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
H A DImage.cpp309 sw::Format SelectInternalFormat(GLint format) in SelectInternalFormat() argument
311 switch(format) in SelectInternalFormat()
404 UNREACHABLE(format); // Not a sized internal format. in SelectInternalFormat()
411 GLsizei ComputePixelSize(GLenum format, GLenum type) in ComputePixelSize() argument
413 switch(format) in ComputePixelSize()
509 UNREACHABLE(format); in ComputePixelSize()
515 GLsizei ComputePitch(GLsizei width, GLenum format, GLenum type, GLint alignment) in ComputePitch() argument
519 GLsizei rawPitch = ComputePixelSize(format, type) * width; in ComputePitch()
523 size_t ComputePackingOffset(GLenum format, GLenu argument
529 ComputeCompressedPitch(GLsizei width, GLenum format) ComputeCompressedPitch() argument
539 ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format) ComputeCompressedSize() argument
1167 getClientBufferInternalFormat(sw::Format format) getClientBufferInternalFormat() argument
1306 loadImageData(GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, GLenum format, GLenum type, const void *input, void *buffer) loadImageData() argument
1637 loadStencilData(GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, GLenum format, GLenum type, const void *input, void *buffer) loadStencilData() argument
1657 loadImageData(GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const gl::PixelStorageModes &unpackParameters, const void *pixels) loadImageData() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassDepthStencilResolveTests.cpp91 const tcu::TextureFormat format(mapVkFormat(vkformat)); in aspectFlagsForFormat()
93 ((tcu::hasDepthComponent(format.order) ? static_cast<vk::VkImageAspectFlags>(vk::VK_IMAGE_ASPECT_DEPTH_BIT) : 0u) | in aspectFlagsForFormat()
94 (tcu::hasStencilComponent(format.order) ? static_cast<vk::VkImageAspectFlags>(vk::VK_IMAGE_ASPECT_STENCIL_BIT) : 0u)); in aspectFlagsForFormat()
106 VkFormat format; member
128 return compatibleFormat ? compatibleFormat.get() : format; in resolveFormat()
137 // Auxiliar class to group depth formats by compatibility in bit size and format. Note there is at most one alternative format for
138 // each given format as of the time this comment is being written, and the alternative (compatible) format for a given format ca
1077 VkFormat format = m_config.format; verifyDepth() local
1390 VkFormat format; initTests() member
1499 VkFormat format = formatData.format; initTests() local
1683 VkFormat format = formatData.format; initTests() local
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_state.c126 static uint32_t r600_translate_dbformat(enum pipe_format format) in r600_translate_dbformat() argument
128 switch (format) { in r600_translate_dbformat()
144 static bool r600_is_sampler_format_supported(struct pipe_screen *screen, enum pipe_format format) in r600_is_sampler_format_supported() argument
146 return r600_translate_texformat(screen, format, NULL, NULL, NULL, in r600_is_sampler_format_supported()
150 static bool r600_is_colorbuffer_format_supported(enum amd_gfx_level chip, enum pipe_format format) in r600_is_colorbuffer_format_supported() argument
152 return r600_translate_colorformat(chip, format, FALSE) != ~0U && in r600_is_colorbuffer_format_supported()
153 r600_translate_colorswap(format, FALSE) != ~0U; in r600_is_colorbuffer_format_supported()
156 static bool r600_is_zs_format_supported(enum pipe_format format) in r600_is_zs_format_supported() argument
158 return r600_translate_dbformat(format) != ~0U; in r600_is_zs_format_supported()
162 enum pipe_format format, in r600_is_format_supported()
161 r600_is_format_supported(struct pipe_screen *screen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned usage) r600_is_format_supported() argument
634 unsigned format, num_format, format_comp, endian; texture_buffer_sampler_view() local
673 unsigned format, endian; r600_create_sampler_view_custom() local
820 unsigned format, swap, ntype, endian; r600_init_color_surface() local
1046 unsigned level, pitch, slice, format, offset, array_mode; r600_init_depth_surface() local
[all...]
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/
H A Ddev.c420 fmt.format = dev->isp_sdev.in_frm; in _set_pipeline_default_fmt()
422 code = fmt.format.code; in _set_pipeline_default_fmt()
425 /* isp input format information from sensor */ in _set_pipeline_default_fmt()
439 fmt.format.code = MEDIA_BUS_FMT_YUYV8_2X8; in _set_pipeline_default_fmt()
444 fmt.format.width = width; in _set_pipeline_default_fmt()
445 fmt.format.height = height; in _set_pipeline_default_fmt()
457 width = dev->active_sensor->fmt[1].format.width; in _set_pipeline_default_fmt()
458 height = dev->active_sensor->fmt[1].format.height; in _set_pipeline_default_fmt()
459 code = dev->active_sensor->fmt[1].format.code; in _set_pipeline_default_fmt()
462 width = dev->active_sensor->fmt[RKISP_VERNO_TH].format in _set_pipeline_default_fmt()
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/
H A Ddev.c388 fmt.format = dev->isp_sdev.in_frm; in _set_pipeline_default_fmt()
389 code = fmt.format.code; in _set_pipeline_default_fmt()
392 /* isp input format information from sensor */ in _set_pipeline_default_fmt()
406 fmt.format.code = MEDIA_BUS_FMT_YUYV8_2X8; in _set_pipeline_default_fmt()
410 fmt.format.width = width; in _set_pipeline_default_fmt()
411 fmt.format.height = height; in _set_pipeline_default_fmt()
425 width = dev->active_sensor->fmt[1].format.width; in _set_pipeline_default_fmt()
426 height = dev->active_sensor->fmt[1].format.height; in _set_pipeline_default_fmt()
427 code = dev->active_sensor->fmt[1].format.code; in _set_pipeline_default_fmt()
431 width = dev->active_sensor->fmt[3].format in _set_pipeline_default_fmt()
[all...]
/test/testfwk/xdevice/src/xdevice/_core/
H A Dutils.py62 return "{}_{}_{:0>8}".format(type_name, value,
123 pid = "{}.exe".format(pid)
276 format(input_name, paths, alt_dir))
302 err_msg = ErrorMessage.Common.Code_0101002.format(ErrorCategory.Environment, input_name)
406 device_file_name = "{}_{}.log".format(log_name, str(serial).replace(
479 LOG.error("Please use python {} or higher version to start project".format(mini_version))
486 return "{}.{}.{}.{}".format(
495 return "{}{}{}".format(_port[0], "*" * (len(_port) - 2), _port[-1])
497 return "*{}".format(_port[-1])
502 return "remote_{}_{}".format(convert_i
[all...]
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_ohos.c94 /* createImageFromFds requires fourcc format */
107 _eglLog(_EGL_WARNING, "unsupported native buffer format 0x%{public}x", native); in get_fourcc()
134 drm_fourcc = get_fourcc(bufferHandle->format); in native_window_buffer_get_buffer_info()
354 int format; in ohos_create_surface() local
357 format = ANativeWindow_getFormat(window); in ohos_create_surface()
358 if (format < 0) { in ohos_create_surface()
374 if (format != dri2_conf->base.NativeVisualID) { in ohos_create_surface()
375 _eglLog(_EGL_WARNING, "Native format mismatch: 0x%{public}x != 0x%{public}x", in ohos_create_surface()
376 format, dri2_conf->base.NativeVisualID); in ohos_create_surface()
492 get_front_bo(struct dri2_egl_surface *dri2_surf, unsigned int format) in get_front_bo() argument
572 ohos_image_get_buffers(__DRIdrawable *driDrawable, unsigned int format, uint32_t *stamp, void *loaderPrivate, uint32_t buffer_mask, struct __DRIimageList *images) ohos_image_get_buffers() argument
866 int format; ohos_add_configs_for_visuals() member
[all...]
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_shader.c28 #include "util/format/u_format.h"
242 vgpu10_return_type(enum pipe_format format) in vgpu10_return_type() argument
244 if (util_format_is_unorm(format)) in vgpu10_return_type()
246 else if (util_format_is_snorm(format)) in vgpu10_return_type()
248 else if (util_format_is_pure_uint(format)) in vgpu10_return_type()
250 else if (util_format_is_pure_sint(format)) in vgpu10_return_type()
252 else if (util_format_is_float(format)) in vgpu10_return_type()
260 * A helper function to return TRUE if the specified format
261 * is a supported format for sample_c instruction.
264 isValidSampleCFormat(enum pipe_format format) in isValidSampleCFormat() argument
[all...]
/third_party/node/deps/v8/tools/
H A Dcallstats.py47 arg = "--{}='{}'".format(m.group(1), m.group(2))
49 arg = "'{}'".format(arg)
68 "--inject_scripts=deterministic.js,{}".format(injection),
141 "--js-flags={}{}{}".format(arg_delimiter, js_flags, arg_delimiter),
143 "--user-data-dir={}{}{}".format(arg_delimiter, user_data_dir,
145 "--data-path={}{}{}".format(arg_delimiter,
178 result = result_template.format(domain=domain, count=count)
218 print("URL: {}".format(site), file=f)
228 print("EMPTY RESULT, REPEATING RUN ({})".format(
256 args.error("Cannot read from {}. {}.".format(arg
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.c40 #include "util/format/u_format.h"
112 if (util_format_is_compressed(pt->format)) in llvmpipe_texture_layout()
122 nblocksx = util_format_get_nblocksx(pt->format, in llvmpipe_texture_layout()
124 nblocksy = util_format_get_nblocksy(pt->format, in llvmpipe_texture_layout()
126 block_size = util_format_get_blocksize(pt->format); in llvmpipe_texture_layout()
128 if (util_format_is_compressed(pt->format)) in llvmpipe_texture_layout()
218 lpr->base.format, in llvmpipe_displaytarget_layout()
262 assert(util_format_get_blocksize(templat->format) == 1); in llvmpipe_resource_create_all()
395 assert(util_format_get_blocksize(templat->format) == 1); in llvmpipe_resource_from_memobj()
685 enum pipe_format format; in llvmpipe_transfer_map_ms() local
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fFboTestUtil.cpp420 void clearColorBuffer (sglr::Context& ctx, const tcu::TextureFormat& format, const tcu::Vec4& value) in clearColorBuffer() argument
422 const tcu::TextureChannelClass fmtClass = tcu::getTextureChannelClass(format.type); in clearColorBuffer()
445 void readPixels (sglr::Context& ctx, tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias) in readPixels() argument
447 tcu::TextureFormat readFormat = getFramebufferReadFormat(format); in readPixels()
453 ctx.readPixels(x, y, width, height, transferFmt.format, transferFmt.dataType, &data[0]); in readPixels()
485 const char* getFormatName (deUint32 format) in getFormatName() argument
487 switch (format) in getFormatName()
549 TCU_FAIL("Unknown format"); in getFormatName()
553 glu::DataType getFragmentOutputType (const tcu::TextureFormat& format) in getFragmentOutputType() argument
555 switch (tcu::getTextureChannelClass(format in getFragmentOutputType()
574 getFramebufferReadFormat(const tcu::TextureFormat& format) getFramebufferReadFormat() argument
616 getFormatThreshold(const tcu::TextureFormat& format) getFormatThreshold() argument
628 const tcu::TextureFormat format = glu::mapGLInternalFormat(glFormat); getFormatThreshold() local
[all...]
/base/request/request/test/rustest/src/
H A Dlib.rs32 use std::fmt::format;
129 data.write(&format!("{}", task_id)).unwrap();
141 data.write(&format!("{}", task_id)).unwrap(); in query()
153 data.write(&format!("{}", task_id)).unwrap(); in query_mime_type()
176 data.write(&format!("{}", task_id)).unwrap();
188 data.write(&format!("{}", task_id)).unwrap(); in resume()
200 data.write(&format!("{}", task_id)).unwrap(); in start()
212 data.write(&format!("{}", task_id)).unwrap(); in stop()
224 data.write(&format!("{}", task_id)).unwrap(); in show()
236 data.write(&format!("{}", task_i in touch()
[all...]
/device/soc/rockchip/common/hardware/rga/include/
H A Dim2d.h247 int format; /* format */ member
279 #define wrapbuffer_virtualaddr(vir_addr, width, height, format, ...) \
285 buffer = wrapbuffer_virtualaddr_t(vir_addr, width, height, width, height, format); \
287 buffer = wrapbuffer_virtualaddr_t(vir_addr, width, height, args[0], args[1], format); \
294 #define wrapbuffer_physicaladdr(phy_addr, width, height, format, ...) \
300 buffer = wrapbuffer_physicaladdr_t(phy_addr, width, height, width, height, format); \
302 buffer = wrapbuffer_physicaladdr_t(phy_addr, width, height, args[0], args[1], format); \
309 #define wrapbuffer_fd(fd, width, height, format, ...) \
315 buffer = wrapbuffer_fd_t(fd, width, height, width, height, format); \
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/rockchip/
H A Drockchip_lvds.c103 enum lvds_format format; member
180 lvds->format = LVDS_8BIT_MODE_FORMAT_2; in rockchip_lvds_encoder_atomic_mode_set()
183 lvds->format = LVDS_10BIT_MODE_FORMAT_2; in rockchip_lvds_encoder_atomic_mode_set()
186 lvds->format = LVDS_8BIT_MODE_FORMAT_3; in rockchip_lvds_encoder_atomic_mode_set()
189 lvds->format = LVDS_10BIT_MODE_FORMAT_1; in rockchip_lvds_encoder_atomic_mode_set()
193 lvds->format = LVDS_8BIT_MODE_FORMAT_1; in rockchip_lvds_encoder_atomic_mode_set()
198 lvds->secondary->format = lvds->format; in rockchip_lvds_encoder_atomic_mode_set()
509 PX30_LVDS_SELECT(lvds->format) | PX30_LVDS_MODE_EN(1) | PX30_LVDS_MSBSEL(1) | PX30_LVDS_P2S_EN(1) | in px30_lvds_enable()
527 RK3126_LVDS_SELECT(lvds->format)); in rk3126_lvds_enable()
[all...]
/device/soc/rockchip/rk3399/hardware/rga/include/
H A Dim2d.h248 int format; /* format */ member
280 #define wrapbuffer_virtualaddr(vir_addr, width, height, format, ...) \
286 buffer = wrapbuffer_virtualaddr_t(vir_addr, width, height, width, height, format); \
288 buffer = wrapbuffer_virtualaddr_t(vir_addr, width, height, args[0], args[1], format); \
295 #define wrapbuffer_physicaladdr(phy_addr, width, height, format, ...) \
301 buffer = wrapbuffer_physicaladdr_t(phy_addr, width, height, width, height, format); \
303 buffer = wrapbuffer_physicaladdr_t(phy_addr, width, height, args[0], args[1], format); \
310 #define wrapbuffer_fd(fd, width, height, format, ...) \
316 buffer = wrapbuffer_fd_t(fd, width, height, width, height, format); \
[all...]
/device/soc/rockchip/rk3568/hardware/rga/include/
H A Dim2d.h248 int format; /* format */ member
280 #define wrapbuffer_virtualaddr(vir_addr, width, height, format, ...) \
286 buffer = wrapbuffer_virtualaddr_t(vir_addr, width, height, width, height, format); \
288 buffer = wrapbuffer_virtualaddr_t(vir_addr, width, height, args[0], args[1], format); \
295 #define wrapbuffer_physicaladdr(phy_addr, width, height, format, ...) \
301 buffer = wrapbuffer_physicaladdr_t(phy_addr, width, height, width, height, format); \
303 buffer = wrapbuffer_physicaladdr_t(phy_addr, width, height, args[0], args[1], format); \
310 #define wrapbuffer_fd(fd, width, height, format, ...) \
316 buffer = wrapbuffer_fd_t(fd, width, height, width, height, format); \
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dskl_scaler.c105 const struct drm_format_info *format, in skl_update_scaler()
165 if (format && intel_format_info_is_yuv_semiplanar(format, modifier) && in skl_update_scaler()
280 fb && intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier)) in skl_update_scaler_plane()
290 fb ? fb->format : NULL, in skl_update_scaler_plane()
306 /* Check src format */ in skl_update_scaler_plane()
307 switch (fb->format->format) { in skl_update_scaler_plane()
342 "[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n", in skl_update_scaler_plane()
344 fb->base.id, fb->format in skl_update_scaler_plane()
102 skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach, unsigned int scaler_user, int *scaler_id, int src_w, int src_h, int dst_w, int dst_h, const struct drm_format_info *format, u64 modifier, bool need_scaler) skl_update_scaler() argument
[all...]
/kernel/linux/linux-6.6/sound/soc/fsl/
H A Dfsl_qmc_audio.c316 * The constraints for format/channel is to match with the number of 8bit
324 snd_pcm_format_t format = params_format(params); in qmc_dai_hw_rule_channels_by_format() local
327 switch (snd_pcm_format_physical_width(format)) { in qmc_dai_hw_rule_channels_by_format()
341 dev_err(qmc_dai->dev, "format physical width %u not supported\n", in qmc_dai_hw_rule_channels_by_format()
342 snd_pcm_format_physical_width(format)); in qmc_dai_hw_rule_channels_by_format()
375 snd_pcm_format_t format; in qmc_dai_hw_rule_format_by_channels() local
387 pcm_for_each_format(format) { in qmc_dai_hw_rule_format_by_channels()
388 if (snd_mask_test_format(f_old, format)) { in qmc_dai_hw_rule_format_by_channels()
389 if (snd_pcm_format_physical_width(format) <= slot_width) in qmc_dai_hw_rule_format_by_channels()
390 snd_mask_set_format(&f_new, format); in qmc_dai_hw_rule_format_by_channels()
556 snd_pcm_format_t format; qmc_audio_formats() local
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/x86_64/
H A Dhyperv_tlb_flush.c27 u64 format; member
274 flush_ex->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; in sender_guest_code()
289 flush_ex->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; in sender_guest_code()
307 flush_ex->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; in sender_guest_code()
325 flush_ex->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; in sender_guest_code()
346 flush_ex->hv_vp_set.format = HV_GENERIC_SET_ALL; in sender_guest_code()
359 flush_ex->hv_vp_set.format = HV_GENERIC_SET_ALL; in sender_guest_code()
433 flush_ex->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; in sender_guest_code()
449 flush_ex->hv_vp_set.format = HV_GENERIC_SET_SPARSE_4K; in sender_guest_code()
468 flush_ex->hv_vp_set.format in sender_guest_code()
[all...]
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
H A Djsunit_driver.py69 LOG.debug("Software version is {}".format(exe_out))
82 err_msg = ErrorMessage.Common.Code_0301001.format(request.root.source.source_string)
85 LOG.debug("Test case file path: {}".format(suite_file))
88 err_msg = ErrorMessage.Common.Code_0301002.format(config_file)
173 test = "{}#{}".format(test_desc.class_name, test_desc.test_name)
176 LOG.debug("Retry skip list: {}, total skip cases: {}".format(skip_list, len(skip_list)))
229 LOG.info("The timeout is {} seconds".format(timeout))
272 LOG.error("Hjsunit run timeout {}s reached".format(timeout))
342 serial = "{}_{}".format(str(self.config.device.__get_serial__()),
344 log_tar_file_name = "{}".format(st
[all...]
/third_party/node/deps/zlib/
H A Dgzwrite.c359 int ZEXPORTVA gzvprintf(gzFile file, const char *format, va_list va) { in gzvprintf() argument
396 (void)vsprintf(next, format, va); in gzvprintf()
400 len = vsprintf(next, format, va); in gzvprintf()
404 (void)vsnprintf(next, state->size, format, va); in gzvprintf()
407 len = vsnprintf(next, state->size, format, va); in gzvprintf()
430 int ZEXPORTVA gzprintf(gzFile file, const char *format, ...) { in gzprintf() argument
434 va_start(va, format); in gzprintf()
435 ret = gzvprintf(file, format, va); in gzprintf()
443 int ZEXPORTVA gzprintf(gzFile file, const char *format, int a1, int a2, int a3, in gzprintf() argument
486 sprintf(next, format, a in gzprintf()
[all...]

Completed in 30 milliseconds

1...<<81828384858687888990>>...535