Home
last modified time | relevance | path

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

123456

/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/lz4/lib/
Dlz4hc.c418 int correction; in LZ4HC_compress_generic() local
422 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_generic()
423 if (correction > 0) in LZ4HC_compress_generic()
425 start2 += correction; in LZ4HC_compress_generic()
426 ref2 += correction; in LZ4HC_compress_generic()
427 ml2 -= correction; in LZ4HC_compress_generic()
453 int correction = (int)(ip+ml - start2); in LZ4HC_compress_generic() local
454 start2 += correction; in LZ4HC_compress_generic()
455 ref2 += correction; in LZ4HC_compress_generic()
456 ml2 -= correction; in LZ4HC_compress_generic()
[all …]
/external/webp/src/dsp/
Dlossless_enc_mips32.c28 uint32_t log_cnt, y, correction; in FastSLog2Slow() local
54 correction = (23 * (v & (y - 1))) >> 4; in FastSLog2Slow()
55 return v_f * (kLog2Table[temp] + log_cnt) + correction; in FastSLog2Slow()
85 const uint32_t correction = (23 * (v & (y - 1))) >> 4; in FastLog2Slow() local
86 log_2 += (double)correction / v; in FastLog2Slow()
Dlossless_enc.c337 int correction = 0; in FastSLog2Slow() local
351 correction = (23 * (orig_v & (y - 1))) >> 4; in FastSLog2Slow()
352 return v_f * (kLog2Table[v] + log_cnt) + correction; in FastSLog2Slow()
374 const int correction = (23 * (orig_v & (y - 1))) >> 4; in FastLog2Slow() local
375 log_2 += (double)correction / orig_v; in FastLog2Slow()
/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/icu4j/main/classes/core/src/com/ibm/icu/impl/
DGrego.java138 int correction = 0; in dayToFields() local
141 correction = isLeap ? 1 : 2; in dayToFields()
143 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in dayToFields()
/external/icu/android_icu4j/src/main/java/android/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.h112 GLfloat correction; in TAG() local
167 correction = -1; in TAG()
178 correction = 1; in TAG()
204 n_dot_h = correction * DOT3(normal, h); in TAG()
289 GLfloat correction; in TAG() local
345 correction = -1; in TAG()
356 correction = 1; in TAG()
383 n_dot_h = correction * DOT3(normal, h); in TAG()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DNormalizationCorrections.txt20 # stability, the correction is entered in this data file,
36 # Field 3: Version of Unicode for which the correction was
39 # the correction
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
DNormalizationCorrections.txt20 # stability, the correction is entered in this data file,
36 # Field 3: Version of Unicode for which the correction was
39 # the correction
/external/icu/icu4c/source/data/unidata/
DNormalizationCorrections.txt20 # stability, the correction is entered in this data file,
36 # Field 3: Version of Unicode for which the correction was
39 # 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/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/mesa3d/docs/
DREADME.CYGWIN140 Gamma correction:
142 and displayed intensities, there is a gamma correction feature in
144 correction in hardware (man gamma) so you won't need to use Mesa's
149 Gamma correction is controlled with the MESA_GAMMA environment
155 gamma correction. Examples using csh:
168 Mesa implements gamma correction with a lookup table which translates
170 small performance penalty. Gamma correction only works in RGB mode.
175 For more information about gamma correction see:
252 MESA_GAMMA - gamma correction coefficients (X only)
/external/valgrind/
DREADME_DEVELOPERS_processes18 * Minor/correction release production: TBD
84 Minor/correction release:
86 Describe here how to do changes and bug fixed in a minor (correction) release
95 just after the correction release is produced ?
/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/android_icu4j/src/main/java/android/icu/util/
DGregorianCalendar.java758 int correction = 0; in handleComputeFields() local
761 correction = isLeap ? 1 : 2; in handleComputeFields()
763 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DGregorianCalendar.java783 int correction = 0; in handleComputeFields() local
786 correction = isLeap ? 1 : 2; in handleComputeFields()
788 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month in handleComputeFields()
/external/harfbuzz_ng/src/
Dhb-ot-shape-fallback.cc291 unsigned int correction = -pos.y_offset / 2; in position_mark() local
292 base_extents.y_bearing += correction; in position_mark()
293 base_extents.height -= correction; in position_mark()
294 pos.y_offset += correction; in position_mark()
/external/icu/icu4c/source/i18n/
Dgregoimp.cpp124 int32_t correction = 0; in dayToFields() local
127 correction = isLeap ? 1 : 2; in dayToFields()
129 month = (12 * (doy + correction) + 6) / 367; // zero-based month in dayToFields()
/external/clang/test/SemaObjC/
Dparameterized_classes.m226 // Typo correction: protocol bias.
229 // Typo correction: type bias.
233 // Typo correction: bias set by correction itself to a protocol.
236 // Typo correction: bias set by correction itself to a type.
/external/webp/src/utils/
Dquant_levels_dec.c135 const int16_t* const correction = p->correction_; in ApplyFilter() local
144 const int c = (v << DFIX) + correction[average[x] - (v << LFIX)]; in ApplyFilter()

123456