HomeSort by relevance Sort by last modified time
    Searched full:sqr (Results 76 - 100 of 181) sorted by null

1 2 34 5 6 7 8

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
eval.pass.cpp 25 sqr(T x) function
52 double d2 = sqr(d);
91 double d2 = sqr(d);
130 double d2 = sqr(d);
eval_param.pass.cpp 25 sqr(T x) function
54 double d2 = sqr(d);
95 double d2 = sqr(d);
136 double d2 = sqr(d);
  /external/skia/src/effects/gradients/
SkTwoPointConicalGradient.cpp 78 static float sqr(float x) { return x * x; } function
90 fA = sqr(fDCenterX) + sqr(fDCenterY) - sqr(fDRadius);
91 fRadius2 = sqr(fRadius);
110 float C = sqr(fRelX) + sqr(fRelY) - fRec.fRadius2;
  /external/opencv3/modules/stitching/src/
exposure_compensate.cpp 114 Isum1 += std::sqrt(static_cast<double>(sqr(r1[x].x) + sqr(r1[x].y) + sqr(r1[x].z)));
115 Isum2 += std::sqrt(static_cast<double>(sqr(r2[x].x) + sqr(r2[x].y) + sqr(r2[x].z)));
  /external/opencv3/modules/cudalegacy/src/cuda/
NCVPixelOperations.hpp 308 return Tout(SQR(pix1.x - pix2.x));
314 return Tout(SQR(pix1.x - pix2.x) + SQR(pix1.y - pix2.y) + SQR(pix1.z - pix2.z));
320 return Tout(SQR(pix1.x - pix2.x) + SQR(pix1.y - pix2.y) + SQR(pix1.z - pix2.z) + SQR(pix1.w - pix2.w));
calib3d.cu 137 __device__ __forceinline__ float sqr(float x)
161 if (sqr(p.x - image_p.x) + sqr(p.y - image_p.y) < dist_threshold)
  /external/webrtc/webrtc/base/
callback.h.pump 38 // int sqr(int x) { return x * x; }
47 // my_callback = Callback1<int, int>(&sqr);
  /external/opencv3/modules/cudaarithm/src/
