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

1 2 3 4 5 6 7 8

  /external/eigen/Eigen/src/SparseCore/
SparseDot.h 84 SparseMatrixBase<Derived>::norm() const function in class:Eigen::SparseMatrixBase
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
transform.go 7 package norm package
readwriter.go 7 package norm package
trie.go 7 package norm package
input.go 7 package norm package
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
transform.go 7 package norm package
readwriter.go 7 package norm package
trie.go 7 package norm package
input.go 7 package norm package
  /prebuilts/go/darwin-x86/src/math/big/
bits_test.go 63 // norm returns the normalized bits for x: It removes multiple equal entries
66 func (x Bits) norm() Bits { func
96 got := fmt.Sprintf("%v", test.x.norm())
108 x = x.norm()
  /prebuilts/go/linux-x86/src/math/big/
bits_test.go 63 // norm returns the normalized bits for x: It removes multiple equal entries
66 func (x Bits) norm() Bits { func
96 got := fmt.Sprintf("%v", test.x.norm())
108 x = x.norm()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_glob.py 9 def norm(self, *parts): member in class:GlobTests
13 filename = self.norm(*parts)
29 os.symlink(self.norm('broken'), self.norm('sym1'))
30 os.symlink(self.norm('broken'), self.norm('sym2'))
50 eq(self.glob('a'), [self.norm('a')])
51 eq(self.glob('a', 'D'), [self.norm('a', 'D')])
52 eq(self.glob('aab'), [self.norm('aab')])
67 eq(self.glob('a*'), map(self.norm, ['a', 'aab', 'aaa']))
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Complex.h 89 const T norm = T(1) / (b_real * b_real + b_imag * b_imag); local
90 return std::complex<T>((a_real * b_real + a_imag * b_imag) * norm,
91 (a_imag * b_real - a_real * b_imag) * norm);
  /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/mesa3d/src/compiler/nir/
nir_normalize_cubemap_coords.c 60 nir_ssa_def *norm = nir_fmax(b, nir_channel(b, abs, 0), local
64 nir_ssa_def *normalized = nir_fmul(b, orig_coord, nir_frcp(b, norm));
  /external/tensorflow/tensorflow/python/ops/
linalg_ops.py 220 the minimum-norm solution to the under-determined linear system, i.e.
228 orthogonal decomposition is used. This computes the minimum-norm
449 @tf_export('norm', 'linalg.norm')
452 def norm(tensor, function
458 r"""Computes the norm of vectors, matrices, and tensors.
460 This function can compute several different vector norms (the 1-norm, the
461 Euclidean or 2-norm, the inf-norm, and in general the p-norm for p > 0) an
    [all...]
  /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/libxaac/decoder/drc_src/
impd_drc_multiband.c 48 FLOAT32 norm = 0.05f * filter_slope * inv_log10_2; local
53 10.0, norm * log10(fcross_norm_lo / fcenter_norm_subband[i]));
58 10.0, norm * log10(fcenter_norm_subband[i] / fcross_norm_hi));
  /external/python/cpython2/Lib/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/python/cpython3/Lib/test/
test_unicode_file_functions.py 72 name = os.path.join(support.TESTFN, self.norm(name))
79 def norm(self, s): member in class:UnicodeFileTests
  /external/tensorflow/tensorflow/core/kernels/
colorspace_op.h 53 auto norm = range.inverse() * (T(1) / T(6)); local
58 norm * (G - B), (G == V).select(norm * (B - R) + T(2) / T(6),
59 norm * (R - G) + T(4) / T(6)));
  /frameworks/av/media/libaudioprocessing/
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 constexpr float norm = 1. / (1 << 15); local
192 *auxaccum += norm * value
197 static constexpr 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/tests/java_api/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;

Completed in 557 milliseconds

1 2 3 4 5 6 7 8