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

1 2 3 4 5 6 7

  /external/eigen/Eigen/src/SparseCore/
SparseDot.h 87 SparseMatrixBase<Derived>::norm() const function in class:Eigen::SparseMatrixBase
  /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/opencv3/samples/python2/
hist.py 108 norm = cv2.normalize(gray,alpha = 0,beta = 255,norm_type = cv2.NORM_MINMAX) variable
109 lines = hist_lines(norm)
111 cv2.imshow('image',norm)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
autocorr.cpp 171 norm = normalized autocorrelation at lag zero of type Word16
207 Word16 i, j, norm;
252 norm = norm_l (sum);
253 sum = L_shl (sum, norm);
267 sum = L_shl (sum, norm);
271 norm = sub (norm, overfl_shft);
273 return norm;
311 Word16 norm; local
414 norm = norm_l(sum)
416 sum <<= norm; 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/eigen/Eigen/src/Core/
Dot.h 58 * \sa squaredNorm(), norm()
104 //---------- implementation of L2 norm and related functions ----------
106 /** \returns, for vectors, the squared \em l2 norm of \c *this, and for matrices the Frobenius norm.
110 * \sa dot(), norm()
118 /** \returns, for vectors, the \em l2 norm of \c *this, and for matrices the Frobenius norm.
125 inline typename NumTraits<typename internal::traits<Derived>::Scalar>::Real MatrixBase<Derived>::norm() const function in class:Eigen::MatrixBase
131 /** \returns an expression of the quotient of *this by its own norm.
135 * \sa norm(), normalize(
    [all...]
  /external/opencv3/modules/cudaarithm/src/
reductions.cpp 50 double cv::cuda::norm(InputArray, int, InputArray) { throw_no_cuda(); return 0.0; } function in class:cv::cuda
52 double cv::cuda::norm(InputArray, InputArray, int) { throw_no_cuda(); return 0.0; } function in class:cv::cuda
85 // norm
117 double cv::cuda::norm(InputArray _src, int normType, InputArray _mask)
  /frameworks/av/services/audioflinger/
AudioMixerOps.h 84 static const float norm = 1. / (1 << 12); local
85 return value * volume * norm;
90 static const float norm = 1. / (1 << 28); local
91 return value * volume * norm;
106 static const float norm = 1. / (1 << (15 + 12)); local
107 return static_cast<float>(value) * static_cast<float>(volume) * norm;
112 static const float norm = 1. / (1ULL << (15 + 28)); local
113 return static_cast<float>(value) * static_cast<float>(volume) * norm;
191 static const float norm = 1. / (1 << 15); local
192 *auxaccum += norm * value
197 static const float norm = 1. \/ (1 << 27); local
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
NormFilter.java 28 * Filter to calculate the 2-norm of the inputs. i.e. sqrt(x^2 + y^2)
45 .addOutputPort("norm", Signature.PORT_REQUIRED, floatT)
56 float norm = (float) Math.hypot(xValue, yValue); local
57 if (mLogVerbose) Log.v(TAG, "Norm = " + norm);
58 OutputPort outPort = getConnectedOutputPort("norm");
60 outFrame.setValue(norm);
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
VectorUtil.java 39 public static double norm(double[] a) { method in class:VectorUtil
53 double norm = norm(a); local
54 a[0] /= norm;
55 a[1] /= norm;
56 a[2] /= norm;
  /external/eigen/blas/
level1_impl.h 113 RealScalar norm,scale; local
123 norm = scale*sqrt((numext::abs2(a/scale)) + (numext::abs2(b/scale)));
125 *c = abs(a)/norm;
126 *s = alpha*numext::conj(b)/norm;
127 a = alpha*norm;
  /external/webrtc/webrtc/common_audio/signal_processing/
levinson_durbin.c 38 int16_t norm; local
42 norm = WebRtcSpl_NormW32(R[0]);
46 temp1W32 = WEBRTC_SPL_LSHIFT_W32(R[i], norm);
135 norm = WebRtcSpl_NormW32(temp3W32);
136 if ((Alpha_exp <= norm) || (temp3W32 == 0))
212 norm = WebRtcSpl_NormW32(temp1W32);
213 temp1W32 = WEBRTC_SPL_LSHIFT_W32(temp1W32, norm);
219 Alpha_exp = Alpha_exp + norm;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /prebuilts/gdb/darwin-x86/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...]
test_pep277.py 78 name = os.path.join(test_support.TESTFN, self.norm(name))
88 def norm(self, s): member in class:UnicodeFileTests
  /prebuilts/gdb/linux-x86/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...]
test_pep277.py 78 name = os.path.join(test_support.TESTFN, self.norm(name))
88 def norm(self, s): member in class:UnicodeFileTests
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /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...]
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_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...]
test_pep277.py 78 name = os.path.join(test_support.TESTFN, self.norm(name))
88 def norm(self, s): member in class:UnicodeFileTests
  /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/eigen/Eigen/src/Geometry/
Hyperplane.h 105 RealScalar norm = result.normal().norm(); local
106 if(norm <= v0.norm() * v1.norm() * NumTraits<RealScalar>::epsilon())
113 result.normal() /= norm;
137 m_coeffs /= normal().norm();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
TestDeprecatedNormalizerAPI.java 56 Normalizer norm = new Normalizer(iter, Normalizer.NFC,0); local
57 if(norm.next()!=0xe4) {
65 Normalizer clone=(Normalizer)norm.clone();
66 if(clone.getBeginIndex()!= norm.getBeginIndex()){
70 if(clone.getEndIndex()!= norm.getEndIndex()){

Completed in 1397 milliseconds

1 2 3 4 5 6 7