reductions.cpp 189 GpuMat sqr = getInputMat(_sqr, _stream);
191 CV_Assert( src.type() == CV_32SC1 && sqr.type() == CV_64FC1 );
209 nppSafeCall( nppiRectStdDev_32s32f_C1R(src.ptr<Npp32s>(), static_cast<int>(src.step), sqr.ptr<Npp64f>(), static_cast<int>(sqr.step),
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
eval.pass.cpp 27 sqr(T x) function
55 double d2 = sqr(d);
95 double d2 = sqr(d);
135 double d2 = sqr(d);
175 double d2 = sqr(d);
221 double d2 = sqr(d);
267 double d2 = sqr(d);
307 double d2 = sqr(d);
358 double d2 = sqr(d);
404 double d2 = sqr(d)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
eval.pass.cpp 25 sqr(T x) function
53 double d2 = sqr(d);
93 double d2 = sqr(d);
133 double d2 = sqr(d);
173 double d2 = sqr(d);
219 double d2 = sqr(d);
265 double d2 = sqr(d);
305 double d2 = sqr(d);
345 double d2 = sqr(d);
391 double d2 = sqr(d)
    [all...]
  /external/opencv3/modules/cudabgsegm/src/cuda/
mog2.cu 70 __device__ __forceinline__ float sqr(float val)
74 __device__ __forceinline__ float sqr(const float3& val)
78 __device__ __forceinline__ float sqr(const float4& val)
177 float dist2 = sqr(diff);
303 float denominator = sqr(mean);
316 if (sqr(dD) < c_Tb * gmm_variance(mode * frame.rows + y, x) * a * a)
mog.cu 70 __device__ __forceinline__ float sqr(float val)
74 __device__ __forceinline__ float sqr(const float3& val)
78 __device__ __forceinline__ float sqr(const float4& val)
143 if (sqr(diff) < varThreshold * sum(var))
225 if (sqr(diff) < varThreshold * sum(var))
  /external/opencv3/modules/cudaimgproc/src/
mssegmentation.cpp 205 inline int sqr(int x) function in namespace:__anon22312
213 return sqr(lhs[0] - rhs[0]) + sqr(lhs[1] - rhs[1]) + sqr(lhs[2] - rhs[2]);
219 return sqr(lhs[0] - rhs[0]) + sqr(lhs[1] - rhs[1]);
  /external/opencv3/modules/cudaimgproc/src/cuda/
bilateral_filter.cu 67 __device__ __forceinline__ float sqr(const float& a) { return a * a; }
102 float weight = ::exp(space2 * sigma_spatial2_inv_half + sqr(norm_l1(value - center)) * sigma_color2_inv_half);
118 float weight = ::exp(space2 * sigma_spatial2_inv_half + sqr(norm_l1(value - center)) * sigma_color2_inv_half);
  /external/opencv3/modules/videostab/src/
global_motion.cpp 101 d += std::sqrt(sqr(points[i].x) + sqr(points[i].y));
136 *rmse += sqr(points1[i].x - points0[i].x - M(0,2)) +
137 sqr(points1[i].y - points0[i].y - M(1,2));
216 *rmse += sqr(p1.x - M(0,0)*p0.x - M(0,1)*p0.y) +
217 sqr(p1.y - M(1,0)*p0.x - M(1,1)*p0.y);
270 *rmse += sqr(pt1.x - M(0,0)*pt0.x - M(0,1)*pt0.y - M(0,2)) +
271 sqr(pt1.y - M(1,0)*pt0.x - M(1,1)*pt0.y - M(1,2));
439 if (sqr(x - p1.x) + sqr(y - p1.y) < params.thresh * params.thresh
    [all...]
precomp.hpp 60 inline float sqr(float x) { return x * x; } function
inpainting.cpp 170 var += sqr(pixels[i].intens - mean);
295 float distColor = sqr(static_cast<float>(cp.x-cq.x))
296 + sqr(static_cast<float>(cp.y-cq.y))
297 + sqr(static_cast<float>(cp.z-cq.z));
532 && sqr(flowX_(y0,x0)) + sqr(flowY_(y0,x0)) < sqr(distThresh))
  /external/boringssl/src/crypto/bn/asm/
x86_64-gcc.c 96 #undef sqr macro
97 #define sqr(r0, r1, a) asm("mulq %2" : "=a"(r0), "=d"(r1) : "a"(a) : "cc"); macro
168 sqr(r[0], r[1], a[0]);
169 sqr(r[2], r[3], a[1]);
170 sqr(r[4], r[5], a[2]);
171 sqr(r[6], r[7], a[3]);
177 sqr(r[0], r[1], a[0]);
181 sqr(r[2], r[3], a[1]);
185 sqr(r[4], r[5], a[2]);
  /external/skia/resources/
slides_transitions.lua 38 function sqr(value) return value * value end function
41 local sigma = sqr(1 - alpha) * 20
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 1104 def sqr(x, wait=0.0): function
1111 self.assertEqual(papply(sqr, (5,)), sqr(5))
1112 self.assertEqual(papply(sqr, (), {'x':3}), sqr(x=3))
1116 self.assertEqual(pmap(sqr, range(10)), map(sqr, range(10)))
1117 self.assertEqual(pmap(sqr, range(100), chunksize=20),
1118 map(sqr, range(100)))
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 1104 def sqr(x, wait=0.0): function
1111 self.assertEqual(papply(sqr, (5,)), sqr(5))
1112 self.assertEqual(papply(sqr, (), {'x':3}), sqr(x=3))
1116 self.assertEqual(pmap(sqr, range(10)), map(sqr, range(10)))
1117 self.assertEqual(pmap(sqr, range(100), chunksize=20),
1118 map(sqr, range(100)))
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 1104 def sqr(x, wait=0.0): function
1111 self.assertEqual(papply(sqr, (5,)), sqr(5))
1112 self.assertEqual(papply(sqr, (), {'x':3}), sqr(x=3))
1116 self.assertEqual(pmap(sqr, range(10)), map(sqr, range(10)))
1117 self.assertEqual(pmap(sqr, range(100), chunksize=20),
1118 map(sqr, range(100)))
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 1104 def sqr(x, wait=0.0): function
1111 self.assertEqual(papply(sqr, (5,)), sqr(5))
1112 self.assertEqual(papply(sqr, (), {'x':3}), sqr(x=3))
1116 self.assertEqual(pmap(sqr, range(10)), map(sqr, range(10)))
1117 self.assertEqual(pmap(sqr, range(100), chunksize=20),
1118 map(sqr, range(100)))
1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
unary_func.hpp 69 CV_CUDEV_EXPR_UNARY_FUNC(sqr)
  /external/opencv3/modules/cudaarithm/src/cuda/
math.cu 110 /// sqr
129 void cv::cuda::sqr(InputArray _src, OutputArray _dst, Stream& stream)

Completed in 1075 milliseconds

1 2 34 5 6 7 8