HomeSort by relevance Sort by last modified time
    Searched refs:norm (Results 1 - 25 of 347) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_glob.py 16 def norm(self, *parts): member in class:GlobTests
20 filename = self.norm(*parts)
38 os.symlink(self.norm('broken'), self.norm('sym1'))
39 os.symlink('broken', self.norm('sym2'))
40 os.symlink(os.path.join('a', 'bcd'), self.norm('sym3'))
66 eq(self.glob('a'), [self.norm('a')])
67 eq(self.glob('a', 'D'), [self.norm('a', 'D')])
68 eq(self.glob('aab'), [self.norm('aab')])
87 eq(self.glob('a*'), map(self.norm, ['a', 'aab', 'aaa'])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_glob.py 16 def norm(self, *parts): member in class:GlobTests
20 filename = self.norm(*parts)
38 os.symlink(self.norm('broken'), self.norm('sym1'))
39 os.symlink('broken', self.norm('sym2'))
40 os.symlink(os.path.join('a', 'bcd'), self.norm('sym3'))
66 eq(self.glob('a'), [self.norm('a')])
67 eq(self.glob('a', 'D'), [self.norm('a', 'D')])
68 eq(self.glob('aab'), [self.norm('aab')])
87 eq(self.glob('a*'), map(self.norm, ['a', 'aab', 'aaa'])
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/io
23 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/param_copy
27 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/eval
31 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/mi
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/io
23 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/param_copy
27 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/eval
31 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/mi
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/io
23 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/param_copy
27 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/eval
31 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/mi
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/io
23 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/param_copy
27 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/eval
31 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/mi
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/io
23 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/param_copy
27 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/eval
31 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/mi
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/io
23 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/param_copy
27 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/eval
31 test_name := numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/mi
    [all...]
  /external/libcxx/test/numerics/complex.number/cmplx.over/
norm.pass.cpp 14 // norm(T x);
26 static_assert((std::is_same<decltype(std::norm(x)), double>::value), "");
27 assert(std::norm(x) == norm(std::complex<double>(x, 0)));
34 static_assert((std::is_same<decltype(std::norm(x)), T>::value), "");
35 assert(std::norm(x) == norm(std::complex<T>(x, 0)));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/
norm.pass.cpp 14 // norm(T x);
26 static_assert((std::is_same<decltype(std::norm(x)), double>::value), "");
27 assert(std::norm(x) == norm(std::complex<double>(x, 0)));
34 static_assert((std::is_same<decltype(std::norm(x)), T>::value), "");
35 assert(std::norm(x) == norm(std::complex<T>(x, 0)));
  /external/eigen/doc/snippets/
PartialRedux_norm.cpp 3 cout << "Here is the norm of each column:" << endl << m.colwise().norm() << endl;
RealQZ_compute.cpp 13 << "\n|A-QSZ|: " << (A-qz.matrixQ()*qz.matrixS()*qz.matrixZ()).norm()
14 << ", |B-QTZ|: " << (B-qz.matrixQ()*qz.matrixT()*qz.matrixZ()).norm()
15 << "\n|QQ* - I|: " << (qz.matrixQ()*qz.matrixQ().adjoint() - MatrixXf::Identity(4,4)).norm()
16 << ", |ZZ* - I|: " << (qz.matrixZ()*qz.matrixZ().adjoint() - MatrixXf::Identity(4,4)).norm()
PartialPivLU_solve.cpp 7 cout << "Relative error: " << (A*X-B).norm() / B.norm() << endl;
  /external/eigen/doc/examples/
TutorialLinAlgExComputeSolveError.cpp 12 double relative_error = (A*x - b).norm() / b.norm(); // norm() is L2 norm
Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp 19 cout << "v.norm() = " << v.norm() << endl;
25 cout << "m.norm() = " << m.norm() << endl;
  /external/svox/pico/lib/
picosig2.c 1006 picoos_int32 *norm; local
    [all...]
  /external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/
Android.mk 17 test_makefile := external/libcxx/test/numerics/rand/rand.dis/rand.dist.norm/Android.mk
19 test_name := numerics/rand/rand.dis/rand.dist.norm/nothing_to_do
  /external/llvm/include/llvm/CodeGen/
CalcSpillWeights.h 61 NormalizingFn norm = normalizeSpillWeight)
62 : MF(mf), LIS(lis), Loops(loops), MBFI(mbfi), normalize(norm) {}
73 VirtRegAuxInfo::NormalizingFn norm =
  /external/opencv/cxcore/src/
cxnorm.cpp 57 norm = _update_op_( norm, t0 ); \
58 norm = _update_op_( norm, t1 ); \
64 norm = _update_op_( norm, t0 ); \
65 norm = _update_op_( norm, t1 ); \
72 norm = _update_op_( norm, t0 );
971 double norm = 0, norm_diff = 0; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
autocorr.c 40 Word32 i, norm, shift; local
70 norm = norm_l(L_sum);
71 shift = 4 - (norm >> 1);
98 norm = norm_l(L_sum);
99 L_sum = (L_sum << norm);
119 L_sum1 = L_sum1<<norm;
120 L_sum = L_sum<<norm;
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_texgen.c 107 const GLfloat *norm = normal->start; local
110 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) {
114 two_nu = 2.0F * DOT3(norm,u);
115 fx = f[i][0] = u[0] - norm[0] * two_nu;
116 fy = f[i][1] = u[1] - norm[1] * two_nu;
117 fz = f[i][2] = u[2] - norm[2] * two_nu;
135 GLfloat *norm = normal->start; local
138 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) {
143 two_nu = 2.0F * DOT3(norm,u);
144 fx = f[i][0] = u[0] - norm[0] * two_nu
184 GLfloat *norm = normal->start; local
210 GLfloat *norm = normal->start; local
284 const GLfloat *norm = normal->start; local
389 const GLfloat *norm = normal->start; local
422 const GLfloat *norm = normal->start; local
451 const GLfloat *norm = normal->start; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_texgen.c 107 const GLfloat *norm = normal->start; local
110 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) {
114 two_nu = 2.0F * DOT3(norm,u);
115 fx = f[i][0] = u[0] - norm[0] * two_nu;
116 fy = f[i][1] = u[1] - norm[1] * two_nu;
117 fz = f[i][2] = u[2] - norm[2] * two_nu;
135 GLfloat *norm = normal->start; local
138 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(norm,normal->stride)) {
143 two_nu = 2.0F * DOT3(norm,u);
144 fx = f[i][0] = u[0] - norm[0] * two_nu
184 GLfloat *norm = normal->start; local
210 GLfloat *norm = normal->start; local
284 const GLfloat *norm = normal->start; local
389 const GLfloat *norm = normal->start; local
422 const GLfloat *norm = normal->start; local
451 const GLfloat *norm = normal->start; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnrapi.cpp 26 Normalizer norm(iter, UNORM_NFC);
27 if(norm.next()!=0xe4) {
32 Normalizer copy(norm);
74 norm.setIndexOnly(3);
75 if(norm.current()!=0x4e3d) {
134 norm.setMode(UNORM_NONE);
135 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800) {
  /external/icu/icu4c/source/test/intltest/
tstnrapi.cpp 26 Normalizer norm(iter, UNORM_NFC);
27 if(norm.next()!=0xe4) {
32 Normalizer copy(norm);
74 norm.setIndexOnly(3);
75 if(norm.current()!=0x4e3d) {
134 norm.setMode(UNORM_NONE);
135 if(norm.first()!=0x61 || norm.next()!=0x308 || norm.last()!=0x2f800) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Image.cpp 107 FloatRect norm = rect; local
108 if (norm.width() < 0) {
109 norm.setX(norm.x() + norm.width());
110 norm.setWidth(-norm.width());
112 if (norm.height() < 0) {
113 norm.setY(norm.y() + norm.height())
    [all...]

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>