HomeSort by relevance Sort by last modified time
    Searched refs:sums (Results 1 - 25 of 41) sorted by null

1 2

  /external/fec/
sumsq_av.c 5 * 32-bit sums and carries
16 vector unsigned int sums,carries,s1,s2; local
20 carries = sums = (vector unsigned int)(0);
28 sums = (vector unsigned int)vec_msum(x,x,(vector signed int)(0));
40 carries = vec_add(carries,vec_addc(sums,s1));
41 sums = vec_add(sums,s1);
51 carries = vec_add(carries,vec_addc(sums,s1));
52 sums = vec_add(sums,s1)
    [all...]
sumsq_sse2_assist.s 36 paddq %xmm2,%xmm0 # combine 64-bit sums
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
VectorialCovariance.java 36 /** Sums for each component. */
37 private final double[] sums; field in class:VectorialCovariance
39 /** Sums of products for each component. */
54 sums = new double[dimension];
66 if (v.length != sums.length) {
67 throw new DimensionMismatchException(v.length, sums.length);
71 sums[i] += v[i];
85 int dimension = sums.length;
93 double e = c * (n * productsSums[k++] - sums[i] * sums[j])
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicHistogram.cpp 169 int * sums = &cp->mSums[256 * 4 * info->lid]; local
172 sums[(in[0] << 2) ] ++;
173 sums[(in[1] << 2) + 1] ++;
174 sums[(in[2] << 2) + 2] ++;
175 sums[(in[3] << 2) + 3] ++;
186 int * sums = &cp->mSums[256 * 4 * info->lid]; local
189 sums[(in[0] << 2) ] ++;
190 sums[(in[1] << 2) + 1] ++;
191 sums[(in[2] << 2) + 2] ++;
202 int * sums = &cp->mSums[256 * 2 * info->lid] local
217 int * sums = &cp->mSums[256 * info->lid]; local
235 int * sums = &cp->mSums[256 * info->lid]; local
252 int * sums = &cp->mSums[256 * info->lid]; local
268 int * sums = &cp->mSums[256 * info->lid]; local
283 int * sums = &cp->mSums[256 * info->lid]; local
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 48 Allocation sums = Allocation.createSized(rs, Element.I32_4(rs), COLOR_BIT_DEPTH); local
53 hist.setOutput(sums);
56 sums.copyTo(output);
  /external/libmpeg2/common/arm/
ideint_cac_a9.s 84 @ Get row sums
93 @ Both q0 and q1 have four 32 bit sums corresponding to first 4 rows
98 @ q8 now contains 8 sums
112 @ Get row sums
120 @ Both q2 and q3 have four 32 bit sums corresponding to last 4 rows
125 @ q9 now contains 8 sums
127 @ Compute absolute diff between top and bottom row sums
137 @ q10 now contains 8 absolute diff of sums above the threshold
168 @ d0 now contains 8 absolute diff of sums above the threshold
  /external/skia/src/core/
SkBitmapFilter.h 125 float sums[4]; variable
126 sum.store(sums);
127 float result = sums[0] + sums[1] + sums[2] + sums[3];
  /external/libopus/celt/x86/
celt_lpc_sse.c 107 opus_val32 sums[4] = {0}; local
110 xcorr_kernel(rnum, x+i, sums, ord, arch);
112 vecSum = _mm_loadu_si128((__m128i *)sums);
  /external/v8/tools/
presubmit.py 104 self.sums = {}
112 self.sums = pickle.load(sums_file)
123 pickle.dump(self.sums, sums_file)
141 if not file in self.sums or self.sums[file] != file_sum:
143 self.sums[file] = file_sum
149 if file in self.sums:
150 self.sums.pop(file)
callstats.py 394 # Append the sums as single entries to domain.
434 # Print and calculate partial sums, if necessary.
486 sums = parent[key]
488 if i >= len(sums):
489 sums.extend([0] * (i - len(sums) + 1))
491 sums[i] += item
  /prebuilts/go/darwin-x86/src/hash/adler32/
adler32.go 8 // Adler-32 is composed of two sums accumulated per byte: s1 is
9 // the sum of all bytes, s2 is the sum of all s1 values. Both sums
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32.go 8 // Adler-32 is composed of two sums accumulated per byte: s1 is
9 // the sum of all bytes, s2 is the sum of all s1 values. Both sums
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
cmptree.py 56 print "calculating local sums ..."
60 print "getting remote sums ..."
61 sums = remote._recv(sums_id)
62 print "got", len(sums)
64 for name, rsum in sums:
  /frameworks/base/core/jni/
android_util_Process.cpp 602 static jlong getFreeMemoryImpl(const char* const sums[], const size_t sumsLen[], size_t num)
627 while (sums[i]) {
628 if (strncmp(p, sums[i], sumsLen[i]) == 0) {
652 static const char* const sums[] = { "MemFree:", "Cached:", NULL }; local
654 return getFreeMemoryImpl(sums, sumsLen, 2);
659 static const char* const sums[] = { "MemTotal:", NULL }; local
661 return getFreeMemoryImpl(sums, sumsLen, 1);
    [all...]
  /system/media/audio_utils/
primitives.c 21 void ditherAndClamp(int32_t* out, const int32_t *sums, size_t c)
25 int32_t l = *sums++;
26 int32_t r = *sums++;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
trace.py 304 sums = {}
339 sums[modulename] = n_lines, percent, modulename, filename
341 if summary and sums:
342 mods = sums.keys()
346 n_lines, percent, modulename, filename = sums[m]
347 print "%5d %3d%% %s (%s)" % sums[m]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
trace.py 304 sums = {}
339 sums[modulename] = n_lines, percent, modulename, filename
341 if summary and sums:
342 mods = sums.keys()
346 n_lines, percent, modulename, filename = sums[m]
347 print "%5d %3d%% %s (%s)" % sums[m]
  /prebuilts/gdb/linux-x86/lib/python2.7/
trace.py 304 sums = {}
339 sums[modulename] = n_lines, percent, modulename, filename
341 if summary and sums:
342 mods = sums.keys()
346 n_lines, percent, modulename, filename = sums[m]
347 print "%5d %3d%% %s (%s)" % sums[m]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
trace.py 304 sums = {}
339 sums[modulename] = n_lines, percent, modulename, filename
341 if summary and sums:
342 mods = sums.keys()
346 n_lines, percent, modulename, filename = sums[m]
347 print "%5d %3d%% %s (%s)" % sums[m]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
trace.py 304 sums = {}
339 sums[modulename] = n_lines, percent, modulename, filename
341 if summary and sums:
342 mods = sums.keys()
346 n_lines, percent, modulename, filename = sums[m]
347 print "%5d %3d%% %s (%s)" % sums[m]
  /external/opencv/ml/src/
mlann_mlp.cpp 397 void CvANN_MLP::calc_activ_func( CvMat* sums, const double* bias ) const
399 int i, j, n = sums->rows, cols = sums->cols;
400 double* data = sums->data.db;
418 assert( CV_IS_MAT_CONT(sums->type) );
439 cvExp( sums, sums );
    [all...]
  /external/ImageMagick/coders/
jpeg.c 850 sums[101] =
872 if ((qvalue < hash[i]) && (sum < sums[i]))
874 if (((qvalue <= hash[i]) && (sum <= sums[i])) || (i >= 50))
879 (sum <= sums[i]) ? "exact" : "approximate");
901 sums[101] =
921 if ((qvalue < hash[i]) && (sum < sums[i]))
923 if (((qvalue <= hash[i]) && (sum <= sums[i])) || (i >= 50))
928 (sum <= sums[i]) ? "exact" : "approximate");
845 sums[101] = local
896 sums[101] = local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
ssim_opt_x86_64.asm 13 ; tabulate_ssim - sums sum_s,sum_r,sum_sq_s,sum_sq_r, sum_sxr
  /system/media/audio_utils/include/audio_utils/
primitives.h 37 * Dither and clamp pairs of 32-bit input samples (sums) to 16-bit output samples (out).
49 * The out and sums buffers must either be completely separate (non-overlapping), or
52 void ditherAndClamp(int32_t* out, const int32_t *sums, size_t c);
    [all...]
  /kernel/tests/net/test/
ping6_test.py 91 sums = {}
93 sums[name] = GetAndClearChecksum(packet.getlayer(name))
100 if layer and GetChecksum(layer) != sums[name]:

Completed in 2462 milliseconds

1 2