HomeSort by relevance Sort by last modified time
    Searched full:approx (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webrtc/webrtc/common_audio/signal_processing/
division_operations.c 102 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 >> 15)) << 1
    [all...]
  /external/v8/src/crankshaft/
hydrogen-load-elimination.cc 169 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 = approx->next_
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/llvm/test/CodeGen/NVPTX/
refl1.ll 15 declare float @llvm.nvvm.sin.approx.ftz.f(float) #1
18 declare float @llvm.nvvm.cos.approx.ftz.f(float) #1
21 declare float @llvm.nvvm.div.approx.ftz.f(float, float) #1
27 %0 = tail call float @llvm.nvvm.sin.approx.ftz.f(float %a)
28 %1 = tail call float @llvm.nvvm.cos.approx.ftz.f(float %a)
29 %2 = tail call float @llvm.nvvm.div.approx.ftz.f(float %0, float %1)
div-ri.ll 4 ; CHECK: div.approx.f32
inline-asm.ll 6 ; CHECK: ex2.approx.ftz.f32 %f{{[0-9]+}}, %f{{[0-9]+}}
7 %0 = call float asm "ex2.approx.ftz.f32 $0, $1;", "=f,f"(float %x)
fast-math.ll 17 ; CHECK: sqrt.approx.f32
18 ; CHECK: div.approx.f32
rsqrt.ll 8 ; CHECK: rsqrt.approx.f32
  /external/kernel-headers/original/uapi/linux/nfsd/
stats.h 14 /* thread usage wraps very million seconds (approx one fortnight) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/nfsd/
stats.h 14 /* thread usage wraps very million seconds (approx one fortnight) */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/nfsd/
stats.h 14 /* thread usage wraps very million seconds (approx one fortnight) */
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Fisheye.java 31 private final boolean approx; field in class:Fisheye
37 public Fisheye(boolean approx, boolean relaxed) {
38 this.approx = approx;
75 if (approx) {
99 if (approx) {
122 if (approx) {
Vignette.java 31 private final boolean approx; field in class:Vignette
39 public Vignette(boolean approx, boolean relaxed) {
40 this.approx = approx;
97 if (approx) {
121 if (approx) {
134 if (approx) {
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Fisheye.java 28 private final boolean approx; field in class:Fisheye
34 public Fisheye(boolean approx, boolean relaxed) {
35 this.approx = approx;
77 if (approx) {
101 if (approx) {
124 if (approx) {
Vignette.java 27 private final boolean approx; field in class:Vignette
35 public Vignette(boolean approx, boolean relaxed) {
36 this.approx = approx;
99 if (approx) {
123 if (approx) {
136 if (approx) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Fisheye.java 31 private final boolean approx; field in class:Fisheye
37 public Fisheye(boolean approx, boolean relaxed) {
38 this.approx = approx;
80 if (approx) {
104 if (approx) {
127 if (approx) {
Vignette.java 27 private final boolean approx; field in class:Vignette
35 public Vignette(boolean approx, boolean relaxed) {
36 this.approx = approx;
99 if (approx) {
123 if (approx) {
136 if (approx) {
  /external/opencv3/samples/cpp/
squares.cpp 89 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/
squares.cpp 75 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);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
oper_32b.c 188 * First approximation: approx = 1 / denom_hi *
189 * 1/L_denom = approx * (2.0 - L_denom * approx ) *
197 Word16 approx, hi, lo, n_hi, n_lo; local
202 approx = div_s ((Word16) 0x3fff, denom_hi);
204 /* 1/L_denom = approx * (2.0 - L_denom * approx) */
206 L_32 = Mpy_32_16 (denom_hi, denom_lo, approx);
212 L_32 = Mpy_32_16 (hi, lo, approx);
  /external/v8/src/js/
math.js 268 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 = NEWTON_ITERATION_CBRT(x, approx)
    [all...]
  /system/core/libutils/tests/
Looper_test.cpp 121 << "elapsed time should approx. equal timeout";
134 << "elapsed time should approx. zero because wake() was called before waiting";
148 << "elapsed time should approx. equal wake delay";
159 << "elapsed time should be approx. zero";
175 << "elapsed time should be approx. zero";
194 << "elapsed time should be approx. zero";
216 << "elapsed time should approx. equal timeout";
237 << "elapsed time should be approx. zero";
263 << "elapsed time should approx. equal signal delay";
289 << "elapsed time should approx. equal timeout because FD was no longer registered"
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
oper_32b.c 174 * First approximation: approx = 1 / denom_hi *
175 * 1/L_denom = approx * (2.0 - L_denom * approx ) *
183 Word16 approx; local
187 approx = div_s ((Word16) 0x3fff, denom >> 16);
189 /* 1/L_denom = approx * (2.0 - L_denom * approx) */
191 L_32 = L_mpy_ls (denom, approx);
195 L_32 = L_mpy_ls (L_32, approx);
  /external/valgrind/VEX/orig_ppc32/
date.orig 1 ==== BB 0 _start(0x254804D4) approx BBs exec'd 0 ====
34 ==== BB 1 _dl_start(0x25471A64) approx BBs exec'd 0 ====
168 ==== BB 2 (0x25471AA8) approx BBs exec'd 0 ====
193 ==== BB 3 (0x25471AB4) approx BBs exec'd 0 ====
204 ==== BB 4 (0x25471ABC) approx BBs exec'd 0 ====
226 ==== BB 5 (0x25497000) approx BBs exec'd 0 ====
238 ==== BB 6 (0x25471AC8) approx BBs exec'd 0 ====
343 ==== BB 7 (0x25471B08) approx BBs exec'd 0 ====
430 ==== BB 8 (0x25471B5C) approx BBs exec'd 0 ====
461 ==== BB 9 (0x25471B3C) approx BBs exec'd 0 ===
    [all...]
return0.orig 1 ==== BB 0 _start(0x254804D4) approx BBs exec'd 0 ====
34 ==== BB 1 _dl_start(0x25471A64) approx BBs exec'd 0 ====
168 ==== BB 2 (0x25471AA8) approx BBs exec'd 0 ====
193 ==== BB 3 (0x25471AB4) approx BBs exec'd 0 ====
204 ==== BB 4 (0x25471ABC) approx BBs exec'd 0 ====
226 ==== BB 5 (0x25497000) approx BBs exec'd 0 ====
238 ==== BB 6 (0x25471AC8) approx BBs exec'd 0 ====
343 ==== BB 7 (0x25471B08) approx BBs exec'd 0 ====
430 ==== BB 8 (0x25471B5C) approx BBs exec'd 0 ====
461 ==== BB 9 (0x25471B3C) approx BBs exec'd 0 ===
    [all...]
  /external/opencv3/doc/tutorials/features2d/trackingmotion/harris_detector/
harris_detector.markdown 63 \f[E(u,v) \approx \sum _{x,y}[ I(x,y) + u I_{x} + vI_{y} - I(x,y)]^{2}\f]
67 \f[E(u,v) \approx \sum _{x,y} u^{2}I_{x}^{2} + 2uvI_{x}I_{y} + v^{2}I_{y}^{2}\f]
71 \f[E(u,v) \approx \begin{bmatrix}
98 \f[E(u,v) \approx \begin{bmatrix}

Completed in 986 milliseconds

1 2 3 4 5 6 7 8 9