Home
last modified time | relevance | path

Searched full:quality (Results 1 – 25 of 800) sorted by relevance

12345678910>>...32

/kernel/linux/linux-4.19/net/netrom/
Dnr_route.c83 /* re-sort the routes in quality order. */
86 if (nr_node->routes[y].quality > nr_node->routes[x].quality) { in re_sort_routes()
102 int quality, int obs_count) in nr_add_node() argument
124 if (nr_neigh != NULL && nr_neigh->failed != 0 && quality == 0) { in nr_add_node()
142 if (quality == 0 && nr_neigh != NULL && nr_node != NULL) { in nr_add_node()
159 nr_neigh->quality = sysctl_netrom_default_path_quality; in nr_add_node()
184 if (quality != 0 && ax25cmp(nr, ax25) == 0 && !nr_neigh->locked) in nr_add_node()
185 nr_neigh->quality = quality; in nr_add_node()
202 nr_node->routes[0].quality = quality; in nr_add_node()
219 if (quality != 0) in nr_add_node()
[all …]
/kernel/linux/linux-5.10/net/netrom/
Dnr_route.c80 /* re-sort the routes in quality order. */
83 if (nr_node->routes[y].quality > nr_node->routes[x].quality) { in re_sort_routes()
99 int quality, int obs_count) in nr_add_node() argument
121 if (nr_neigh != NULL && nr_neigh->failed != 0 && quality == 0) { in nr_add_node()
139 if (quality == 0 && nr_neigh != NULL && nr_node != NULL) { in nr_add_node()
156 nr_neigh->quality = sysctl_netrom_default_path_quality; in nr_add_node()
181 if (quality != 0 && ax25cmp(nr, ax25) == 0 && !nr_neigh->locked) in nr_add_node()
182 nr_neigh->quality = quality; in nr_add_node()
199 nr_node->routes[0].quality = quality; in nr_add_node()
216 if (quality != 0) in nr_add_node()
[all …]
/kernel/linux/linux-4.19/include/uapi/sound/
Dcompress_params.h176 * Define quality levels for FLAC encoders, from LEVEL0 (fast)
249 * @quality: Sets encoding quality to n, between -1 (low) and 10 (high).
250 * In the default mode of operation, the quality level is 3.
251 * Normal quality range is 0 - 10.
255 * lower quality. It is primarily useful for streaming.
264 * For best quality users should specify VBR mode and set quality levels.
268 __s32 quality; member
300 * To make the API simpler, it is assumed that the user will select quality
301 * profiles. Additional options that affect encoding quality and speed can
376 * Encoders may rely on profiles for quality levels.
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/rng/
Dtimeriomem_rng.txt9 - quality : estimated number of bits of true entropy per 1024 bits read from the
10 rng. Defaults to zero which causes the kernel's default quality to
11 be used instead. Note that the default quality is usually zero
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/rng/
Dtimeriomem_rng.txt9 - quality : estimated number of bits of true entropy per 1024 bits read from the
10 rng. Defaults to zero which causes the kernel's default quality to
11 be used instead. Note that the default quality is usually zero
/kernel/linux/linux-4.19/drivers/media/platform/coda/
Dcoda-jpeg.c224 void coda_set_jpeg_compression_quality(struct coda_ctx *ctx, int quality) in coda_set_jpeg_compression_quality() argument
228 ctx->params.jpeg_quality = quality; in coda_set_jpeg_compression_quality()
230 /* Clip quality setting to [5,100] interval */ in coda_set_jpeg_compression_quality()
231 if (quality > 100) in coda_set_jpeg_compression_quality()
232 quality = 100; in coda_set_jpeg_compression_quality()
233 if (quality < 5) in coda_set_jpeg_compression_quality()
234 quality = 5; in coda_set_jpeg_compression_quality()
240 if (quality < 50) in coda_set_jpeg_compression_quality()
241 scale = 5000 / quality; in coda_set_jpeg_compression_quality()
243 scale = 200 - 2 * quality; in coda_set_jpeg_compression_quality()
/kernel/linux/linux-5.10/include/uapi/sound/
Dcompress_params.h181 * Define quality levels for FLAC encoders, from LEVEL0 (fast)
254 * @quality: Sets encoding quality to n, between -1 (low) and 10 (high).
255 * In the default mode of operation, the quality level is 3.
256 * Normal quality range is 0 - 10.
260 * lower quality. It is primarily useful for streaming.
269 * For best quality users should specify VBR mode and set quality levels.
273 __s32 quality; member
305 * To make the API simpler, it is assumed that the user will select quality
306 * profiles. Additional options that affect encoding quality and speed can
421 * Encoders may rely on profiles for quality levels.
/kernel/linux/linux-5.10/Documentation/userspace-api/media/v4l/
Dext-ctrls-jpeg.rst64 .. _jpeg-quality-control:
68 between image quality and size. It provides simpler method for
69 applications to control image quality, without a need for direct
78 where larger values correspond to better image quality.
Dvidioc-g-parm.rst236 - High quality imaging mode. High quality mode is intended for still
238 quality that the hardware can deliver. It is not defined how the
240 the ingenuity of the driver writer. High quality mode is a
242 high quality mode:
Dvidioc-g-jpegcomp.rst39 :ref:`JPEG class controls <jpeg-controls>` for image quality and JPEG
67 - ``quality``
69 :ref:`V4L2_CID_JPEG_COMPRESSION_QUALITY <jpeg-quality-control>`
/kernel/linux/linux-5.10/drivers/media/usb/gspca/
Djeilinj.c41 #define CAMQUALITY_MIN 0 /* highest cam quality */
42 #define CAMQUALITY_MAX 97 /* lowest cam quality */
53 u8 quality; /* image quality */ member
142 /* adapt camera quality from jpeg quality */ in setcamquality()
312 dev->quality = QUALITY_DEF; in sd_config()
372 jpeg_set_qual(dev->jpeg_hdr, dev->quality); in sd_start()
470 v4l2_ctrl_s_ctrl(sd->jpegqual, jcomp->quality); in sd_set_jcomp()
480 jcomp->quality = v4l2_ctrl_g_ctrl(sd->jpegqual); in sd_get_jcomp()
Djpeg.h22 /* quantization table quality 50% */
137 /* set the JPEG quality */
139 int quality) in jpeg_set_qual() argument
143 if (quality <= 0) in jpeg_set_qual()
145 else if (quality < 50) in jpeg_set_qual()
146 sc = 5000 / quality; in jpeg_set_qual()
148 sc = 200 - quality * 2; in jpeg_set_qual()
/kernel/linux/linux-4.19/drivers/char/hw_random/
Dcore.c34 /* list of registered rngs, sorted decending by quality */
160 current_quality = rng->quality ? : default_quality; in hwrng_init()
301 /* rng_list is sorted by quality, use the best (=first) one */ in enable_best_rng()
477 /* rng_list is sorted by decreasing quality */ in hwrng_register()
480 if (tmp->quality < rng->quality) in hwrng_register()
488 (!cur_rng_set_by_user && rng->quality > old_rng->quality)) { in hwrng_register()
491 * provides better entropy quality and was not in hwrng_register()
Dtimeriomem-rng.c149 "quality", &i)) in timeriomem_rng_probe()
150 priv->rng_ops.quality = i; in timeriomem_rng_probe()
152 priv->rng_ops.quality = 0; in timeriomem_rng_probe()
155 priv->rng_ops.quality = pdata->quality; in timeriomem_rng_probe()
/kernel/linux/linux-4.19/drivers/media/usb/gspca/
Djpeg.h32 /* quantization table quality 50% */
147 /* set the JPEG quality */
149 int quality) in jpeg_set_qual() argument
153 if (quality <= 0) in jpeg_set_qual()
155 else if (quality < 50) in jpeg_set_qual()
156 sc = 5000 / quality; in jpeg_set_qual()
158 sc = 200 - quality * 2; in jpeg_set_qual()
Djeilinj.c50 #define CAMQUALITY_MIN 0 /* highest cam quality */
51 #define CAMQUALITY_MAX 97 /* lowest cam quality */
62 u8 quality; /* image quality */ member
151 /* adapt camera quality from jpeg quality */ in setcamquality()
321 dev->quality = QUALITY_DEF; in sd_config()
381 jpeg_set_qual(dev->jpeg_hdr, dev->quality); in sd_start()
479 v4l2_ctrl_s_ctrl(sd->jpegqual, jcomp->quality); in sd_set_jcomp()
489 jcomp->quality = v4l2_ctrl_g_ctrl(sd->jpegqual); in sd_get_jcomp()
/kernel/linux/linux-5.10/drivers/char/hw_random/
Dtimeriomem-rng.c146 "quality", &i)) in timeriomem_rng_probe()
147 priv->rng_ops.quality = i; in timeriomem_rng_probe()
149 priv->rng_ops.quality = 0; in timeriomem_rng_probe()
152 priv->rng_ops.quality = pdata->quality; in timeriomem_rng_probe()
Dcore.c34 /* list of registered rngs, sorted decending by quality */
164 current_quality = rng->quality ? : default_quality; in hwrng_init()
305 /* rng_list is sorted by quality, use the best (=first) one */ in enable_best_rng()
490 /* rng_list is sorted by decreasing quality */ in hwrng_register()
493 if (tmp->quality < rng->quality) in hwrng_register()
499 (!cur_rng_set_by_user && rng->quality > current_rng->quality)) { in hwrng_register()
502 * provides better entropy quality and was not in hwrng_register()
/kernel/linux/linux-5.10/drivers/media/platform/mtk-jpeg/
Dmtk_jpeg_enc_hw.h73 * struct mtk_jpeg_enc_qlt - JPEG encoder quality data
74 * @quality_param: quality value
75 * @hardware_value: hardware value of quality
/kernel/linux/linux-5.10/Documentation/driver-api/media/drivers/
Dvidtv.rst18 - A fake tuner driver, which will report a bad signal quality if the chosen
22 - A fake demod driver, which will constantly poll the fake signal quality
80 Probability of losing the TS lock if the signal quality is bad.
82 eventually return a status of 0 when the signal quality is not
88 return a status of 0x1f when/if the signal quality improves.
402 …Lock (0x1f) Quality= Good Signal= -34.66dBm C/N= 33.41dB UCB= 0 postBER= 0 preBER= 1.05x10^-3 PE…
403 …Lock (0x1f) Quality= Good Signal= -34.57dBm C/N= 33.46dB UCB= 0 postBER= 0 preBER= 1.05x10^-3 PE…
406 …Lock (0x1f) Quality= Good Signal= -34.42dBm C/N= 33.89dB UCB= 0 postBER= 0 preBER= 2.44x10^-3 PE…
477 report a bad signal quality.
479 A nice addition is to simulate some noise when the signal quality is bad by:
/kernel/linux/linux-4.19/Documentation/media/uapi/v4l/
Dvidioc-g-parm.rst229 - High quality imaging mode. High quality mode is intended for still
231 quality that the hardware can deliver. It is not defined how the
233 the ingenuity of the driver writer. High quality mode is a
235 high quality mode:
Dvidioc-g-jpegcomp.rst39 :ref:`JPEG class controls <jpeg-controls>` for image quality and JPEG
68 - ``quality``
70 :ref:`V4L2_CID_JPEG_COMPRESSION_QUALITY <jpeg-quality-control>`
/kernel/linux/linux-4.19/drivers/net/phy/
Dqsemi.c4 * Driver for Quality Semiconductor PHYs
38 /* The Quality Semiconductor QS6612 is used on the RPX CLLF */
58 MODULE_DESCRIPTION("Quality Semiconductor PHY driver");
/kernel/linux/linux-5.10/drivers/net/phy/
Dqsemi.c5 * Driver for Quality Semiconductor PHYs
33 /* The Quality Semiconductor QS6612 is used on the RPX CLLF */
53 MODULE_DESCRIPTION("Quality Semiconductor PHY driver");
/kernel/linux/linux-5.10/include/uapi/linux/
Dwireless.h149 * - Add average quality (for user space calibration)
265 #define SIOCGIWSPY 0x8B11 /* get spy info (quality of link) */
368 #define IWEVQUAL 0x8C01 /* Quality part of statistics (scan) */
714 * Quality of the link
717 __u8 qual; /* link quality (%retries, SNR,
748 * Quality range (for spy threshold)
752 struct iw_quality qual; /* Quality of the link */
885 struct iw_quality qual; /* Quality of the link
924 struct iw_quality qual; /* Quality part of statistics */
986 /* Quality of link & SNR stuff */
[all …]

12345678910>>...32