Home
last modified time | relevance | path

Searched full:correction (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/linux/include/linux/
H A Dptp_classify.h75 __be64 correction; member
155 * ptp_header_update_correction - Update PTP header's correction field
159 * @correction: new correction value
161 * This updates the correction field of a PTP header and updates the UDP
163 * one-step P2P that does not already modify the correction field of Pdelay_Req
168 struct ptp_header *hdr, s64 correction) in ptp_header_update_correction() argument
173 /* previous correction value is required for checksum update. */ in ptp_header_update_correction()
174 memcpy(&correction_old, &hdr->correction, sizeof(correction_old)); in ptp_header_update_correction()
176 /* write new correction value */ in ptp_header_update_correction()
177 put_unaligned_be64((u64)correction, &hdr->correction); in ptp_header_update_correction()
[all …]
/linux/include/uapi/linux/dvb/
H A Dfrontend.h268 * enum fe_code_rate - Type of Forward Error Correction (FEC)
270 * @FEC_NONE: No Forward Error Correction Code
271 * @FEC_1_2: Forward Error Correction Code 1/2
272 * @FEC_2_3: Forward Error Correction Code 2/3
273 * @FEC_3_4: Forward Error Correction Code 3/4
274 * @FEC_4_5: Forward Error Correction Code 4/5
275 * @FEC_5_6: Forward Error Correction Code 5/6
276 * @FEC_6_7: Forward Error Correction Code 6/7
277 * @FEC_7_8: Forward Error Correction Code 7/8
278 * @FEC_8_9: Forward Error Correction Code 8/9
[all …]
/linux/Documentation/driver-api/
H A Dmtdnand.rst403 and correction. Return 1 respectively 2 in case the error can be
406 software generator then use the correction function provided by
414 standard Reed-Solomon syndrome before calling the error correction code
699 0x00 ECC byte 0 Error correction code byte 0
700 0x01 ECC byte 1 Error correction code byte 1
701 0x02 ECC byte 2 Error correction code byte 2
719 0x00 ECC byte 0 Error correction code byte 0 of the lower
721 0x01 ECC byte 1 Error correction code byte 1 of the lower
723 0x02 ECC byte 2 Error correction code byte 2 of the lower
725 0x03 ECC byte 3 Error correction code byte 0 of the upper
[all …]
/linux/drivers/mtd/nand/
H A DKconfig24 correction. This correction can correct up to 1 bit error
27 more strength correction and in this case BCH or RS will be
44 This enables support for software BCH error correction. Binary BCH
47 of error correction.
/linux/drivers/staging/media/deprecated/atmel/
H A Datmel-isc-regs.h164 /* ISC Color Correction Control Register */
167 /* ISC Color Correction RR RG Register */
170 /* ISC Color Correction RB OR Register */
173 /* ISC Color Correction GR GG Register */
176 /* ISC Color Correction GB OG Register */
179 /* ISC Color Correction BR BG Register */
182 /* ISC Color Correction BB OB Register */
185 /* ISC Gamma Correction Control Register */
190 /* ISC_Gamma Correction Blue Entry Register */
193 /* ISC_Gamma Correction Green Entry Register */
[all …]
/linux/drivers/media/platform/microchip/
H A Dmicrochip-isc-regs.h164 /* ISC Color Correction Control Register */
167 /* ISC Color Correction RR RG Register */
170 /* ISC Color Correction RB OR Register */
173 /* ISC Color Correction GR GG Register */
176 /* ISC Color Correction GB OG Register */
179 /* ISC Color Correction BR BG Register */
182 /* ISC Color Correction BB OB Register */
185 /* ISC Gamma Correction Control Register */
190 /* ISC_Gamma Correction Blue Entry Register */
193 /* ISC_Gamma Correction Green Entry Register */
[all …]
/linux/drivers/macintosh/
H A Dwindfarm_pm121.c24 * Target Correction :
26 * controls have a target correction calculated as :
31 * OD Fan control correction.
41 * HD Fan control correction.
51 * CPU Fan control correction.
63 * Some controls have a target correction which depends on another
64 * control value. The correction is computed in the following way :
85 * In order to have the moste efficient correction with those
312 /* CPUFREQ has no correction (and is not implemented at all) */
318 struct pm121_correction correction; member
[all …]
/linux/Documentation/userspace-api/media/drivers/
H A Dccs.rst101 Shading correction
104 The CCS standard supports lens shading correction. The feature can be controlled
106 correction level may be changed using
108 correction and 128 indicates correcting the luminance in corners to 10 % less
111 Shading correction needs to be enabled for luminance correction level to have an
/linux/include/uapi/linux/
H A Drtc.h48 * Data structure to control PLL correction some better RTC feature
49 * pll_value is used to get or set current value of correction,
62 int pll_value; /* get/set correction value */
65 int pll_posmult; /* factor for +ve correction */
66 int pll_negmult; /* factor for -ve correction */
107 #define RTC_PLL_GET _IOR('p', 0x11, struct rtc_pll_info) /* Get PLL correction */
108 #define RTC_PLL_SET _IOW('p', 0x12, struct rtc_pll_info) /* Set PLL correction */
H A Djoystick.h61 #define JSIOCSCORR _IOW('j', 0x21, struct js_corr) /* set correction values */
62 #define JSIOCGCORR _IOR('j', 0x22, struct js_corr) /* get correction values */
70 * Types and constants for get/set correction
/linux/drivers/mtd/nand/raw/ingenic/
H A DKconfig8 based boards, using the BCH controller for hardware error correction.
19 Enable this driver to support the Reed-Solomon error-correction
29 Enable this driver to support the BCH error-correction hardware
39 Enable this driver to support the BCH error-correction hardware
/linux/Documentation/core-api/
H A Dlibrs.rst11 correction functions.
34 correction with the given polynomial. It either uses an existing
91 The correction of the data buffer can be suppressed by providing a
92 correction pattern buffer and an error location buffer to the decoder.
93 The decoder stores the calculated error location and the correction
102 Decoding with syndrome calculation, direct data correction
119 Decoding with syndrome given by hardware decoder, direct data correction
138 Decoding with syndrome given by hardware decoder, no direct data correction.
/linux/lib/lz4/
H A Dlz4hc_compress.c432 int correction; in LZ4HC_compress_generic()
440 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_generic()
442 if (correction > 0) { in LZ4HC_compress_generic()
443 start2 += correction; in LZ4HC_compress_generic()
444 ref2 += correction; in LZ4HC_compress_generic()
445 ml2 -= correction; in LZ4HC_compress_generic()
485 int correction = (int)(ip + ml - start2); in LZ4HC_compress_generic()
487 start2 += correction; in LZ4HC_compress_generic()
488 ref2 += correction; in LZ4HC_compress_generic()
489 ml2 -= correction; in LZ4HC_compress_generic()
433 int correction; LZ4HC_compress_generic() local
486 int correction = (int)(ip + ml - start2); LZ4HC_compress_generic() local
524 int correction; LZ4HC_compress_generic() local
[all...]
/linux/drivers/media/i2c/ccs/
H A Dccs-quirk.c65 { 0x331e, 0x0f }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */ in jt8ew9_post_poweron()
66 { 0x3320, 0x30 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */ in jt8ew9_post_poweron()
67 { 0x3321, 0x11 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */ in jt8ew9_post_poweron()
68 { 0x3322, 0x98 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */ in jt8ew9_post_poweron()
69 { 0x3323, 0x64 }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */ in jt8ew9_post_poweron()
73 { 0x3345, 0x2f }, /* Black Hole Sun Correction Control Toshiba Recommendation Setting */ in jt8ew9_post_poweron()
/linux/drivers/gpu/drm/sun4i/
H A Dsunxi_engine.h86 * This callback will enable the color correction in the
96 * This callback will stop the color correction in the
176 * sunxi_engine_apply_color_correction - Apply the RGB2YUV color correction
181 * without the color correction, due to TV Encoder expects the engine to
192 * sunxi_engine_disable_color_correction - Disable the color space correction
/linux/drivers/staging/media/atomisp/include/linux/
H A Datomisp.h292 /* Defect pixel correction configuration */
294 /* [intensity] The threshold of defect Pixel Correction, representing
300 /* [gain] The sensitivity of mis-correction. ISP will miss a lot of
405 struct atomisp_cc_config *cc_config; /* Color Correction config */
423 struct atomisp_gc_config *gc_config; /* Gamma Correction config */
429 Correction config */
431 Correction config */
725 /* Defect pixel detection & Correction */
731 /* False Color Correction */
743 /* white balance Correction */
[all …]
/linux/include/uapi/linux/media/raspberrypi/
H A Dpisp_be_config.h122 * Defective Pixel Correction configuration
291 * Lens Shading Correction configuration
324 * Chromatic Aberration Correction config
408 * Colour Correction Matrix configuration
729 * @dpc: Defective Pixel Correction configuration
737 * @blc: Black Level Correction configuration
743 * @lsc: Lens Shading Correction configuration
746 * @cac: Colour Aberration Correction configuration
750 * @ccm: Colour Correction Matrix configuration
752 * @ycbcr: YCbCr colour correction configuration
[all …]
/linux/tools/perf/pmu-events/arch/test/test_soc/cpu/
H A Dbranch.json5 "BriefDescription": "L1 BTB Correction."
10 "BriefDescription": "L2 BTB Correction."
/linux/drivers/staging/media/ipu3/include/uapi/
H A Dintel-ipu3.h599 /* number of elements in gamma correction LUT */
651 * its neighbors.(used by dynamic defect pixel correction sub block)
698 * Parameters for noise model (NM) adaptation of BNR due to shading correction.
717 * correction (should be calculated based on shading tables)
752 * @w0_coeff: Blending coefficient of defect pixel correction.
755 * @w1_coeff: Enable influence of incorrect defect pixel correction to be
790 * @bpc_enable: Bad pixel correction enable control, 0 - disable, 1 - enable.
914 * @fcc_en: False color correction (FCC) enable flag. Default 0.
931 * @coring_param: Defines power of false color correction operation.
961 * struct ipu3_uapi_ccm_mat_config - Color correction matrix
[all …]
/linux/lib/zstd/compress/
H A Dzstd_compress_internal.h190 U32 nbOverflowCorrections; /* Number of times overflow correction has run since
889 /* Maximum chunk size before overflow correction needs to be called again */
937 /* Defining this macro to non-zero tells zstd to run the overflow correction
951 * Returns non-zero if the indices are large enough for overflow correction
966 /* Adjust the min index to backoff the overflow correction frequency, in ZSTD_window_canOverflowCorrect()
967 * so we don't waste too much CPU in overflow correction. If this in ZSTD_window_canOverflowCorrect()
1008 * Returns the correction made to the indices, which must be applied to every
1017 /* preemptive overflow correction: in ZSTD_window_correctOverflow()
1018 * 1. correction is large enough: in ZSTD_window_correctOverflow()
1029 * After correction, current is less than (1<<chainLog + 1<<windowLog). in ZSTD_window_correctOverflow()
[all …]
/linux/tools/perf/pmu-events/arch/x86/amdzen1/
H A Dbranch.json5 "BriefDescription": "L1 BTB Correction."
10 "BriefDescription": "L2 BTB Correction."
/linux/Documentation/devicetree/bindings/edac/
H A Daspeed-sdram-edac.txt4 correction check).
6 The memory controller supports SECDED (single bit error correction, double bit
/linux/Documentation/devicetree/bindings/sound/
H A Dst,sta32x.txt67 If present, power bridge correction for THD reduction near maximum
96 st,max-power-correction; // enables power bridge
97 // correction for THD reduction
/linux/drivers/net/ethernet/sfc/siena/
H A Dptp.c247 * @ts_corrections.ptp_tx: Required driver correction of PTP packet transmit
249 * @ts_corrections.ptp_rx: Required driver correction of PTP packet receive
252 * @ts_corrections.pps_in: Required driver correction of PPS input timestamps
253 * @ts_corrections.general_tx: Required driver correction of general packet
255 * @ts_corrections.general_rx: Required driver correction of general packet
305 s32 correction);
449 s32 correction) in efx_ptp_s_ns_to_ktime_correction() argument
452 if (correction >= 0) in efx_ptp_s_ns_to_ktime_correction()
453 kt = ktime_add_ns(kt, (u64)correction); in efx_ptp_s_ns_to_ktime_correction()
455 kt = ktime_sub_ns(kt, (u64)-correction); in efx_ptp_s_ns_to_ktime_correction()
[all …]
/linux/lib/reed_solomon/
H A Dtest_rslib.c34 __param(int, bc, 1, "Test for correct behaviour beyond error correction capacity");
80 uint16_t *corr; /* correction buffer */
259 /* Test up to error correction capacity */
317 "Testing correction buffer interface...", in ex_rs_helper()
357 pr_info("Testing up to error correction capacity...\n"); in exercise_rs()
365 /* Tests for correct behaviour beyond error correction capacity */
415 pr_info("Testing beyond error correction capacity...\n"); in exercise_rs_bc()

12345678910>>...17