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
  /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 register 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;
  /cts/apps/CtsVerifier/lib/colorchecker/
whitebalancetest.cpp 111 float norm = color/ 255.0f; local
115 if (norm > 0.04045f) {
116 linearColor = pow(((norm + 0.055f) / 1.055f), 2.4f);
118 linearColor = norm / 12.92f;
  /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...]
  /frameworks/av/services/audioflinger/
AudioMixerOps.h 87 static const float norm = 1. / (1 << 12); local
88 return value * volume * norm;
93 static const float norm = 1. / (1 << 28); local
94 return value * volume * norm;
109 static const float norm = 1. / (1 << (15 + 12)); local
110 return static_cast<float>(value) * static_cast<float>(volume) * norm;
115 static const float norm = 1. / (1ULL << (15 + 28)); local
116 return static_cast<float>(value) * static_cast<float>(volume) * norm;
195 static const float norm = 1. / (1 << 15); local
196 *auxaccum += norm * value
201 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);
  /external/chromium_org/third_party/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);
142 norm = WebRtcSpl_NormW32(temp3W32);
143 if ((Alpha_exp <= norm) || (temp3W32 == 0))
224 norm = WebRtcSpl_NormW32(temp1W32);
225 temp1W32 = WEBRTC_SPL_LSHIFT_W32(temp1W32, norm);
232 Alpha_exp = Alpha_exp + 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/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /external/webrtc/src/common_audio/signal_processing/
levinson_durbin.c 38 WebRtc_Word16 norm; local
42 norm = WebRtcSpl_NormW32(R[0]);
46 temp1W32 = WEBRTC_SPL_LSHIFT_W32(R[i], norm);
142 norm = WebRtcSpl_NormW32(temp3W32);
143 if ((Alpha_exp <= norm) || (temp3W32 == 0))
224 norm = WebRtcSpl_NormW32(temp1W32);
225 temp1W32 = WEBRTC_SPL_LSHIFT_W32(temp1W32, norm);
232 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/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_complex.h 741 inline _Tp _STLP_CALL norm(const complex<_Tp>& __z) function
  /prebuilts/ndk/9/sources/cxx-stl/EH/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/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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_type.h 109 unsigned norm:1; member in struct:lp_type
271 res_type.norm = TRUE;
344 type.norm = FALSE;
360 type.norm = FALSE;
376 type.norm = TRUE;
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
remote_rate_control.cc 272 const float norm = std::max(avg_max_bit_rate_, 1.0f); local
275 (avg_max_bit_rate_ - incoming_bit_rate_kbps) / norm;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_type.h 109 unsigned norm:1; member in struct:lp_type
271 res_type.norm = TRUE;
344 type.norm = FALSE;
360 type.norm = FALSE;
376 type.norm = TRUE;

Completed in 667 milliseconds

1 2 3 4 5 6 7