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

/external/webrtc/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 = (den_hi * approx << 1) + ((den_low * approx >> 15) << 1);
110 // tmpW32 = den * approx
112 tmpW32 = (int32_t)0x7fffffffL - tmpW32; // result in Q30 (tmpW32 = 2.0-(den*approx))
119 tmpW32 = (tmp_hi * approx + (tmp_low * approx >> 1
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-load-elimination.cc170 HFieldApproximation* approx = fields_[i]; local
172 while (approx != NULL) {
174 HFieldApproximation* other = that->Find(approx->object_, i);
175 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
178 prev->next_ = approx->next_;
180 fields_[i] = approx->next_;
182 approx = approx->next_;
185 prev = approx;
186 approx
212 HFieldApproximation* approx = FindOrCreate(object, field); local
252 HFieldApproximation* approx = FindOrCreate(object, field); local
310 HFieldApproximation* approx = fields_[field]; local
323 HFieldApproximation* approx = fields_[field]; local
385 HFieldApproximation* approx = fields_[field]; local
[all...]
/external/pdfium/third_party/libopenjpeg20/
H A Djp2.h168 OPJ_UINT32 approx; member in struct:opj_jp2
/external/mksh/src/
H A Dhistrap.c389 hist_get(const char *str, bool approx, bool allow_cur) argument
397 if (approx)
404 if (approx)
/external/sqlite/dist/orig/
H A Dsqlite3.c15118 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
108982 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15118 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
108982 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]

Completed in 1162 milliseconds