/external/compiler-rt/lib/builtins/ |
D | divsf3.c | 93 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()
|
D | divdf3.c | 110 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()
|
D | divtf3.c | 112 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/ |
D | Mean.java | 163 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/ |
D | lossless_enc_mips32.c | 29 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/ |
D | UsageTypeTest.java | 64 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/ |
D | Grego.java | 142 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/ |
D | Grego.java | 140 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/ |
D | t_vb_lighttmp.h | 114 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/ |
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()
|
/external/icu/icu4c/source/data/unidata/ |
D | NormalizationCorrections.txt | 22 # 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/ |
D | NormalizationCorrections.txt | 22 # 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/ |
D | NormalizationCorrections.txt | 22 # 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/ |
D | RiddersSolver.java | 203 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/ |
D | entcode.c | 70 static const unsigned correction[8] = in ec_tell_frac() local 81 b += r>correction[b]; in ec_tell_frac()
|
/external/lz4/lib/ |
D | lz4hc.c | 558 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/ |
D | ChangeTimeScaleTrack.java | 171 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/ |
D | README.AX25 | 24 - Protection scheme: parity-checking or error-checking-and-correction (ECC) 25 - Automatic hardware error correction
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | delay_manager.cc | 206 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/ |
D | GregorianCalendar.java | 785 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/ |
D | GregorianCalendar.java | 760 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/ |
D | ChangeLog | 6 - 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
|
D | README.md | 34 - 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/ |
D | hb-ot-shape-fallback.cc | 290 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/ |
D | METADATA | 2 description: "This library package provides several forward error correction (FEC) decoders and acc…
|