HomeSort by relevance Sort by last modified time
    Searched refs:Sum (Results 51 - 75 of 103) sorted by null

1 23 4 5

  /external/libvpx/libvpx/vpx_dsp/x86/
halfpix_variance_impl_sse2.asm 18 ; int *sum,
110 mov rsi, arg(5) ;[Sum]
131 ; int *sum,
215 mov rsi, arg(5) ;[Sum]
236 ; int *sum,
317 mov rsi, arg(5) ;[Sum]
variance_impl_avx2.c 41 int *Sum) {
143 *((int*)Sum)= _mm_cvtsi128_si32(sum_res);
152 int *Sum) {
233 *((int*)Sum)= _mm_cvtsi128_si32(_mm256_castsi256_si128(sum_ref_src)) +
278 /* caculate sum */ \
287 // final calculation to sum and sse
305 sum = _mm_cvtsi128_si32(_mm256_castsi256_si128(sum_reg)) + \
320 int i, sum; local
497 return sum;
514 int i, sum; local
    [all...]
variance_impl_mmx.asm 52 ;return sum[0]+sum[1];
73 ; int *Sum
294 mov rdi, arg(5) ;Sum
316 ; int *Sum
403 mov rdi, arg(5) ;Sum
425 ; int *sum,
538 mov rdi, arg(6) ;sum
562 ; int *sum,
725 mov rdi, arg(7) ;sum
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/
vp9_subpel_variance_impl_sse2.asm 20 ; int *sum,
113 mov rsi, arg(5) ;[Sum]
135 ; int *sum,
220 mov rsi, arg(5) ;[Sum]
242 ; int *sum,
324 mov rsi, arg(5) ;[Sum]
vp9_variance_impl_sse2.asm 79 ; int * Sum
197 mov rax, arg(5) ;[Sum]
223 ; int * Sum
382 mov rax, arg(5) ;[Sum]
408 ; int *sum,
507 mov rsi, arg(5) ; sum
530 ; int *sum,
614 mov rsi, arg(5) ; sum
638 ; int *sum,
720 mov rsi, arg(5) ; sum
    [all...]
vp9_ssim_opt.asm 27 ; Sum across the register %1 starting with q words
39 ; Sum across the register %1 starting with q words
vp9_variance_impl_mmx.asm 50 ;return sum[0]+sum[1];
73 ; int *Sum
296 mov rdi, arg(5) ;Sum
321 ; int *Sum
411 mov rdi, arg(5) ;Sum
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 555 const SCEV *Sum = SE->getAddExpr(A1X1, B1Y1);
556 if (isKnownPredicate(CmpInst::ICMP_EQ, Sum, Y->getC()))
558 if (isKnownPredicate(CmpInst::ICMP_NE, Sum, Y->getC())) {
    [all...]
  /external/v8/src/heap/
gc-tracer.cc 695 BytesAndDuration sum = buffer.Sum(
701 uint64_t bytes = sum.first;
702 double durations = sum.second;
804 double end = recorded_context_disposal_times_.Sum(
811 double sum = recorded_survival_ratios_.Sum(
813 return sum / recorded_survival_ratios_.Count();
gc-tracer.h 34 T Sum(Callback callback, const T& initial) const {
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 512 int64_t Sum = 0;
514 Sum += Prob.getNumerator();
515 // Due to precision issue, we assume that the sum of probabilities is one if
516 // the difference between the sum of their numerators and the denominator is
518 assert((uint64_t)std::abs(Sum - BranchProbability::getDenominator()) <=
520 "The sum of successors's probabilities exceeds one.");
    [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 327 /// \brief Get the sum of two scaled numbers.
329 /// Get the sum of two scaled numbers with as much precision as possible.
345 // Compute sum.
346 DigitsT Sum = LDigits + RDigits;
347 if (Sum >= RDigits)
348 return std::make_pair(Sum, Scale);
350 // Adjust sum after arithmetic overflow.
352 return std::make_pair(HighBit | Sum >> 1, Scale + 1);
355 /// \brief Convenience helper for 32-bit sum.
361 /// \brief Convenience helper for 64-bit sum
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
variance_altivec.asm 51 ;# Compute sum first. Unpack to so signed subract
96 stw r3, 0(r8) ;# sum
100 mullw r3, r3, r3 ;# sum*sum
101 srlwi r3, r3, \DS ;# (sum*sum) >> DS
102 subf r3, r3, r4 ;# sse - ((sum*sum) >> DS)
140 stw r3, 0(r8) ;# sum
144 mullw r3, r3, r3 ;# sum*su
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
ssim_opt.asm 27 ; Sum across the register %1 starting with q words
39 ; Sum across the register %1 starting with q words
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/epiphany/
regression.s 27 /*Check that sum is correct*/
37 ;; Sum the registers
42 mov r62,#2016 ;//Correct sum of 1..63 = 63*32 + 63
43 VERIFY r63,r63,R62,BRANCH1;//CHECK SUM
  /external/libvpx/libvpx/vp8/encoder/
bitstream.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
bitstream.c     [all...]
  /external/clang/test/SemaCXX/
constant-expression-cxx11.cpp 130 constexpr int Sum(int a = 0, const int &b = 0, const int *c = &z, char d = 0) {
136 static_assert(Sum() == 0, "");
137 static_assert(Sum(1) == 1, "");
138 static_assert(Sum(1, four) == 5, "");
139 static_assert(Sum(1, eight, &twentyseven) == 36, "");
140 static_assert(Sum(1, 2, &four, eight) == 15, "");
482 constexpr auto Sum(Iter begin, Iter end) -> decltype(+*begin) {
483 return begin == end ? 0 : *begin + Sum(begin+1, end);
488 constexpr int sum_xs = Sum(begin(xs), end(xs));
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
variance_impl_sse2.asm 81 ; int * Sum
199 mov rax, arg(5) ;[Sum]
225 ; int * Sum
384 mov rax, arg(5) ;[Sum]
412 ; int *sum,
666 mov rsi, arg(7) ; sum
690 ; int *sum,
789 mov rsi, arg(5) ; sum
812 ; int *sum,
905 mov rsi, arg(5) ;[Sum]
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 247 VALUE Octets-Direction Sum 0
  /art/runtime/base/
histogram-inl.h 195 os << Name() << ":\tSum: " << PrettyDuration(Sum() * kAdjust) << " "
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/
common.py 127 class Sum(pipeline.Pipeline):
128 """Returns the sum of all values."""
132 raise TypeError('sum expected at least 1 argument, got 0')
136 return sum(args)
177 the output list is the sum of the lengths of all input lists.
  /external/google-benchmark/src/
stat.h 108 // Return the sum of this sample set
109 VType Sum() const { return sum_; }
144 NumType numsamples_; // sum of weight[i];
145 VType sum_; // sum of weight[i]*value[i];
146 VType sum_squares_; // sum of weight[i]*value[i]^2;
  /external/harfbuzz_ng/src/
hb-open-type-private.hh 730 uint32_t Sum = 0L;
734 Sum += *Table++;
735 return Sum;
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfoImpl.h 88 uint64_t Sum = Mass + X.Mass;
89 Mass = Sum < Mass ? UINT64_MAX : Sum;
351 uint64_t Total; ///< Sum of all weights.
715 /// - Normalize the distribution: scale weights down so that their sum
785 /// used for computing loop scale) is the sum of all iterations.
    [all...]

Completed in 514 milliseconds

1 23 4 5