Home
last modified time | relevance | path

Searched refs:correction (Results 1 – 25 of 164) sorted by relevance

1234567

/external/compiler-rt/lib/builtins/
Ddivsf3.c93 uint32_t correction; in ARM_EABI_FNALIAS() local
94 correction = -((uint64_t)reciprocal * q31b >> 32); in ARM_EABI_FNALIAS()
95 reciprocal = (uint64_t)reciprocal * correction >> 31; in ARM_EABI_FNALIAS()
96 correction = -((uint64_t)reciprocal * q31b >> 32); in ARM_EABI_FNALIAS()
97 reciprocal = (uint64_t)reciprocal * correction >> 31; in ARM_EABI_FNALIAS()
98 correction = -((uint64_t)reciprocal * q31b >> 32); in ARM_EABI_FNALIAS()
99 reciprocal = (uint64_t)reciprocal * correction >> 31; in ARM_EABI_FNALIAS()
Ddivdf3.c110 uint64_t correction, reciprocal; in ARM_EABI_FNALIAS() local
111 correction = -((uint64_t)recip32*q31b + ((uint64_t)recip32*q63blo >> 32)); in ARM_EABI_FNALIAS()
112 uint32_t cHi = correction >> 32; in ARM_EABI_FNALIAS()
113 uint32_t cLo = correction; in ARM_EABI_FNALIAS()
Ddivtf3.c112 rep_t correction, reciprocal; in __divtf3() local
120 correction = -(r64q63 + (r64q127 >> 64)); in __divtf3()
122 uint64_t cHi = correction >> 64; in __divtf3()
123 uint64_t cLo = correction; in __divtf3()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DMean.java163 double correction = 0; in evaluate() local
165 correction += values[i] - xbar; in evaluate()
167 return xbar + (correction/sampleSize); in evaluate()
211 double correction = 0; in evaluate() local
213 correction += weights[i] * (values[i] - xbarw); in evaluate()
215 return xbarw + (correction/sumw); in evaluate()
/external/webp/src/dsp/
Dlossless_enc_mips32.c29 uint32_t log_cnt, y, correction; in FastSLog2Slow_MIPS32() local
55 correction = (23 * (v & (y - 1))) >> 4; in FastSLog2Slow_MIPS32()
56 return v_f * (kLog2Table[temp] + log_cnt) + correction; in FastSLog2Slow_MIPS32()
86 const uint32_t correction = (23 * (v & (y - 1))) >> 4; in FastLog2Slow_MIPS32() local
87 log_2 += (double)correction / v; in FastLog2Slow_MIPS32()
/external/smali/smalidea/src/test/java/org/jf/smalidea/findUsages/
DUsageTypeTest.java64 int correction = 0; in getRefIndexes() local
68 refIndexes.put(refId, m.start() - correction); in getRefIndexes()
69 correction += m.end() - m.start(); in getRefIndexes()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DGrego.java142 int correction = 0; in dayToFields() local
145 correction = isLeap ? 1 : 2; in dayToFields()
147 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in dayToFields()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DGrego.java140 int correction = 0; in dayToFields() local
143 correction = isLeap ? 1 : 2; in dayToFields()
145 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in dayToFields()
/external/mesa3d/src/mesa/tnl/
Dt_vb_lighttmp.h114 GLfloat correction; in TAG() local
169 correction = -1; in TAG()
180 correction = 1; in TAG()
206 n_dot_h = correction * DOT3(normal, h); in TAG()
293 GLfloat correction; in TAG() local
348 correction = -1; in TAG()
359 correction = 1; in TAG()
386 n_dot_h = correction * DOT3(normal, h); in TAG()
/external/icu/icu4c/source/i18n/
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()
/external/icu/icu4c/source/data/unidata/
DNormalizationCorrections.txt22 # stability, the correction is entered in this data file,
38 # Field 3: Version of Unicode for which the correction was
41 # the correction
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DNormalizationCorrections.txt22 # stability, the correction is entered in this data file,
38 # Field 3: Version of Unicode for which the correction was
41 # the correction
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
DNormalizationCorrections.txt22 # stability, the correction is entered in this data file,
38 # Field 3: Version of Unicode for which the correction was
41 # the correction
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
DRiddersSolver.java203 final double correction = (MathUtils.sign(y2) * MathUtils.sign(y3)) * in solve() local
205 final double x = x3 - correction; // correction != 0 in solve()
221 if (correction > 0.0) { // x1 < x < x3 in solve()
/external/libopus/celt/
Dentcode.c70 static const unsigned correction[8] = in ec_tell_frac() local
81 b += r>correction[b]; in ec_tell_frac()
/external/lz4/lib/
Dlz4hc.c558 int correction; in LZ4HC_compress_hashChain() local
562 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_hashChain()
563 if (correction > 0) { in LZ4HC_compress_hashChain()
564 start2 += correction; in LZ4HC_compress_hashChain()
565 ref2 += correction; in LZ4HC_compress_hashChain()
566 ml2 -= correction; in LZ4HC_compress_hashChain()
594 int correction = (int)(ip+ml - start2); in LZ4HC_compress_hashChain() local
595 start2 += correction; in LZ4HC_compress_hashChain()
596 ref2 += correction; in LZ4HC_compress_hashChain()
597 ml2 -= correction; in LZ4HC_compress_hashChain()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DChangeTimeScaleTrack.java171 long correction = syncSampleTimes[ssIndex] - (summedDurations + x); in adjustTts() local
172 …at("Sample %d %d / %d - correct by %d", i, summedDurations, syncSampleTimes[ssIndex], correction)); in adjustTts()
173 x += correction; in adjustTts()
/external/u-boot/doc/
DREADME.AX2524 - Protection scheme: parity-checking or error-checking-and-correction (ECC)
25 - Automatic hardware error correction
/external/webrtc/webrtc/modules/audio_coding/neteq/
Ddelay_manager.cc206 int correction = flip_sign * std::min(abs(vector_sum), (*it) >> 4); in UpdateHistogram() local
207 *it += correction; in UpdateHistogram()
208 vector_sum += correction; in UpdateHistogram()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DGregorianCalendar.java785 int correction = 0; in handleComputeFields() local
788 correction = isLeap ? 1 : 2; in handleComputeFields()
790 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DGregorianCalendar.java760 int correction = 0; in handleComputeFields() local
763 correction = isLeap ? 1 : 2; in handleComputeFields()
765 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/external/libxcam/
DChangeLog6 - enable lens shading correction based on fisheye image.
62 * enable geometry correction.
197 - bayer format features, black level correction, defect pixel
198 correction, whitebalance, 3a statistics calculation,
199 demosaic, gamma correction, HDR(high dynamic range)
201 temporal NR, macc, color correction
DREADME.md34 - Gamma correction, MACC, color space, demosaicing, simple bilateral
37 - Auto whitebalance, auto exposure, auto focus, black level correction,
38 color correction, 3a-statistics calculation.
/external/harfbuzz_ng/src/
Dhb-ot-shape-fallback.cc290 unsigned int correction = -pos.y_offset / 2; in position_mark() local
291 base_extents.y_bearing += correction; in position_mark()
292 base_extents.height -= correction; in position_mark()
293 pos.y_offset += correction; in position_mark()
/external/fec/
DMETADATA2 description: "This library package provides several forward error correction (FEC) decoders and acc…

1234567