Searched defs:approx (Results 1 - 10 of 10) 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/opencv3/samples/cpp/
H A Dsquares.cpp89 vector<Point> approx; local
96 approxPolyDP(Mat(contours[i]), approx, arcLength(Mat(contours[i]), true)*0.02, true); local
104 if( approx.size() == 4 &&
105 fabs(contourArea(Mat(approx))) > 1000 &&
106 isContourConvex(Mat(approx)) )
113 double cosine = fabs(angle(approx[j%4], approx[j-2], approx[j-1]));
121 squares.push_back(approx);
/external/opencv3/samples/tapi/
H A Dsquares.cpp75 vector<Point> approx; local
83 approxPolyDP(Mat(contours[i]), approx, arcLength(Mat(contours[i]), true)*0.02, true); local
91 if( approx.size() == 4 &&
92 fabs(contourArea(Mat(approx))) > 1000 &&
93 isContourConvex(Mat(approx)) )
100 double cosine = fabs(angle(approx[j%4], approx[j-2], approx[j-1]));
108 squares.push_back(approx);
/external/v8/src/js/
H A Dmath.js268 macro NEWTON_ITERATION_CBRT(x, approx)
269 (1.0 / 3.0) * (x / (approx * approx) + 2 * approx);
274 var approx = %_ConstructDouble(approx_hi | 0, 0); variable
275 approx = NEWTON_ITERATION_CBRT(x, approx);
276 approx = NEWTON_ITERATION_CBRT(x, approx);
277 approx
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-load-elimination.cc169 HFieldApproximation* approx = fields_[i]; local
171 while (approx != NULL) {
173 HFieldApproximation* other = that->Find(approx->object_, i);
174 if (other == NULL || !Equal(approx->last_value_, other->last_value_)) {
177 prev->next_ = approx->next_;
179 fields_[i] = approx->next_;
181 approx = approx->next_;
184 prev = approx;
185 approx
211 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.h176 OPJ_UINT32 approx; member in struct:opj_jp2
/external/mksh/src/
H A Dhistrap.c412 hist_get(const char *str, bool approx, bool allow_cur) argument
420 if (approx)
427 if (approx)
/external/opencv3/3rdparty/libjasper/
H A Djp2_cod.h179 uint_fast8_t approx; member in struct:__anon14736
/external/sqlite/dist/orig/
H A Dsqlite3.c11600 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
99972 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11600 ** (approx 10%) by avoiding numerous malloc/free requests while parsing
99990 u8 approx; /* True if non-integer value was input to the sum */ member in struct:SumCtx
[all...]

Completed in 2984 milliseconds