Searched defs:approx (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Ddivision_operations.c102 int16_t approx, tmp_hi, tmp_low, num_hi, num_low; local
105 approx = (int16_t)WebRtcSpl_DivW32W16((int32_t)0x1FFFFFFF, den_hi);
108 // tmpW32 = 1/den = approx * (2.0 - den * approx) (in Q30)
109 tmpW32 = (WEBRTC_SPL_MUL_16_16(den_hi, approx) << 1)
110 + ((WEBRTC_SPL_MUL_16_16(den_low, approx) >> 15) << 1);
111 // tmpW32 = den * approx
113 tmpW32 = (int32_t)0x7fffffffL - tmpW32; // result in Q30 (tmpW32 = 2.0-(den*approx))
121 tmpW32 = ((WEBRTC_SPL_MUL_16_16(tmp_hi, approx) + (WEBRTC_SPL_MUL_16_16(tmp_low, approx)
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Ddivision_operations.c103 WebRtc_Word16 approx, tmp_hi, tmp_low, num_hi, num_low; local
106 approx = (WebRtc_Word16)WebRtcSpl_DivW32W16((WebRtc_Word32)0x1FFFFFFF, den_hi);
109 // tmpW32 = 1/den = approx * (2.0 - den * approx) (in Q30)
110 tmpW32 = (WEBRTC_SPL_MUL_16_16(den_hi, approx) << 1)
111 + ((WEBRTC_SPL_MUL_16_16(den_low, approx) >> 15) << 1);
112 // tmpW32 = den * approx
114 tmpW32 = (WebRtc_Word32)0x7fffffffL - tmpW32; // result in Q30 (tmpW32 = 2.0-(den*approx))
122 tmpW32 = ((WEBRTC_SPL_MUL_16_16(tmp_hi, approx) + (WEBRTC_SPL_MUL_16_16(tmp_low, approx)
[all...]
/external/chromium_org/v8/src/
H A Dmath.js302 macro NEWTON_ITERATION_CBRT(x, approx)
303 (1.0 / 3.0) * (x / (approx * approx) + 2 * approx);
308 var approx = %_ConstructDouble(approx_hi, 0); variable
309 approx = NEWTON_ITERATION_CBRT(x, approx);
310 approx = NEWTON_ITERATION_CBRT(x, approx);
311 approx
[all...]
H A Dhydrogen-load-elimination.cc168 HFieldApproximation* approx = fields_[i]; local
170 while (approx != NULL) {
172 HFieldApproximation* other = that->Find(approx->object_, i);
173 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
176 prev->next_ = approx->next_;
178 fields_[i] = approx->next_;
180 approx = approx->next_;
183 prev = approx;
184 approx
210 HFieldApproximation* approx = FindOrCreate(object, field); local
251 HFieldApproximation* approx = FindOrCreate(object, field); local
309 HFieldApproximation* approx = fields_[field]; local
322 HFieldApproximation* approx = fields_[field]; local
384 HFieldApproximation* approx = fields_[field]; local
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Djp2.h176 OPJ_UINT32 approx; member in struct:opj_jp2
/external/chromium_org/third_party/sqlite/src/src/
H A Dfunc.c1217 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
1242 if( (p->approx|p->overflow)==0 && sqlite3AddInt64(&p->iSum, v) ){
1247 p->approx = 1;
1257 }else if( p->approx ){
/external/mksh/src/
H A Dhistrap.c419 hist_get(const char *str, bool approx, bool allow_cur) argument
427 if (approx)
434 if (approx)
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9079 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
82916 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10391 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
93032 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10391 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
93052 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]

Completed in 791 milliseconds