/third_party/ffmpeg/libavfilter/ |
H A D | vf_lenscorrection.c | 50 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 D | af_atempo.c | 687 * @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 D | Grego.java | 140 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 D | Grego.java | 142 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 D | lossless_enc_mips32.c | 29 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 D | lossless_enc.c | 336 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 D | gregoimp.cpp | 132 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 D | gregocal.cpp | 406 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 D | gregoimp.cpp | 137 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 D | gregocal.cpp | 407 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 D | gregoimp.cpp | 127 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 D | gregocal.cpp | 406 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 D | mpegvideo_alpha.c | 30 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 D | lz4hc.c | 632 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 D | GregorianCalendar.java | 785 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 D | Calendar.java | 5142 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 D | GregorianCalendar.java | 760 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 D | Calendar.java | 4897 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 D | hb-ot-shape-fallback.cc | 304 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 D | quant_levels_dec_utils.c | 137 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 D | AtlasTextOp.cpp | 466 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.py | 298 correction = datetime_date(iso_year, 1, 4).isoweekday() + 3 299 ordinal = (iso_week * 7) + iso_weekday - correction
|
/third_party/tzdata/ |
H A D | zic.c | 2094 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 D | ParagraphImpl.cpp | 912 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 D | p5_device.c | 868 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
|