Home
last modified time | relevance | path

Searched refs:format (Results 801 - 825 of 12960) sorted by relevance

1...<<31323334353637383940>>...519

/kernel/linux/linux-5.10/drivers/staging/media/omap4iss/
H A Diss_video.c107 * @mbus: v4l2_mbus_framefmt format (input)
108 * @pix: v4l2_pix_format format (output)
110 * Fill the output pix structure with information from the input mbus format.
112 * per line value in the pix format and information from the video instance.
129 * Skip the last format in the loop so that it will be selected if no in iss_video_mbus_to_pix()
175 * Skip the last format in the loop so that it will be selected if no in iss_video_pix_to_mbus()
245 struct v4l2_mbus_framefmt *format) in __iss_video_get_format()
267 *format = fmt.format; in __iss_video_get_format()
274 struct v4l2_mbus_framefmt format; in iss_video_check_format() local
244 __iss_video_get_format(struct iss_video *video, struct v4l2_mbus_framefmt *format) __iss_video_get_format() argument
546 struct v4l2_mbus_framefmt format; iss_video_enum_format() local
576 iss_video_get_format(struct file *file, void *fh, struct v4l2_format *format) iss_video_get_format() argument
592 iss_video_set_format(struct file *file, void *fh, struct v4l2_format *format) iss_video_set_format() argument
617 iss_video_try_format(struct file *file, void *fh, struct v4l2_format *format) iss_video_try_format() argument
648 struct v4l2_subdev_format format; iss_video_get_selection() local
[all...]
/kernel/linux/linux-6.6/sound/soc/intel/skylake/
H A Dskl-messages.c69 static int skl_dsp_prepare(struct device *dev, unsigned int format, in skl_dsp_prepare() argument
92 ret = snd_hdac_dsp_prepare(stream, format, size, dmab); in skl_dsp_prepare()
438 * PCM format information, which we calculate in driver and resource values
449 struct skl_module_fmt *format = &fmt->inputs[0].fmt; in skl_set_base_module_format() local
451 base_cfg->audio_fmt.number_of_channels = format->channels; in skl_set_base_module_format()
453 base_cfg->audio_fmt.s_freq = format->s_freq; in skl_set_base_module_format()
454 base_cfg->audio_fmt.bit_depth = format->bit_depth; in skl_set_base_module_format()
455 base_cfg->audio_fmt.valid_bit_depth = format->valid_bit_depth; in skl_set_base_module_format()
456 base_cfg->audio_fmt.ch_cfg = format->ch_cfg; in skl_set_base_module_format()
457 base_cfg->audio_fmt.sample_type = format in skl_set_base_module_format()
473 fill_pin_params(struct skl_audio_data_format *pin_fmt, struct skl_module_fmt *format) fill_pin_params() argument
499 struct skl_module_fmt *format; skl_set_base_ext_module_format() local
733 struct skl_module_fmt *format = &fmt->outputs[0].fmt; skl_setup_out_format() local
1158 struct skl_module_fmt *format; skl_bind_modules() local
[all...]
/test/xts/acts/multimedia/av_codec/vcodec/encoder/src/
H A Dsetparam_test.cpp96 OH_AVFormat *format = OH_AVFormat_Create(); in HWTEST_F() local
97 (void)OH_AVFormat_SetLongValue(format, OH_MD_KEY_BITRATE, -1); in HWTEST_F()
98 EXPECT_EQ(AV_ERR_INVALID_VAL, vEncSample->SetParameter(format)); in HWTEST_F()
99 (void)OH_AVFormat_SetLongValue(format, OH_MD_KEY_BITRATE, LONG_MAX); in HWTEST_F()
100 EXPECT_EQ(AV_ERR_INVALID_VAL, vEncSample->SetParameter(format)); in HWTEST_F()
101 OH_AVFormat_Destroy(format); in HWTEST_F()
125 OH_AVFormat *format = OH_AVFormat_Create(); in HWTEST_F() local
126 (void)OH_AVFormat_SetLongValue(format, OH_MD_KEY_BITRATE, DEFAULT_BITRATE >> 1); in HWTEST_F()
127 EXPECT_EQ(AV_ERR_OK, vEncSample->SetParameter(format)); in HWTEST_F()
128 OH_AVFormat_Destroy(format); in HWTEST_F()
249 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local
278 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local
402 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local
677 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local
709 OH_AVFormat *format = OH_AVFormat_Create(); HWTEST_F() local
[all...]
/drivers/peripheral/display/buffer/vdi_base/include/
H A Ddisplay_gralloc_gbm.h51 #define GRALLOC_LOCK(format, ...) \
53 HDF_LOGE("[%{public}s@%{public}s:%{public}d]" format "\n", __FUNCTION__, __FILE__, __LINE__, ##__VA_ARGS__); \
57 #define GRALLOC_UNLOCK(format, ...) \
59 HDF_LOGE("[%{public}s@%{public}s:%{public}d]" format "\n", __FUNCTION__, __FILE__, __LINE__, ##__VA_ARGS__); \
63 #define GRALLOC_LOCK(format, ...) \
68 #define GRALLOC_UNLOCK(format, ...) \
/kernel/linux/linux-5.10/drivers/mtd/
H A Dsm_ftl.h71 #define sm_printk(format, ...) \
72 printk(KERN_WARNING "sm_ftl" ": " format "\n", ## __VA_ARGS__)
74 #define dbg(format, ...) \
76 printk(KERN_DEBUG "sm_ftl" ": " format "\n", ## __VA_ARGS__)
78 #define dbg_verbose(format, ...) \
80 printk(KERN_DEBUG "sm_ftl" ": " format "\n", ## __VA_ARGS__)
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/
H A Dstv6110x_priv.h20 #define dprintk(__y, __z, format, arg...) do { \
23 printk(KERN_ERR "%s: " format "\n", __func__ , ##arg); \
25 printk(KERN_NOTICE "%s: " format "\n", __func__ , ##arg); \
27 printk(KERN_INFO "%s: " format "\n", __func__ , ##arg); \
29 printk(KERN_DEBUG "%s: " format "\n", __func__ , ##arg); \
32 printk(format, ##arg); \
/kernel/linux/linux-6.6/drivers/media/dvb-frontends/
H A Dstv6110x_priv.h20 #define dprintk(__y, __z, format, arg...) do { \
23 printk(KERN_ERR "%s: " format "\n", __func__ , ##arg); \
25 printk(KERN_NOTICE "%s: " format "\n", __func__ , ##arg); \
27 printk(KERN_INFO "%s: " format "\n", __func__ , ##arg); \
29 printk(KERN_DEBUG "%s: " format "\n", __func__ , ##arg); \
32 printk(format, ##arg); \
/kernel/linux/linux-6.6/drivers/mtd/
H A Dsm_ftl.h71 #define sm_printk(format, ...) \
72 printk(KERN_WARNING "sm_ftl" ": " format "\n", ## __VA_ARGS__)
74 #define dbg(format, ...) \
76 printk(KERN_DEBUG "sm_ftl" ": " format "\n", ## __VA_ARGS__)
78 #define dbg_verbose(format, ...) \
80 printk(KERN_DEBUG "sm_ftl" ": " format "\n", ## __VA_ARGS__)
/kernel/linux/linux-6.6/drivers/hwmon/pmbus/
H A Dtda38640.c23 .format[PSC_VOLTAGE_IN] = linear,
24 .format[PSC_VOLTAGE_OUT] = linear,
25 .format[PSC_CURRENT_OUT] = linear,
26 .format[PSC_CURRENT_IN] = linear,
27 .format[PSC_POWER] = linear,
28 .format[PSC_TEMPERATURE] = linear,
H A Dxdpe152c4.c19 .format[PSC_VOLTAGE_IN] = linear,
20 .format[PSC_VOLTAGE_OUT] = linear,
21 .format[PSC_TEMPERATURE] = linear,
22 .format[PSC_CURRENT_IN] = linear,
23 .format[PSC_CURRENT_OUT] = linear,
24 .format[PSC_POWER] = linear,
/third_party/nghttp2/
H A Dgenlibtokenlookup.py103 print(' {},'.format(to_enum_hd(k)))
107 print(' {} = {},'.format(to_enum_hd(k), token))
118 case {}:'''.format(size))
120 switch (name[{}]) {{'''.format(size - 1))
124 case '{}':'''.format(c))
129 }}'''.format(k[:-1], size - 1, to_enum_hd(k)))
/third_party/node/deps/icu-small/source/i18n/
H A Dwinnmfmt.h21 #include "unicode/format.h"
62 virtual UnicodeString& format(double number,
76 virtual UnicodeString& format(int32_t number,
90 virtual UnicodeString& format(int64_t number,
94 using NumberFormat::format;
97 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const;
98 // virtual UnicodeString &format(int32_t number, UnicodeString &appendTo) const;
99 // virtual UnicodeString &format(int64_t number, UnicodeString &appendTo) const;
150 UnicodeString &format(int32_t numDigits, UnicodeString &appendTo, const wchar_t *format,
[all...]
/third_party/mesa3d/src/util/
H A Du_string.h72 util_sprintf(char *str, const char *format, ...) in util_sprintf() argument
75 va_start(ap, format); in util_sprintf()
76 vsnprintf(str, INT_MAX, format, ap); in util_sprintf()
82 util_vasprintf(char **ret, const char *format, va_list ap) in util_vasprintf() argument
88 int r = vsnprintf(NULL, 0, format, ap_copy); in util_vasprintf()
99 return vsnprintf(*ret, r + 1, format, ap); in util_vasprintf()
/third_party/icu/icu4c/source/i18n/
H A Dwinnmfmt.h21 #include "unicode/format.h"
62 virtual UnicodeString& format(double number,
76 virtual UnicodeString& format(int32_t number,
90 virtual UnicodeString& format(int64_t number,
94 using NumberFormat::format;
97 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const;
98 // virtual UnicodeString &format(int32_t number, UnicodeString &appendTo) const;
99 // virtual UnicodeString &format(int64_t number, UnicodeString &appendTo) const;
150 UnicodeString &format(int32_t numDigits, UnicodeString &appendTo, const wchar_t *format,
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_texture.h43 uint32_t r300_translate_texformat(enum pipe_format format,
48 uint32_t r500_tx_format_msb_bit(enum pipe_format format);
50 boolean r300_is_colorbuffer_format_supported(enum pipe_format format);
52 boolean r300_is_zs_format_supported(enum pipe_format format);
54 boolean r300_is_sampler_format_supported(enum pipe_format format);
58 enum pipe_format format,
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dwinnmfmt.h21 #include "unicode/format.h"
62 virtual UnicodeString& format(double number,
76 virtual UnicodeString& format(int32_t number,
90 virtual UnicodeString& format(int64_t number,
94 using NumberFormat::format;
97 // virtual UnicodeString &format(double number, UnicodeString &appendTo) const;
98 // virtual UnicodeString &format(int32_t number, UnicodeString &appendTo) const;
99 // virtual UnicodeString &format(int64_t number, UnicodeString &appendTo) const;
150 UnicodeString &format(int32_t numDigits, UnicodeString &appendTo, const wchar_t *format,
[all...]
/kernel/linux/linux-5.10/drivers/atm/
H A Dhorizon.h34 #define PRINTK(severity,format,args...) \
35 printk(severity DEV_LABEL ": " format "\n" , ## args)
56 #define PRINTDB(bits,format,args...) \
57 ( (debug & (bits)) ? printk (KERN_INFO DEV_LABEL ": " format , ## args) : 1 )
58 #define PRINTDM(bits,format,args...) \
59 ( (debug & (bits)) ? printk (format , ## args) : 1 )
60 #define PRINTDE(bits,format,args...) \
61 ( (debug & (bits)) ? printk (format "\n" , ## args) : 1 )
62 #define PRINTD(bits,format,args...) \
63 ( (debug & (bits)) ? printk (KERN_INFO DEV_LABEL ": " format "\
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/msm/
H A Dmsm_fb.c20 const struct msm_format *format; member
36 int i, n = fb->format->num_planes; in msm_framebuffer_describe()
39 fb->width, fb->height, (char *)&fb->format->format, in msm_framebuffer_describe()
58 int ret, i, n = fb->format->num_planes; in msm_framebuffer_prepare()
74 int i, n = fb->format->num_planes; in msm_framebuffer_cleanup()
96 return msm_fb->format; in msm_framebuffer_format()
139 const struct msm_format *format; in msm_framebuffer_init() local
147 format = kms->funcs->get_format(kms, mode_cmd->pixel_format, in msm_framebuffer_init()
149 if (!format) { in msm_framebuffer_init()
207 msm_alloc_stolen_fb(struct drm_device *dev, int w, int h, int p, uint32_t format) msm_alloc_stolen_fb() argument
[all...]
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/
H A Dsh_css_mipi.c39 * - Each line has format header and optionally SOL and EOL (each 1 word).
40 * - Odd and even lines of YUV420 format are different in bites per pixel size.
50 const enum atomisp_input_format format, in ia_css_mipi_frame_calculate_size()
77 IA_CSS_ENTER("padded_width=%d, height=%d, format=%d, hasSOLandEOL=%d, embedded_data_size_words=%d\n", in ia_css_mipi_frame_calculate_size()
78 width_padded, height, format, hasSOLandEOL, embedded_data_size_words); in ia_css_mipi_frame_calculate_size()
80 switch (format) { in ia_css_mipi_frame_calculate_size()
133 if (format == ATOMISP_INPUT_FORMAT_YUV420_8 in ia_css_mipi_frame_calculate_size()
134 || format == ATOMISP_INPUT_FORMAT_YUV420_10 in ia_css_mipi_frame_calculate_size()
135 || format == ATOMISP_INPUT_FORMAT_YUV420_16) { in ia_css_mipi_frame_calculate_size()
165 /* each non-first line has format heade in ia_css_mipi_frame_calculate_size()
48 ia_css_mipi_frame_calculate_size(const unsigned int width, const unsigned int height, const enum atomisp_input_format format, const bool hasSOLandEOL, const unsigned int embedded_data_size_words, unsigned int *size_mem_words) ia_css_mipi_frame_calculate_size() argument
252 enum atomisp_input_format format; calculate_mipi_buff_size() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/msm/
H A Dmsm_fb.c21 const struct msm_format *format; member
62 int i, n = fb->format->num_planes; in msm_framebuffer_describe()
65 fb->width, fb->height, (char *)&fb->format->format, in msm_framebuffer_describe()
83 int ret, i, n = fb->format->num_planes; in msm_framebuffer_prepare()
106 int i, n = fb->format->num_planes; in msm_framebuffer_cleanup()
133 return msm_fb->format; in msm_framebuffer_format()
176 const struct msm_format *format; in msm_framebuffer_init() local
184 format = kms->funcs->get_format(kms, mode_cmd->pixel_format, in msm_framebuffer_init()
186 if (!format) { in msm_framebuffer_init()
246 msm_alloc_stolen_fb(struct drm_device *dev, int w, int h, int p, uint32_t format) msm_alloc_stolen_fb() argument
[all...]
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
H A DNumberFormatJDK.java62 //public String format(java.math.BigDecimal number)
63 //public String format(BigDecimal number)
66 public StringBuffer format(java.math.BigDecimal number, StringBuffer toAppendTo, FieldPosition pos) { in format() method in NumberFormatJDK
67 return fJdkNfmt.format(number, toAppendTo, pos); in format()
71 public StringBuffer format(BigDecimal number, StringBuffer toAppendTo, FieldPosition pos) { in format() method in NumberFormatJDK
72 return fJdkNfmt.format(number.toBigDecimal(), toAppendTo, pos); in format()
76 public StringBuffer format(java.math.BigInteger number, StringBuffer toAppendTo, FieldPosition pos) { in format() method in NumberFormatJDK
77 return fJdkNfmt.format(number, toAppendTo, pos); in format()
80 //public String format(java.math.BigInteger number)
82 //String format(CurrencyAmoun
85 public StringBuffer format(CurrencyAmount currAmt, StringBuffer toAppendTo, FieldPosition pos) { format() method in NumberFormatJDK
102 public StringBuffer format(double number, StringBuffer toAppendTo, FieldPosition pos) { format() method in NumberFormatJDK
109 public StringBuffer format(long number, StringBuffer toAppendTo, FieldPosition pos) { format() method in NumberFormatJDK
114 public StringBuffer format(Object number, StringBuffer toAppendTo, FieldPosition pos) { format() method in NumberFormatJDK
[all...]
/third_party/libsnd/Octave/
H A Dsndfile.cc28 static void string_of_format (std::string & fmt, int format) ;
58 @deftypefn {Loadable Function} {@var{data},@var{srate},@var{format} =} sfread (@var{filename})\n\ in DEFUN_DLD()
122 string_of_format (fmt, sfinfo.format) ; in DEFUN_DLD()
134 @deftypefn {Function File} sfwrite (@var{filename},@var{data},@var{srate},@var{format})\n\ in DEFUN_DLD()
155 std::string format = args (3).string_value () ; in DEFUN_DLD() local
159 sfinfo.format = format_of_str (format) ; in DEFUN_DLD()
160 if (sfinfo.format == 0) in DEFUN_DLD()
161 { error ("Bad format '%s'", format in DEFUN_DLD()
317 string_of_major_format(int format) string_of_major_format() argument
349 string_of_minor_format(int format) string_of_minor_format() argument
396 string_of_format(std::string & fmt, int format) string_of_format() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c316 const char *format; in dump_vec() local
320 format = "%3lli"; in dump_vec()
324 format = "%5lli"; in dump_vec()
328 format = "%10lli"; in dump_vec()
332 format = "%20lli"; in dump_vec()
337 format = "?"; in dump_vec()
339 fprintf(fp, format, value); in dump_vec()
343 const char *format; in dump_vec() local
347 format = type.norm ? "%2x" : "%4llu"; in dump_vec()
351 format in dump_vec()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.hpp68 VkFormat format; member
135 VkFormat format,
259 UpdatablePixelBufferAccess (const tcu::TextureFormat& format, const vk::VkExtent3D& extent, void* data) in UpdatablePixelBufferAccess()
260 : PixelBufferAccess(format, extent.width, extent.height, extent.depth, data) in UpdatablePixelBufferAccess()
266 static deUint32 calcTexSize (const tcu::TextureFormat& format, const vk::VkExtent3D& extent) in calcTexSize()
268 return extent.width * extent.height * extent.depth * format.getPixelSize(); in calcTexSize()
270 static deUint32 calcTexSize (const tcu::TextureFormat& format, deUint32 width, deUint32 height, deUint32 depth) in calcTexSize()
272 return width * height * depth * format.getPixelSize(); in calcTexSize()
286 const tcu::TextureFormat& format, const vk::VkExtent3D& extent, in PixelBufferAccessBuffer()
288 : UpdatablePixelBufferAccess(format, exten in PixelBufferAccessBuffer()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/descriptor_indexing/
H A DvktDescriptorSetsIndexingTests.hpp68 VkFormat format; member
135 VkFormat format,
259 UpdatablePixelBufferAccess (const tcu::TextureFormat& format, const vk::VkExtent3D& extent, void* data) in UpdatablePixelBufferAccess()
260 : PixelBufferAccess(format, extent.width, extent.height, extent.depth, data) in UpdatablePixelBufferAccess()
266 static deUint32 calcTexSize (const tcu::TextureFormat& format, const vk::VkExtent3D& extent) in calcTexSize()
268 return extent.width * extent.height * extent.depth * format.getPixelSize(); in calcTexSize()
270 static deUint32 calcTexSize (const tcu::TextureFormat& format, deUint32 width, deUint32 height, deUint32 depth) in calcTexSize()
272 return width * height * depth * format.getPixelSize(); in calcTexSize()
286 const tcu::TextureFormat& format, const vk::VkExtent3D& extent, in PixelBufferAccessBuffer()
288 : UpdatablePixelBufferAccess(format, exten in PixelBufferAccessBuffer()
[all...]

Completed in 15 milliseconds

1...<<31323334353637383940>>...519