Searched defs:Total (Results 1 - 13 of 13) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
H A DFunctionSummary.cpp19 unsigned Total = 0; local
21 Total += I->second.TotalBasicBlocks;
23 return Total;
27 unsigned Total = 0; local
29 Total += I->second.VisitedBasicBlocks.count();
31 return Total;
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dstatistics.py198 numerator_total = Total(data)
199 denominator_total = Total(len(data))
250 def Total(data): function
/external/clang/lib/AST/
H A DTypeLoc.cpp75 unsigned Total = 0; local
81 Total = llvm::RoundUpToAlignment(Total, Align);
82 Total += TypeSizer().Visit(TyLoc);
85 Total = llvm::RoundUpToAlignment(Total, MaxAlign);
86 return Total;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dpicklpf.c59 int Total = 0; local
86 Total += vp8_mse16x16(src + j, source->y_stride,
95 return Total;
H A Donyx_if.c2434 printf("\n_frames recive_data encod_mb_row compress_frame Total\n");
3368 // at least ~1/16 blocks, and Total > 0 (Total == 0 can happen if the
5735 int Total = 0; local
5748 Total += vp8_mse16x16(src + j, source->y_stride, dst + j, dest->y_stride, &sse);
5755 return Total;
/external/libvpx/libvpx/vp8/encoder/
H A Dpicklpf.c59 int Total = 0; local
86 Total += vp8_mse16x16(src + j, source->y_stride,
95 return Total;
H A Donyx_if.c2384 printf("\n_frames recive_data encod_mb_row compress_frame Total\n");
5576 int Total = 0; local
5589 Total += vp8_mse16x16(src + j, source->y_stride, dst + j, dest->y_stride, &sse);
5596 return Total;
/external/llvm/lib/Support/
H A DTimer.cpp168 static void printVal(double Val, double Total, raw_ostream &OS) { argument
169 if (Total < 1e-7) // Avoid dividing by zero.
172 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
175 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { argument
176 if (Total.getUserTime())
177 printVal(getUserTime(), Total.getUserTime(), OS);
178 if (Total.getSystemTime())
179 printVal(getSystemTime(), Total.getSystemTime(), OS);
180 if (Total.getProcessTime())
181 printVal(getProcessTime(), Total
318 TimeRecord Total; local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp414 unsigned Total = LHS.getZExtValue() + RHS.getZExtValue(); local
415 while (Total >= Threshold)
416 Total -= CM;
417 LHS = Total;
536 LeafMap Leaves; // Leaf -> Total weight so far.
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp934 ptrdiff_t Total = std::distance(DynTable.begin(), DynTable.end()); local
935 if (Total == 0)
939 W.startLine() << "DynamicSection [ (" << Total << " entries)\n";
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1112 uint64_t Total = CaseCnt.getCount(); local
1118 uint64_t Weight = Total / NCases, Rem = Total % NCases;
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h345 /// \a DidOverflow indicates whether \a Total did overflow while adding to
350 uint64_t Total; ///< Sum of all weights. member in struct:llvm::BlockFrequencyInfoImplBase::Distribution
351 bool DidOverflow; ///< Whether \a Total did overflow.
353 Distribution() : Total(0), DidOverflow(false) {}
367 /// down so that \a Total fits into 32-bits.
/external/chromium_org/v8/src/heap/
H A Dspaces.h1483 // Total available bytes in all blocks of this free list category.
1686 // Total amount of memory committed for this space. For paged
1697 intptr_t Total() { function in struct:v8::internal::PagedSpace::SizeStats

Completed in 222 milliseconds