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

1 2 3 4 5 6 7 8 91011>>

  /external/fec/
sumsq_mmx.c 1 /* Compute the sum of the squares of a vector of signed shorts
16 long long sum = 0; local
20 sum += (long)in[0] * in[0];
24 sum += sumsq_mmx_assist(in,cnt);
30 sum += (long)in[0] * in[0];
34 return sum;
sumsq_sse2.c 1 /* Compute the sum of the squares of a vector of signed shorts
14 long long sum = 0; local
18 sum += (long)in[0] * in[0];
22 sum += sumsq_sse2_assist(in,cnt);
28 sum += (long)in[0] * in[0];
32 return sum;
sumsq_port.c 1 /* Compute the sum of the squares of a vector of signed shorts
9 long long sum = 0; local
13 sum += (int)in[i] * (int)in[i];
15 return sum;
  /external/swiftshader/third_party/subzero/crosstest/
simple_loop.c 6 int sum = 0; local
8 sum += a[i];
9 return sum;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
add.cpp 39 Description: Changed all occurrences of L_sum with sum.
104 sum = 16-bit limited sum of var1 and var2 (Word16)
135 Word32 sum;
137 sum = (Word32) var1 + var2;
143 var_out = saturate (sum);
181 Word32 sum; local
182 sum = (Word32) var1 + var2;
186 /* to conserve MIPS, i.e., var_out = saturate (sum) */
188 if (sum > 0X00007fffL
    [all...]
  /art/test/NonStaticLeafMethods/
NonStaticLeafMethods.java 28 int sum(int a, int b) { method in class:NonStaticLeafMethods
31 int sum(int a, int b, int c) { method in class:NonStaticLeafMethods
34 int sum(int a, int b, int c, int d) { method in class:NonStaticLeafMethods
37 int sum(int a, int b, int c, int d, int e) { method in class:NonStaticLeafMethods
43 double sum(double a, double b) { method in class:NonStaticLeafMethods
46 double sum(double a, double b, double c) { method in class:NonStaticLeafMethods
49 double sum(double a, double b, double c, double d) { method in class:NonStaticLeafMethods
52 double sum(double a, double b, double c, double d, double e) { method in class:NonStaticLeafMethods
  /art/test/StaticLeafMethods/
StaticLeafMethods.java 26 static int sum(int a, int b) { method in class:StaticLeafMethods
29 static int sum(int a, int b, int c) { method in class:StaticLeafMethods
32 static int sum(int a, int b, int c, int d) { method in class:StaticLeafMethods
35 static int sum(int a, int b, int c, int d, int e) { method in class:StaticLeafMethods
41 static double sum(double a, double b) { method in class:StaticLeafMethods
44 static double sum(double a, double b, double c) { method in class:StaticLeafMethods
47 static double sum(double a, double b, double c, double d) { method in class:StaticLeafMethods
50 static double sum(double a, double b, double c, double d, double e) { method in class:StaticLeafMethods
  /external/clang/test/Profile/
cxx-rangefor.cpp 16 int sum = 0; local
24 sum += i;
27 if (sum >= 7)
33 if (sum) {}
  /external/eigen/Eigen/src/SparseCore/
SparseRedux.h 17 SparseMatrixBase<Derived>::sum() const function in class:Eigen::SparseMatrixBase
30 SparseMatrix<_Scalar,_Options,_Index>::sum() const function in class:Eigen::SparseMatrix
34 return Matrix<Scalar,1,Dynamic>::Map(m_data.valuePtr(), m_data.size()).sum();
36 return Base::sum();
41 SparseVector<_Scalar,_Options,_Index>::sum() const function in class:Eigen::SparseVector
44 return Matrix<Scalar,1,Dynamic>::Map(m_data.valuePtr(), m_data.size()).sum();
  /external/libopus/silk/
inner_prod_aligned.c 42 opus_int32 sum = 0; local
44 sum = silk_ADD_RSHIFT32( sum, silk_SMULBB( inVec1[ i ], inVec2[ i ] ), scale );
46 return sum;
  /external/speex/libspeex/
lsp_bfin.h 45 spx_word32_t sum; local
58 "R3 = W[P0--] (X);\n\t" /* R3: sum */
80 : "=&d" (sum)
84 return sum;
  /external/syslinux/gpxe/src/core/
acpi.c 36 uint8_t sum = 0; local
39 sum += *( ( ( uint8_t * ) acpi ) + i );
41 acpi->checksum -= sum;
  /external/webrtc/webrtc/common_audio/signal_processing/
dot_product_with_scale.c 17 int32_t sum = 0; local
22 sum += (vector1[i + 0] * vector2[i + 0]) >> scaling;
23 sum += (vector1[i + 1] * vector2[i + 1]) >> scaling;
24 sum += (vector1[i + 2] * vector2[i + 2]) >> scaling;
25 sum += (vector1[i + 3] * vector2[i + 3]) >> scaling;
28 sum += (vector1[i] * vector2[i]) >> scaling;
31 return sum;
filter_ar_fast_q12.c 29 int32_t sum = 0; local
32 sum += coefficients[j] * data_out[i - j];
36 output -= sum;
  /prebuilts/go/darwin-x86/misc/cgo/test/
cthread.go 16 var sum struct { var
26 sum.Lock()
27 sum.i += x
28 sum.Unlock()
37 sum.i = 0
41 if sum.i != want {
42 t.Fatalf("sum=%d, want %d", sum.i, want)
  /prebuilts/go/linux-x86/misc/cgo/test/
cthread.go 16 var sum struct { var
26 sum.Lock()
27 sum.i += x
28 sum.Unlock()
37 sum.i = 0
41 if sum.i != want {
42 t.Fatalf("sum=%d, want %d", sum.i, want)
  /external/valgrind/exp-sgcheck/tests/
globalerr.c 10 short sum; local
12 sum += a[i] * b[i];
14 return 1 & ((unsigned int)sum / 1000000);
  /system/extras/memcpy-perf/
test-funcs.cpp 13 uint64_t __attribute__((noinline)) sum(volatile void *src, size_t size) function
16 uint64_t sum = 0; local
19 sum += src_ptr[i];
20 return sum;
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
Rfc1071.java 21 int sum = 0; local
25 sum += (data[i] & 0xFF) << 8;
26 sum = (sum & 0xFFFF) + (sum >> 16);
31 sum += (data[i] & 0xFF);
32 sum = (sum & 0xFFFF) + (sum >> 16);
36 sum = (sum & 0xFFFF) + (sum >> 16)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
md5sum.py 17 file ... : files to sum; '-' or no files means stdin
25 def sum(*files): function
40 sts = sum(f, out) or sts
87 return sum(args, out)
  /external/brotli/enc/
bit_cost.h 23 size_t sum = 0; local
32 sum += p;
36 sum += p;
39 if (sum) retval += (double)sum * FastLog2(sum);
40 *total = sum;
46 size_t sum; local
47 double retval = ShannonEntropy(population, size, &sum);
48 if (retval < sum) {
    [all...]
  /external/clang/test/CoverageMapping/
loops.cpp 6 int sum = 0; local
10 sum += i; // CHECK: File 0, [[@LINE]]:5 -> {{[0-9]+}}:4 = (#1 - #2)
11 if (sum >= 7)
16 if (sum) {}
  /external/libmpeg2/common/
icv_variance.c 86 WORD32 sum; local
98 sum = 0;
105 /* var = (n * SUM(x_i^2) - (SUM(x_i))^2) / (n^2); */
117 sum += *pu1_src++;
122 vrnc = ((sum_sqr * blk_sz) - (sum * sum)) / (blk_sz * blk_sz);
  /external/libopus/silk/fixed/
vector_ops_FIX.c 66 /* sum = for(i=0;i<len;i++)inVec1[i]*inVec2[i]; --- inner product */
82 opus_int32 sum = 0;
84 sum = silk_SMLABB( sum, inVec1[ i ], inVec2[ i ] );
86 return sum;
97 opus_int64 sum = 0; local
99 sum = silk_SMLALBB( sum, inVec1[ i ], inVec2[ i ] );
101 return sum;
  /external/ltp/testcases/kernel/fs/mongo/
summ.c 12 int sum = 0, n = 0; local
21 sum += n;
22 printf("%i\n", sum);

Completed in 2407 milliseconds

1 2 3 4 5 6 7 8 91011>>