Home
last modified time | relevance | path

Searched refs:correction (Results 1 - 25 of 37) sorted by relevance

12

/third_party/ffmpeg/libavfilter/
H A Dvf_lenscorrection.c50 int32_t *correction[4]; member
84 const int32_t *correction = rect->correction[plane]; \
100 const int64_t radius_mult = correction[j + i*w]; \
123 const int32_t *correction = rect->correction[plane]; \
144 const int64_t radius_mult = correction[j + i*w]; \
210 for (i = 0; i < FF_ARRAY_ELEMS(rect->correction); i++) { in uninit()
211 av_freep(&rect->correction[i]); in uninit()
234 rect->correction[plan in calc_correction()
[all...]
H A Daf_atempo.c687 * @return alignment correction.
704 const int correction = yae_align(frag, in yae_adjust_position() local
714 if (correction) { in yae_adjust_position()
716 frag->position[0] -= correction; in yae_adjust_position()
722 return correction; in yae_adjust_position()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DGrego.java140 int correction = 0; in dayToFields()
143 correction = isLeap ? 1 : 2; in dayToFields()
145 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in dayToFields()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DGrego.java142 int correction = 0; in dayToFields()
145 correction = isLeap ? 1 : 2; in dayToFields()
147 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in dayToFields()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_enc_mips32.c29 uint32_t log_cnt, y, correction; in FastSLog2Slow_MIPS32() local
50 // The correction factor: log(1 + d) ~ d; for very small d values, so in FastSLog2Slow_MIPS32()
55 correction = (23 * (v & (y - 1))) >> 4; in FastSLog2Slow_MIPS32()
56 return v_f * (kLog2Table[temp] + log_cnt) + correction; in FastSLog2Slow_MIPS32()
83 // Since the division is still expensive, add this correction factor only in FastLog2Slow_MIPS32()
86 const uint32_t correction = (23 * (v & (y - 1))) >> 4; in FastLog2Slow_MIPS32() local
87 log_2 += (double)correction / v; in FastLog2Slow_MIPS32()
H A Dlossless_enc.c336 int correction = 0; in FastSLog2Slow_C() local
343 int correction = 0; in FastSLog2Slow_C()
355 // The correction factor: log(1 + d) ~ d; for very small d values, so in FastSLog2Slow_C()
358 correction = (23 * (orig_v & (y - 1))) >> 4; in FastSLog2Slow_C()
359 return v_f * (kLog2Table[v] + log_cnt) + correction; in FastSLog2Slow_C()
388 // Since the division is still expensive, add this correction factor only in FastLog2Slow_C()
390 const int correction = (23 * (orig_v & (y - 1))) >> 4; in FastLog2Slow_C() local
391 log_2 += (double)correction / orig_v; in FastLog2Slow_C()
/third_party/icu/icu4c/source/i18n/
H A Dgregoimp.cpp132 int32_t correction = 0; in dayToFields() local
135 correction = isLeap ? 1 : 2; in dayToFields()
137 month = (12 * (doy + correction) + 6) / 367; // zero-based month in dayToFields()
H A Dgregocal.cpp406 int32_t correction = 0; in handleComputeFields() local
409 correction = isLeap ? 1 : 2; in handleComputeFields()
411 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/third_party/node/deps/icu-small/source/i18n/
H A Dgregoimp.cpp137 int32_t correction = 0; in dayToFields() local
140 correction = isLeap ? 1 : 2; in dayToFields()
142 month = (12 * (doy + correction) + 6) / 367; // zero-based month in dayToFields()
H A Dgregocal.cpp407 int32_t correction = 0; in handleComputeFields() local
410 correction = isLeap ? 1 : 2; in handleComputeFields()
412 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dgregoimp.cpp127 int32_t correction = 0; in dayToFields() local
130 correction = isLeap ? 1 : 2; in dayToFields()
132 month = (12 * (doy + correction) + 6) / 367; // zero-based month in dayToFields()
H A Dgregocal.cpp406 int32_t correction = 0; in handleComputeFields() local
409 correction = isLeap ? 1 : 2; in handleComputeFields()
411 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/third_party/ffmpeg/libavcodec/alpha/
H A Dmpegvideo_alpha.c30 uint64_t correction = WORD_VEC(qmul * 255 >> 8); in dct_unquantize_h263_axp() local
59 levels -= correction & (negmask << 16); in dct_unquantize_h263_axp()
/third_party/lz4/lib/
H A Dlz4hc.c632 int correction; in LZ4HC_compress_hashChain() local
636 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_hashChain()
637 if (correction > 0) { in LZ4HC_compress_hashChain()
638 start2 += correction; in LZ4HC_compress_hashChain()
639 ref2 += correction; in LZ4HC_compress_hashChain()
640 ml2 -= correction; in LZ4HC_compress_hashChain()
672 int correction = (int)(ip+ml - start2); in LZ4HC_compress_hashChain() local
673 start2 += correction; in LZ4HC_compress_hashChain()
674 ref2 += correction; in LZ4HC_compress_hashChain()
675 ml2 -= correction; in LZ4HC_compress_hashChain()
708 int correction; LZ4HC_compress_hashChain() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DGregorianCalendar.java785 int correction = 0; in handleComputeFields()
788 correction = isLeap ? 1 : 2; in handleComputeFields()
790 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
H A DCalendar.java5142 int correction = 0; in computeGregorianFields()
5144 if (dayOfYear >= march1) correction = isLeap ? 1 : 2; in computeGregorianFields()
5145 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in computeGregorianFields()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DGregorianCalendar.java760 int correction = 0; in handleComputeFields()
763 correction = isLeap ? 1 : 2; in handleComputeFields()
765 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
H A DCalendar.java4897 int correction = 0; in computeGregorianFields()
4899 if (dayOfYear >= march1) correction = isLeap ? 1 : 2; in computeGregorianFields()
4900 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in computeGregorianFields()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-shape-fallback.cc304 int correction = -pos.y_offset / 2; in position_mark() local
305 base_extents.y_bearing += correction; in position_mark()
306 base_extents.height -= correction; in position_mark()
307 pos.y_offset += correction; in position_mark()
/third_party/skia/third_party/externals/libwebp/src/utils/
H A Dquant_levels_dec_utils.c137 const int16_t* const correction = p->correction_; in ApplyFilter() local
146 const int c = (v << DFIX) + correction[average[x] - (v << LFIX)]; in ApplyFilter()
158 // Initialize correction table
161 // The correction curve is: in InitCorrectionLUT()
251 // correction table in InitParams()
/third_party/skia/src/gpu/ops/
H A DAtlasTextOp.cpp466 float correction = 0; in setupDfProcessor() local
470 correction = dfAdjustTable->getAdjustment(lum >> kDistanceAdjustLumShift, in setupDfProcessor()
474 GrSamplerState::Filter::kLinear, correction, in setupDfProcessor()
/third_party/python/Lib/
H A D_strptime.py298 correction = datetime_date(iso_year, 1, 4).isoweekday() + 3
299 ordinal = (iso_week * 7) + iso_weekday - correction
/third_party/tzdata/
H A Dzic.c2094 int correction = 0; in inleap() local
2096 correction = -1; in inleap()
2098 correction = 1; in inleap()
2101 if (correction) in inleap()
2102 leapadd(t, correction, lp->l_value); in inleap()
2347 positive leap second if and only if it has a positive correction. in limitrange()
2349 second is positive if and only if its correction is positive. */ in limitrange()
2473 leap second transition is not to a +1 or -1 correction. */ in writezone()
2762 /* Append a no-op leap correction indicating when the leap in writezone()
3526 leapadd(zic_t t, int correction, in argument
[all...]
/third_party/skia/modules/skparagraph/src/
H A DParagraphImpl.cpp912 auto correction = 0.0f; in GetLineFontMetrics() local
915 correction = fJustificationShifts[end - 1].fX - in GetLineFontMetrics()
920 correction += fAutoSpacings[end - 1].fX - fAutoSpacings[start].fY; in GetLineFontMetrics()
922 return posX(end) - posX(start) + correction; in GetLineFontMetrics()
/third_party/backends/backend/
H A Dp5_device.c868 SANE_Bool retry, SANE_Bool x2, int mode, SANE_Bool correction) in read_line()
899 /* image correction */ in read_line()
900 if (correction == SANE_TRUE) in read_line()
867 read_line(P5_Device * dev, uint8_t * data, size_t length, int ltr, SANE_Bool retry, SANE_Bool x2, int mode, SANE_Bool correction) read_line() argument

Completed in 45 milliseconds

12