HomeSort by relevance Sort by last modified time
    Searched refs:correction (Results 1 - 25 of 49) sorted by null

1 2

  /cts/hostsidetests/sustainedperf/shadertoy_android/jni/
shaders.cpp 147 // output the final color with sqrt for "gamma correction"
  /external/compiler-rt/lib/builtins/
divsf3.c 93 uint32_t correction; local
94 correction = -((uint64_t)reciprocal * q31b >> 32);
95 reciprocal = (uint64_t)reciprocal * correction >> 31;
96 correction = -((uint64_t)reciprocal * q31b >> 32);
97 reciprocal = (uint64_t)reciprocal * correction >> 31;
98 correction = -((uint64_t)reciprocal * q31b >> 32);
99 reciprocal = (uint64_t)reciprocal * correction >> 31;
divdf3.c 110 uint64_t correction, reciprocal; local
111 correction = -((uint64_t)recip32*q31b + ((uint64_t)recip32*q63blo >> 32));
112 uint32_t cHi = correction >> 32;
113 uint32_t cLo = correction;
divtf3.c 112 rep_t correction, reciprocal; local
120 correction = -(r64q63 + (r64q127 >> 64));
122 uint64_t cHi = correction >> 64;
123 uint64_t cLo = correction;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Mean.java 162 // Compute correction factor in second pass
163 double correction = 0; local
165 correction += values[i] - xbar;
167 return xbar + (correction/sampleSize);
181 * estimate and the correction factor.</p>
210 // Compute correction factor in second pass
211 double correction = 0; local
213 correction += weights[i] * (values[i] - xbarw);
215 return xbarw + (correction/sumw);
227 * estimate and the correction factor.</p
    [all...]
  /build/make/core/combo/
fdo.mk 33 -DANDROID_FDO -fprofile-correction -Wcoverage-mismatch -Wno-error
  /external/smali/smalidea/src/test/java/org/jf/smalidea/findUsages/
UsageTypeTest.java 64 int correction = 0; local
68 refIndexes.put(refId, m.start() - correction);
69 correction += m.end() - m.start();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
RiddersSolver.java 203 final double correction = (MathUtils.sign(y2) * MathUtils.sign(y3)) * local
205 final double x = x3 - correction; // correction != 0
221 if (correction > 0.0) { // x1 < x < x3
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Grego.java 142 int correction = 0; local
145 correction = isLeap ? 1 : 2;
147 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month
  /external/icu/icu4c/source/i18n/
gregoimp.cpp 127 int32_t correction = 0; local
130 correction = isLeap ? 1 : 2;
132 month = (12 * (doy + correction) + 6) / 367; // zero-based month
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Grego.java 140 int correction = 0; local
143 correction = isLeap ? 1 : 2;
145 int month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month
  /external/libxcam/
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/webp/src/dsp/
lossless_enc_mips32.c 29 uint32_t log_cnt, y, correction; local
50 // The correction factor: log(1 + d) ~ d; for very small d values, so
55 correction = (23 * (v & (y - 1))) >> 4;
56 return v_f * (kLog2Table[temp] + log_cnt) + correction;
83 // Since the division is still expensive, add this correction factor only
86 const uint32_t correction = (23 * (v & (y - 1))) >> 4; local
87 log_2 += (double)correction / v;
lossless_enc.c 334 int correction = 0; local
345 // The correction factor: log(1 + d) ~ d; for very small d values, so
348 correction = (23 * (orig_v & (y - 1))) >> 4;
349 return v_f * (kLog2Table[v] + log_cnt) + correction;
369 // Since the division is still expensive, add this correction factor only
371 const int correction = (23 * (orig_v & (y - 1))) >> 4; local
372 log_2 += (double)correction / orig_v;
    [all...]
  /external/libopus/celt/
entcode.c 70 static const unsigned correction[8] = local
81 b += r>correction[b];
  /external/mesa3d/src/mesa/tnl/
t_vb_lighttmp.h 114 GLfloat correction; local
169 correction = -1;
180 correction = 1;
206 n_dot_h = correction * DOT3(normal, h);
293 GLfloat correction; local
348 correction = -1;
359 correction = 1;
386 n_dot_h = correction * DOT3(normal, h);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
ChangeTimeScaleTrack.java 171 long correction = syncSampleTimes[ssIndex] - (summedDurations + x); local
172 LOG.finest(String.format("Sample %d %d / %d - correct by %d", i, summedDurations, syncSampleTimes[ssIndex], correction));
173 x += correction;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
delay_manager.cc 174 // longer sum up to 1 (in Q30) after the update. To correct this, a correction
206 int correction = flip_sign * std::min(abs(vector_sum), (*it) >> 4);
207 *it += correction;
208 vector_sum += correction;
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GregorianCalendar.java 760 int correction = 0; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
GregorianCalendar.java 785 int correction = 0; local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-shape-fallback.cc 290 unsigned int correction = -pos.y_offset / 2; local
291 base_extents.y_bearing += correction;
292 base_extents.height -= correction;
293 pos.y_offset += correction;
  /external/lz4/lib/
lz4hc.c 558 int correction; local
562 correction = new_ml - (int)(start2 - ip);
563 if (correction > 0) {
564 start2 += correction;
565 ref2 += correction;
566 ml2 -= correction;
594 int correction = (int)(ip+ml - start2); local
595 start2 += correction;
596 ref2 += correction;
597 ml2 -= correction;
630 int correction; local
    [all...]
  /external/u-boot/drivers/rtc/
Kconfig 38 calendar with automatic leap year correction, 2-byte battery backed SRAM,
  /external/u-boot/common/
dlmalloc.c 1070 INTERNAL_SIZE_T correction; \/* bytes for 2nd sbrk call *\/ local
    [all...]
  /external/webp/src/utils/
quant_levels_dec_utils.c 137 const int16_t* const correction = p->correction_; local
146 const int c = (v << DFIX) + correction[average[x] - (v << LFIX)];
158 // Initialize correction table
161 // The correction curve is:
251 // correction table

Completed in 684 milliseconds

1 2