Home
last modified time | relevance | path

Searched full:format (Results 1 – 25 of 9769) sorted by relevance

12345678910>>...391

/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dformats.h18 /*-------------------------- Static format handlers --------------------------*/
20 FORMAT(aifc)
21 FORMAT(aiff)
22 FORMAT(al)
23 FORMAT(au)
24 FORMAT(avr)
25 FORMAT(cdr)
26 FORMAT(cvsd)
27 FORMAT(cvu)
28 FORMAT(dat)
[all …]
/OK3568_Linux_fs/kernel/tools/power/cpupower/po/
H A Dfr.po73 #, c-format
80 #, c-format
87 #, c-format
92 #, c-format
97 #, c-format
102 #, c-format
107 #, c-format
112 #, c-format
117 #, c-format
124 #, c-format
[all …]
H A Dpt.po71 #, c-format
78 #, c-format
85 #, c-format
90 #, c-format
95 #, c-format
100 #, c-format
105 #, c-format
110 #, c-format
115 #, c-format
122 #, c-format
[all …]
H A Dit.po73 #, c-format
80 #, c-format
87 #, c-format
92 #, c-format
97 #, c-format
102 #, c-format
107 #, c-format
112 #, c-format
117 #, c-format
124 #, c-format
[all …]
H A Dcs.po76 #, c-format
83 #, c-format
90 #, c-format
95 #, c-format
100 #, c-format
105 #, c-format
110 #, c-format
115 #, c-format
120 #, c-format
127 #, c-format
[all …]
H A Dde.po73 #, c-format
82 #, c-format
91 #, c-format
96 #, c-format
101 #, c-format
106 #, c-format
111 #, c-format
117 #, c-format
123 #, c-format
132 #, c-format
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/
H A Ddrm_fourcc.c4 * DRM core format related functions
43 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
104 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
134 * drm_get_format_name - fill a string with a drm fourcc format's name
135 * @format: format to compute name of
138 const char *drm_get_format_name(uint32_t format, struct drm_format_name_buf *buf) in drm_get_format_name() argument
142 printable_char(format & 0xff), in drm_get_format_name()
143 printable_char((format >> 8) & 0xff), in drm_get_format_name()
144 printable_char((format >> 16) & 0xff), in drm_get_format_name()
145 printable_char((format >> 24) & 0x7f), in drm_get_format_name()
[all …]
/OK3568_Linux_fs/kernel/include/drm/
H A Ddrm_fourcc.h33 * case the format can't be specified otherwise, so we don't end up
34 * with two values describing the same format.
54 * struct drm_format_info - information about a DRM format
57 /** @format: 4CC format identifier (DRM_FORMAT_*) */
58 u32 format; member
79 * describing the pixel format.
103 * generic format table. Drivers could supply accurate
131 /** @has_alpha: Does the format embeds an alpha component? */
134 /** @is_yuv: Is it a YUV format? */
139 * struct drm_format_name_buf - name of a DRM format
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/xilinx/
H A Dxilinx-vip.c46 * xvip_get_format_by_code - Retrieve format information for a media bus code
47 * @code: the format media bus code
49 * Return: a pointer to the format information structure corresponding to the
50 * given V4L2 media bus format @code, or ERR_PTR if no corresponding format can
58 const struct xvip_video_format *format = &xvip_video_formats[i]; in xvip_get_format_by_code() local
60 if (format->code == code) in xvip_get_format_by_code()
61 return format; in xvip_get_format_by_code()
69 * xvip_get_format_by_fourcc - Retrieve format information for a 4CC
70 * @fourcc: the format 4CC
72 * Return: a pointer to the format information structure corresponding to the
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/
H A Dvsp1_drm.c69 struct v4l2_subdev_format format; in vsp1_du_insert_uif() local
85 memset(&format, 0, sizeof(format)); in vsp1_du_insert_uif()
86 format.which = V4L2_SUBDEV_FORMAT_ACTIVE; in vsp1_du_insert_uif()
87 format.pad = prev_pad; in vsp1_du_insert_uif()
89 ret = v4l2_subdev_call(&prev->subdev, pad, get_fmt, NULL, &format); in vsp1_du_insert_uif()
93 format.pad = UIF_PAD_SINK; in vsp1_du_insert_uif()
95 ret = v4l2_subdev_call(&uif->subdev, pad, set_fmt, NULL, &format); in vsp1_du_insert_uif()
99 dev_dbg(vsp1->dev, "%s: set format %ux%u (%x) on UIF sink\n", in vsp1_du_insert_uif()
100 __func__, format.format.width, format.format.height, in vsp1_du_insert_uif()
101 format.format.code); in vsp1_du_insert_uif()
[all …]
H A Dvsp1_rwpf.c65 struct v4l2_mbus_framefmt *format; in vsp1_rwpf_set_format() local
76 /* Default to YUV if the requested format is not supported. */ in vsp1_rwpf_set_format()
77 if (fmt->format.code != MEDIA_BUS_FMT_ARGB8888_1X32 && in vsp1_rwpf_set_format()
78 fmt->format.code != MEDIA_BUS_FMT_AHSV8888_1X32 && in vsp1_rwpf_set_format()
79 fmt->format.code != MEDIA_BUS_FMT_AYUV8_1X32) in vsp1_rwpf_set_format()
80 fmt->format.code = MEDIA_BUS_FMT_AYUV8_1X32; in vsp1_rwpf_set_format()
82 format = vsp1_entity_get_pad_format(&rwpf->entity, config, fmt->pad); in vsp1_rwpf_set_format()
86 * The RWPF performs format conversion but can't scale, only the in vsp1_rwpf_set_format()
87 * format code can be changed on the source pad. in vsp1_rwpf_set_format()
89 format->code = fmt->format.code; in vsp1_rwpf_set_format()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/media/omap4iss/
H A Diss_ipipe.c79 * Format- and pipeline-related configuration helpers
85 struct v4l2_mbus_framefmt *format; in ipipe_configure() local
88 format = &ipipe->formats[IPIPE_PAD_SINK]; in ipipe_configure()
101 (format->height - 2) & IPIPE_SRC_VSZ_MASK); in ipipe_configure()
103 (format->width - 1) & IPIPE_SRC_HSZ_MASK); in ipipe_configure()
115 format = &ipipe->formats[IPIPE_PAD_SOURCE_VP]; in ipipe_configure()
189 * ipipe_try_format - Try video format on a pad
193 * @fmt: Format
202 struct v4l2_mbus_framefmt *format; in ipipe_try_format() local
225 format = __ipipe_get_format(ipipe, cfg, IPIPE_PAD_SINK, which); in ipipe_try_format()
[all …]
H A Diss_ipipeif.c100 * Format- and pipeline-related configuration helpers
125 struct v4l2_mbus_framefmt *format; in ipipeif_configure() local
131 format = &ipipeif->formats[IPIPEIF_PAD_SINK]; in ipipeif_configure()
137 /* Select ISIF/IPIPEIF input format */ in ipipeif_configure()
138 switch (format->code) { in ipipeif_configure()
182 info = omap4iss_video_format_info(format->code); in ipipeif_configure()
195 (format->width - 1) & ISIF_LNH_MASK); in ipipeif_configure()
197 (format->height - 1) & ISIF_LNV_MASK); in ipipeif_configure()
201 format->height - 1); in ipipeif_configure()
204 format = &ipipeif->formats[IPIPEIF_PAD_SOURCE_ISIF_SF]; in ipipeif_configure()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/
H A Dreplace.hpp46 \param Format A substitute string
62 const Range2T& Format) in replace_range_copy() argument
68 ::boost::algorithm::const_formatter(Format)); in replace_range_copy()
81 const RangeT& Format) in replace_range_copy() argument
86 ::boost::algorithm::const_formatter(Format)); in replace_range_copy()
96 \param Format A substitute string
104 const RangeT& Format) in replace_range() argument
109 ::boost::algorithm::const_formatter(Format)); in replace_range()
117 with the format string.
124 \param Format A substitute string
[all …]
/OK3568_Linux_fs/external/xserver/os/
H A Dxprintf.c91 * @param format printf style format string
96 Xvasprintf(char **ret, const char *_X_RESTRICT_KYWD format, va_list va) in Xvasprintf() argument
99 return vasprintf(ret, format, va); in Xvasprintf()
105 size = vsnprintf(NULL, 0, format, va2); in Xvasprintf()
112 vsnprintf(*ret, size + 1, format, va); in Xvasprintf()
128 * @param format printf style format string
129 * @param ... arguments for specified format
133 Xasprintf(char **ret, const char *_X_RESTRICT_KYWD format, ...) in Xasprintf() argument
138 va_start(va, format); in Xasprintf()
139 size = vasprintf(ret, format, va); in Xasprintf()
[all …]
/OK3568_Linux_fs/kernel/sound/core/
H A Dpcm_misc.c45 static bool valid_format(snd_pcm_format_t format) in valid_format() argument
47 return (INT)format >= 0 && (INT)format <= (INT)SNDRV_PCM_FORMAT_LAST; in valid_format()
194 /* FIXME: the following format is not defined properly yet */
258 * snd_pcm_format_signed - Check the PCM format is signed linear
259 * @format: the format to check
261 * Return: 1 if the given PCM format is signed linear, 0 if unsigned
264 int snd_pcm_format_signed(snd_pcm_format_t format) in snd_pcm_format_signed() argument
267 if (!valid_format(format)) in snd_pcm_format_signed()
269 if ((val = pcm_formats[(INT)format].signd) < 0) in snd_pcm_format_signed()
276 * snd_pcm_format_unsigned - Check the PCM format is unsigned linear
[all …]
/OK3568_Linux_fs/kernel/drivers/video/rockchip/rga2/
H A DRGA2_API.c8 #define IS_YUV_420(format) \ argument
9 ((format == RK_FORMAT_YCbCr_420_P) | (format == RK_FORMAT_YCbCr_420_SP) | \
10 (format == RK_FORMAT_YCrCb_420_P) | (format == RK_FORMAT_YCrCb_420_SP))
12 #define IS_YUV_422(format) \ argument
13 ((format == RK_FORMAT_YCbCr_422_P) | (format == RK_FORMAT_YCbCr_422_SP) | \
14 (format == RK_FORMAT_YCrCb_422_P) | (format == RK_FORMAT_YCrCb_422_SP))
16 #define IS_YUV(format) \ argument
17 ((format == RK_FORMAT_YCbCr_420_P) | (format == RK_FORMAT_YCbCr_420_SP) | \
18 (format == RK_FORMAT_YCrCb_420_P) | (format == RK_FORMAT_YCrCb_420_SP) | \
19 (format == RK_FORMAT_YCbCr_422_P) | (format == RK_FORMAT_YCbCr_422_SP) | \
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/libidn/libidn/
H A D0001-idn-format-security-warnings.patch1 Subject: [PATCH] idn: fix printf() format security warnings
7 … ../../libidn-1.32/src/idn.c:172:7: error: format not a string literal and no format arguments [-W…
10 … ../../libidn-1.32/src/idn.c:187:5: error: format not a string literal and no format arguments [-W…
13 … ../../libidn-1.32/src/idn.c:202:4: error: format not a string literal and no format arguments [-W…
16 … ../../libidn-1.32/src/idn.c:220:8: error: format not a string literal and no format arguments [-W…
19 … ../../libidn-1.32/src/idn.c:245:8: error: format not a string literal and no format arguments [-W…
22 … ../../libidn-1.32/src/idn.c:281:6: error: format not a string literal and no format arguments [-W…
25 … ../../libidn-1.32/src/idn.c:340:6: error: format not a string literal and no format arguments [-W…
28 … ../../libidn-1.32/src/idn.c:364:6: error: format not a string literal and no format arguments [-W…
31 … ../../libidn-1.32/src/idn.c:442:8: error: format not a string literal and no format arguments [-W…
[all …]
/OK3568_Linux_fs/external/linux-rga/im2d_api/src/
H A Dim2d_impl.cpp382 "wstride = %d, hstride = %d, format = 0x%x(%s)", in rga_yuv_legality_check()
384 info.format, translate_format_str(info.format)); in rga_yuv_legality_check()
720 if (info.width <= 0 || info.height <= 0 || info.format < 0) { in rga_check_info()
721 …IM_LOGW("Illegal %s, the parameter cannot be negative or 0, width = %d, height = %d, format = 0x%x… in rga_check_info()
722 name, info.width, info.height, info.format, translate_format_str(info.format)); in rga_check_info()
810 int format = info.format; in rga_check_format() local
812 if (format == RK_FORMAT_RGBA_8888 || format == RK_FORMAT_BGRA_8888 || in rga_check_format()
813 format == RK_FORMAT_RGBX_8888 || format == RK_FORMAT_BGRX_8888 || in rga_check_format()
814 format == RK_FORMAT_ARGB_8888 || format == RK_FORMAT_ABGR_8888 || in rga_check_format()
815 format == RK_FORMAT_XRGB_8888 || format == RK_FORMAT_XBGR_8888 || in rga_check_format()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/imx/dcss/
H A Ddcss-plane.c69 u32 format, in dcss_plane_format_mod_supported() argument
74 switch (format) { in dcss_plane_format_mod_supported()
102 static bool dcss_plane_can_rotate(const struct drm_format_info *format, in dcss_plane_can_rotate() argument
110 if (!format->is_yuv && linear_format) in dcss_plane_can_rotate()
113 else if (!format->is_yuv && in dcss_plane_can_rotate()
118 else if (format->is_yuv && linear_format && in dcss_plane_can_rotate()
119 (format->format == DRM_FORMAT_NV12 || in dcss_plane_can_rotate()
120 format->format == DRM_FORMAT_NV21)) in dcss_plane_can_rotate()
167 fb->format->format)) { in dcss_plane_atomic_check()
184 if (!dcss_plane_can_rotate(fb->format, in dcss_plane_atomic_check()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/rockchip/rga3/
H A Drga_common.c13 bool rga_is_rgb_format(uint32_t format) in rga_is_rgb_format() argument
15 switch (format) { in rga_is_rgb_format()
42 bool rga_is_yuv_format(uint32_t format) in rga_is_yuv_format() argument
44 switch (format) { in rga_is_yuv_format()
76 bool rga_is_alpha_format(uint32_t format) in rga_is_alpha_format() argument
78 switch (format) { in rga_is_alpha_format()
97 bool rga_is_yuv420_packed_format(uint32_t format) in rga_is_yuv420_packed_format() argument
99 switch (format) { in rga_is_yuv420_packed_format()
110 bool rga_is_yuv420_planar_format(uint32_t format) in rga_is_yuv420_planar_format() argument
112 switch (format) { in rga_is_yuv420_planar_format()
[all …]
/OK3568_Linux_fs/external/mpp/mpp/hal/vpu/common/
H A Dvepu_common.c29 …{ .format = VEPU_FMT_YUV420SEMIPLANAR, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swa…
31 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
33 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
35 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
37 …{ .format = VEPU_FMT_YUV420PLANAR, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16…
39 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
41 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
43 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
45 …{ .format = VEPU_FMT_YUYV422INTERLEAVED, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .s…
47 …{ .format = VEPU_FMT_BUTT, .r_mask = 0, .g_mask = 0, .b_mask = 0, .swap_8_in = 1, .swap_16_in = 1,…
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/
H A Ddmxlog.c76 ErrorF(const char *format, ...) in ErrorF() argument
80 va_start(args, format); in ErrorF()
81 vfprintf(stderr, format, args); /* RATS: We assume the format string in ErrorF()
89 VFatalError(const char *format, va_list args) _X_ATTRIBUTE_PRINTF(1, 0) _X_NORETURN;
91 VFatalError(const char *format, va_list args) in VFatalError() argument
93 vfprintf(stderr, format, args); /* RATS: We assume the format string in VFatalError()
101 VErrorF(const char *format, va_list args) in VErrorF() argument
103 vfprintf(stderr, format, args); /* RATS: We assume the format string in VErrorF()
111 VFatalError(const char *format, va_list args) _X_ATTRIBUTE_PRINTF(1, 0) _X_NORETURN;
113 VFatalError(const char *format, va_list args) in VFatalError() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/
H A Dsoxformat.740 Format types that can SoX can determine by a filename
42 Format types that are optionally built into SoX
45 Format types that can be handled by an
49 useful if you have a file that doesn't work with SoX's default format
51 format.
53 To see if SoX has support for an optional format or device, enter
71 format options; for the other listed types, the sample rate defaults to
83 Headerless audio files on a SPARC computer are likely to be of format
112 Amiga 8SVX musical instrument description format.
117 or the 8SVX musical instrument description format.
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/v4l/
H A Dpixfmt-reserved.rst6 Reserved Format Identifiers
11 register your own format, send an e-mail to the linux-media mailing list
14 format with other developers add a link to your documentation and send a
16 you think your format should be listed in a standard format section
41 - Compressed format of the ET61X251 driver.
46 - 8 bit RGB format used by the BTTV driver.
51 - YUV 4:2:0 format used by the IVTV driver.
53 The format is documented in the kernel sources in the file
59 - YUV format used by the gspca cpia1 driver.
64 - JPEG-Light format (Pegasus Lossless JPEG) used in Divio webcams NW
[all …]

12345678910>>...391