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

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pep277.py 78 name = os.path.join(test_support.TESTFN, self.norm(name))
88 def norm(self, s): member in class:UnicodeFileTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pep277.py 78 name = os.path.join(test_support.TESTFN, self.norm(name))
88 def norm(self, s): member in class:UnicodeFileTests
  /external/ceres-solver/internal/ceres/
trust_region_minimizer.cc 194 double x_norm = x.norm();
223 iteration_summary.gradient_norm = (x - projected_gradient_step).norm();
227 "Gradient max norm: %e <= %e",
455 iteration_summary.step_norm = (x - x_plus_delta).norm();
571 x_norm = x.norm();
599 iteration_summary.gradient_norm = (x - projected_gradient_step).norm();
603 "Gradient max norm: %e <= %e",
line_search_minimizer.cc 150 "Gradient max norm: %e <= %e",
361 iteration_summary.step_norm = delta.norm();
364 iteration_summary.step_norm = delta.norm();
383 "Gradient max norm: %e <= %e",
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
matrix.h 400 static INLINE void line_normal(float *l, float *norm)
402 norm[0] = l[0];
403 norm[1] = l[1];
405 norm[2] = l[0] + (l[3] - l[1]);
406 norm[3] = l[1] - (l[2] - l[0]);
  /external/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 169 * eigenvectors are normalized to have (Euclidean) norm equal to one. The
440 Scalar norm(0);
443 norm += m_matT.row(j).segment((std::max)(j-1,Index(0)), size-(std::max)(j-1,Index(0))).cwiseAbs().sum();
447 if (norm == 0.0)
482 m_matT.coeffRef(i,n) = -r / (eps * norm);
552 vr = eps * norm * (abs(w) + abs(q) + abs(x) + abs(y) + abs(lastw));
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 400 static INLINE void line_normal(float *l, float *norm)
402 norm[0] = l[0];
403 norm[1] = l[1];
405 norm[2] = l[0] + (l[3] - l[1]);
406 norm[3] = l[1] - (l[2] - l[0]);
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 502 CFX_ByteString norm(family, -1);
503 norm.Remove(' ');
504 norm.Remove('-');
505 norm.Remove(',');
506 int pos = norm.Find('+');
508 norm = norm.Left(pos);
510 norm.MakeLower();
511 return norm;
    [all...]
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk     [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerFirGen.h 547 double norm = 1./((1ULL<<(sizeof(T)*8-1))*L); local
549 firMin = fmin * norm;
550 firMax = fmax * norm;
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 72 public Vec norm() { method in class:BouncyDroid.BouncyView.World.Vec
261 springForce = springForce.norm().mul(mag);
290 mBody.v = mBody.v.norm().mul(MAX_SPEED);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_table.py 117 print " {%s, %s, %s, %u}%s\t/* %s = %s */" % (type_map[channel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, sep, "xyzw"[i], channel.name)
  /external/eigen/test/eigen2/
eigen2_basicstuff.cpp 53 VERIFY_IS_MUCH_SMALLER_THAN( vzero, v1.norm());
  /external/eigen/test/
eigensolver_generic.cpp 44 VERIFY_IS_APPROX(ei1.eigenvectors().colwise().norm(), RealVectorType::Ones(rows).transpose());
geo_eulerangles.cpp 30 VERIFY((ea-eabis).norm() <= test_precision<Scalar>());
geo_parametrizedline.cpp 41 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) );
nullary.cpp 64 VERIFY( (MatrixXd(RowVectorXd::LinSpaced(3, 0, 1)) - RowVector3d(0, 0.5, 1)).norm() < std::numeric_limits<Scalar>::epsilon() );
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 71 chord_lengths.rightCols(n-1) = (pts.array().leftCols(n-1) - pts.array().rightCols(n-1)).matrix().colwise().norm();
  /external/eigen/unsupported/doc/examples/
FFT.cpp 30 return norm(a);
  /external/eigen/unsupported/test/
forward_adolc.cpp 22 return (p-Vector(Scalar(-1),Scalar(1.))).norm() + (p.array().sqrt().abs() * p.array().sin()).sum() + p.dot(p);
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_table.py 117 print " {%s, %s, %s, %u}%s\t/* %s = %s */" % (type_map[channel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, sep, "xyzw"[i], channel.name)
  /external/opencv/cvaux/src/
cvtrifocal.cpp 2417 double norm; local
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 151 public static float norm(float start, float stop, float value) { method in class:MathUtils
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 77 if(abs(r0.norm()) < tol) {
114 if (v.tail(m - k).norm() != 0.0) {

Completed in 552 milliseconds

1 2 3 4 5 67 8 91011>>