HomeSort by relevance Sort by last modified time
    Searched full:norm (Results 51 - 75 of 1009) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libxml2/test/c14n/with-comments/
example-4.xml 7 <norm attr=' &apos; &#x20;&#13;&#xa;&#9; &apos; '/>
  /external/libxml2/test/c14n/without-comments/
example-4.xml 7 <norm attr=' &apos; &#x20;&#13;&#xa;&#9; &apos; '/>
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 55 def __init__(self, type, norm, pure, size, name = ''):
57 self.norm = norm
65 if self.norm:
73 return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.size == other.size
81 if self.norm:
97 if self.norm:
121 '''Make up a short norm for a format, suitable to be used as suffix in
162 if channel.norm != ref_channel.norm
    [all...]
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
matrixop.c 70 float norm = sqrtf((*ax) * (*ax) + (*ay) * (*ay) + (*az) * (*az)); local
71 if (norm > 0)
73 *ax /= norm;
74 *ay /= norm;
75 *az /= norm;
77 return norm;
90 float norm = normalize(&ax, &ay, &az); local
92 if (norm == 0 || angle == 0)
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DecompositionSolver.java 30 * with non-square matrix A and with non-null minimal norm. If an exact linear
31 * solution exists it is also the minimal norm solution.</p>
42 * @return a vector X that minimizes the two norm of A &times; X - B
53 * @return a vector X that minimizes the two norm of A &times; X - B
64 * @return a matrix X that minimizes the two norm of A &times; X - B
FieldDecompositionSolver.java 31 * with non-square matrix A and with non-null minimal norm. If an exact linear
32 * solution exists it is also the minimal norm solution.</p>
44 * @return a vector X that minimizes the two norm of A &times; X - B
55 * @return a vector X that minimizes the two norm of A &times; X - B
66 * @return a matrix X that minimizes the two norm of A &times; X - B
  /external/eigen/test/eigen2/
eigen2_adjoint.cpp 49 // check basic properties of dot, norm, norm2
56 VERIFY_IS_APPROX(v1.squaredNorm(), v1.norm() * v1.norm());
59 VERIFY_IS_MUCH_SMALLER_THAN(vzero.norm(), static_cast<RealScalar>(1));
74 VERIFY_IS_APPROX(VectorType::Random(rows).normalized().norm(), RealScalar(1));
  /prebuilts/go/darwin-x86/src/html/template/
url.go 44 // urlProcessor normalizes (when norm is true) or escapes its input to produce
46 func urlProcessor(norm bool, args ...interface{}) string {
49 norm = true
69 if norm {
81 if norm && i+2 < len(s) && isHex(s[i+1]) && isHex(s[i+2]) {
  /prebuilts/go/linux-x86/src/html/template/
url.go 44 // urlProcessor normalizes (when norm is true) or escapes its input to produce
46 func urlProcessor(norm bool, args ...interface{}) string {
49 norm = true
69 if norm {
81 if norm && i+2 < len(s) && isHex(s[i+1]) && isHex(s[i+2]) {
  /external/opencv3/modules/calib3d/test/
test_compose_rt.cpp 165 if (norm(rvec3_exp, rvec3) > thres || norm(tvec3_exp, tvec3) > thres)
179 if (norm(dr3_dr1, dr3dr1) > thres || norm(dt3_dr1, dt3dr1) > thres)
188 if (norm(dr3_dr2, dr3dr2) > thres || norm(dt3_dr2, dt3dr2) > thres)
197 if (norm(dr3_dt1, dr3dt1) > thres || norm(dt3_dt1, dt3dt1) > thres)
206 if (norm(dr3_dt2, dr3dt2) > thres || norm(dt3_dt2, dt3dt2) > thres
    [all...]
  /external/opencv3/modules/video/test/
test_estimaterigid.cpp 112 double thres = 0.1*cvtest::norm(aff, NORM_L2);
113 double d = cvtest::norm(aff_est, aff, NORM_L2);
123 nB = cvtest::norm(B, NORM_L2);
128 ts->printf( cvtest::TS::LOG, "Threshold = %f, norm of difference = %f", thres, d );
157 if (cvtest::norm(aff_est, aff, NORM_INF) > thres)
160 ts->printf( cvtest::TS::LOG, "Threshold = %f, norm of difference = %f", thres,
161 cvtest::norm(aff_est, aff, NORM_INF) );
  /external/ceres-solver/internal/ceres/
small_blas_test.cc 73 EXPECT_NEAR((C_plus_ref - C_plus).norm(), 0.0, kTolerance)
91 EXPECT_NEAR((C_minus_ref - C_minus).norm(), 0.0, kTolerance)
108 EXPECT_NEAR((C_assign_ref - C_assign).norm(), 0.0, kTolerance)
156 EXPECT_NEAR((C_plus_ref - C_plus).norm(), 0.0, kTolerance)
173 EXPECT_NEAR((C_minus_ref - C_minus).norm(), 0.0, kTolerance)
190 EXPECT_NEAR((C_assign_ref - C_assign).norm(), 0.0, kTolerance)
229 EXPECT_NEAR((c_plus_ref - c_plus).norm(), 0.0, kTolerance)
238 EXPECT_NEAR((c_minus_ref - c_minus).norm(), 0.0, kTolerance)
247 EXPECT_NEAR((c_assign_ref - c_assign).norm(), 0.0, kTolerance)
278 EXPECT_NEAR((c_plus_ref - c_plus).norm(), 0.0, kTolerance
    [all...]
block_random_access_diagonal_matrix_test.cc 97 EXPECT_NEAR((dense.block(0, 0, 3, 3) - Matrix::Ones(3, 3)).norm(),
102 EXPECT_NEAR((dense.block(3, 3, 4, 4) - 2 * 2 * Matrix::Ones(4, 4)).norm(),
107 EXPECT_NEAR((dense.block(7, 7, 5, 5) - 3 * 3 * Matrix::Ones(5, 5)).norm(),
112 EXPECT_NEAR(dense.norm(), sqrt(9.0 + 16. * 16. + 81.0 * 25.), kTolerance);
block_sparse_matrix_test.cc 79 EXPECT_LT((y_a - y_b).norm(), 1e-12);
91 EXPECT_LT((y_a - y_b).norm(), 1e-12);
100 EXPECT_LT((y_a - y_b).norm(), 1e-12);
108 EXPECT_LT((m_a - m_b).norm(), 1e-12);
normal_prior_test.cc 76 // Compare the norm of the residual
83 double jacobian_diff_norm = (J - A).norm();
115 // Compare the norm of the residual
121 // Compare the norm of the residual
  /external/eigen/bench/spbench/
test_sparseLU.cpp 88 scalar tempNorm = tmp2.norm()/b.norm();
89 cout << "Relative norm of the computed solution : " << tempNorm <<"\n";
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
StringPool.java 43 final String norm = pool.get(s); local
44 if (norm == null) {
48 return norm;
  /external/llvm/test/CodeGen/ARM/
fast-isel-static.ll 3 ; RUN: llc < %s -mtriple=thumbv7-apple-ios -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=static | FileCheck -check-prefix=CHECK-NORM %s
4 ; RUN: llc < %s -mtriple=armv7-linux-gnueabi -O0 -verify-machineinstrs -fast-isel-abort=1 -relocation-model=static | FileCheck -check-prefix=CHECK-NORM %s
29 ; CHECK-NORM: bl {{_?}}myadd
  /frameworks/opt/timezonepicker/res/values-fi/
arrays.xml 26 <item msgid="5984634754870859705">"Keskinen norm. ? Saskatchewan"</item>
31 <item msgid="7076353182411415610">"Tyynenmeren norm. ? Metlakatla"</item>
32 <item msgid="373990592918179890">"Kalliovuort. norm.aika ? Arizona"</item>
  /frameworks/opt/timezonepicker/res/values-fr-rCA/
arrays.xml 25 <item msgid="5259393186526893961">"Heure norm. Roch. (Dawson Creek)"</item>
31 <item msgid="7076353182411415610">"Heure norm. Pacif. (Metlakatla)"</item>
32 <item msgid="373990592918179890">"Heure norm. Rocheuses (Arizona)"</item>
  /external/opencv3/modules/core/test/
test_rotatedrect.cpp 75 while( norm(a - b) <= FLT_EPSILON );
96 if( norm(vertices[i] - a) <= 0.001 ) count_match++;
97 else if( norm(vertices[i] - b) <= 0.001 ) count_match++;
98 else if( norm(vertices[i] - c) <= 0.001 ) count_match++;
  /external/opencv3/modules/photo/test/
test_inpaint.cpp 94 double n1 = cvtest::norm(diff1.reshape(1), NORM_INF, inv_mask.reshape(1));
95 double n2 = cvtest::norm(diff2.reshape(1), NORM_INF, inv_mask.reshape(1));
106 n1 = cvtest::norm(diff1.reshape(1), NORM_INF, mask.reshape(1));
107 n2 = cvtest::norm(diff2.reshape(1), NORM_INF, mask.reshape(1));
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
covariance_matrix_generator.cc 28 // Calculates the Euclidean norm for a row vector.
29 float Norm(const ComplexMatrix<float>& x) {
35 result += std::norm(elems[i]);
83 interf_cov_vector.Scale(1.f / Norm(interf_cov_vector));
  /prebuilts/go/darwin-x86/test/bench/shootout/
timing.log 69 spectral-norm 5500
70 gcc -O2 spectral-norm.c -lm 11.54u 0.00s 11.55r
71 gccgo -O2 spectral-norm.go 12.20u 0.00s 12.23r
72 gc spectral-norm 50.23u 0.00s 50.36r
73 gc_B spectral-norm 49.69u 0.01s 49.83r
74 gc spectral-norm-parallel 24.47u 0.03s 11.05r # has shift >>1 not div /2
111 spectral-norm 5500
113 gcc -O2 spectral-norm.c -lm 11.50u 0.00s 11.50r
114 gccgo -O2 spectral-norm.go 12.02u 0.00s 12.02r
115 gc spectral-norm 23.98u 0.00s 24.00r # new time is 0.48 times old time, 52% faste
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
timing.log 69 spectral-norm 5500
70 gcc -O2 spectral-norm.c -lm 11.54u 0.00s 11.55r
71 gccgo -O2 spectral-norm.go 12.20u 0.00s 12.23r
72 gc spectral-norm 50.23u 0.00s 50.36r
73 gc_B spectral-norm 49.69u 0.01s 49.83r
74 gc spectral-norm-parallel 24.47u 0.03s 11.05r # has shift >>1 not div /2
111 spectral-norm 5500
113 gcc -O2 spectral-norm.c -lm 11.50u 0.00s 11.50r
114 gccgo -O2 spectral-norm.go 12.02u 0.00s 12.02r
115 gc spectral-norm 23.98u 0.00s 24.00r # new time is 0.48 times old time, 52% faste
    [all...]

Completed in 2542 milliseconds

1 23 4 5 6 7 8 91011>>