Searched refs:correction (Results 1 - 25 of 35) sorted by relevance

12

/external/compiler-rt/lib/builtins/
H A Ddivsf3.c93 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;
H A Ddivdf3.c110 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;
H A Ddivtf3.c112 rep_t correction, reciprocal; local
120 correction = -(r64q63 + (r64q127 >> 64));
122 uint64_t cHi = correction >> 64;
123 uint64_t cLo = correction;
/external/chromium_org/courgette/
H A Densemble_apply.cc39 SourceStream* correction,
46 SourceStream* correction,
53 SourceStream* correction,
58 SourceStream* correction,
191 SourceStream* correction,
194 correction,
224 SourceStream* correction,
227 correction,
268 SourceStream* correction,
270 Status delta_status = ApplySimpleDelta(original, correction,
189 SubpatchTransformParameters( SinkStreamSet* predicted_parameters, SourceStream* correction, SourceStreamSet* corrected_parameters) argument
222 SubpatchTransformedElements( SinkStreamSet* predicted_elements, SourceStream* correction, SourceStreamSet* corrected_elements) argument
266 SubpatchFinalOutput( SourceStream* original, SourceStream* correction, SinkStream* corrected_ensemble) argument
282 SubpatchStreamSets( SinkStreamSet* predicted_items, SourceStream* correction, SourceStreamSet* corrected_items, SinkStream* corrected_items_storage) argument
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless_mips32.c32 uint32_t log_cnt, y, correction; local
53 // The correction factor: log(1 + d) ~ d; for very small d values, so
58 correction = (23 * (v & (y - 1))) >> 4;
59 return v_f * (kLog2Table[temp] + log_cnt) + correction;
86 // Since the division is still expensive, add this correction factor only
89 const uint32_t correction = (23 * (v & (y - 1))) >> 4; local
90 log_2 += (double)correction / v;
H A Dlossless.c341 int correction = 0; local
352 // The correction factor: log(1 + d) ~ d; for very small d values, so
355 correction = (23 * (orig_v & (y - 1))) >> 4;
356 return v_f * (kLog2Table[v] + log_cnt) + correction;
376 // Since the division is still expensive, add this correction factor only
378 const int correction = (23 * (orig_v & (y - 1))) >> 4; local
379 log_2 += (double)correction / orig_v;
/external/webp/src/dsp/
H A Dlossless_mips32.c32 uint32_t log_cnt, y, correction; local
53 // The correction factor: log(1 + d) ~ d; for very small d values, so
58 correction = (23 * (v & (y - 1))) >> 4;
59 return v_f * (kLog2Table[temp] + log_cnt) + correction;
86 // Since the division is still expensive, add this correction factor only
89 const uint32_t correction = (23 * (v & (y - 1))) >> 4; local
90 log_2 += (double)correction / v;
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/app_launcher/
H A Dpopup.js96 var correction = window.innerWidth - document.documentElement.clientWidth;
98 $('spacer_dummy').style.width = width + correction + 'px';
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_lighttmp.h112 GLfloat correction; local
167 correction = -1;
178 correction = 1;
204 n_dot_h = correction * DOT3(normal, h);
289 GLfloat correction; local
345 correction = -1;
356 correction = 1;
383 n_dot_h = correction * DOT3(normal, h);
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_lighttmp.h112 GLfloat correction; local
167 correction = -1;
178 correction = 1;
204 n_dot_h = correction * DOT3(normal, h);
289 GLfloat correction; local
345 correction = -1;
356 correction = 1;
383 n_dot_h = correction * DOT3(normal, h);
/external/chromium_org/chrome/browser/spellchecker/
H A Dfeedback_sender.h75 // misspelling identified by |hash| to string |correction|, which is not in
77 void ManuallyCorrected(uint32 hash, const base::string16& correction);
H A Dfeedback_sender.cc233 const base::string16& correction) {
240 misspelling->action.value = correction;
232 ManuallyCorrected(uint32 hash, const base::string16& correction) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Ddelay_manager.cc174 // 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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DChangeTimeScaleTrack.java171 long correction = syncSampleTimes[ssIndex] - (summedDurations + x);
172 LOG.finest(String.format("Sample %d %d / %d - correct by %d", i, summedDurations, syncSampleTimes[ssIndex], correction));
173 x += correction;
/external/chromium_org/third_party/icu/source/i18n/
H A Dgregoimp.cpp124 int32_t correction = 0; local
127 correction = isLeap ? 1 : 2;
129 month = (12 * (doy + correction) + 6) / 367; // zero-based month
H A Dgregocal.cpp404 int32_t correction = 0; local
407 correction = isLeap ? 1 : 2;
409 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month
/external/icu/icu4c/source/i18n/
H A Dgregoimp.cpp124 int32_t correction = 0; local
127 correction = isLeap ? 1 : 2;
129 month = (12 * (doy + correction) + 6) / 367; // zero-based month
H A Dgregocal.cpp404 int32_t correction = 0; local
407 correction = isLeap ? 1 : 2;
409 month = (12 * (dayOfYear + correction) + 6) / 367; // zero-based month
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-fallback.cc289 unsigned int correction = -pos.y_offset / 2; local
290 base_extents.y_bearing += correction;
291 base_extents.height -= correction;
292 pos.y_offset += correction;
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-fallback.cc289 unsigned int correction = -pos.y_offset / 2; local
290 base_extents.y_bearing += correction;
291 base_extents.height -= correction;
292 pos.y_offset += correction;
/external/chromium_org/third_party/libwebp/utils/
H A Dquant_levels_dec.c135 const int16_t* const correction = p->correction_; local
144 const int c = (v << DFIX) + correction[average[x] - (v << LFIX)];
156 // Initialize correction table
159 // The correction curve is:
245 // correction table
/external/webp/src/utils/
H A Dquant_levels_dec.c135 const int16_t* const correction = p->correction_; local
144 const int c = (v << DFIX) + correction[average[x] - (v << LFIX)];
156 // Initialize correction table
159 // The correction curve is:
245 // correction table
/external/chromium_org/chrome/renderer/net/
H A Dnet_error_helper_core.cc128 // Sanitizes and formats a URL for upload to the error correction service.
134 // Notify navigation correction service of the url truncation by sending of
148 // Don't use the correction service for HTTPS (for privacy reasons).
203 // If URL correction information should be retrieved remotely for a main frame
205 // |correction_request_body| to be the body for the correction request.
225 const NavigationCorrection& correction) {
235 params->SetString("clickedUrlCorrection", correction.url_correction);
236 params->SetString("clickType", correction.click_type);
237 params->SetString("clickData", correction.click_data);
395 // Navigation correction servic
221 CreateClickTrackingUrlRequestBody( const blink::WebURLError& error, const NetErrorHelperCore::NavigationCorrectionParams& correction_params, const NavigationCorrectionResponse& response, const NavigationCorrection& correction) argument
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dmqc.c470 OPJ_UINT32 correction = 1; local
482 return correction;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemNumber.java1651 int lookupIndex = 1; // start off with anything other than zero to make correction work
1669 // J, lookupIndex is zero. We now compute a correction number of 9 (radix-1).
1670 // In the following line, we'll compute (val+correction) % radix, which is,
1674 // it can represent either 10 or zero). In summary, the correction value of
1677 long correction = 0;
1683 // most of the correction calculation is explained above, the reason for the
1686 correction =
1687 ((lookupIndex == 0) || (correction != 0 && lookupIndex == radix - 1))
1691 lookupIndex = (int)(val + correction) % radix;
1733 int lookupIndex = 1; // start off with anything other than zero to make correction wor
[all...]

Completed in 1192 milliseconds

12