Searched defs:Total (Results 1 - 10 of 10) 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/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/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.c2432 printf("\n_frames recive_data encod_mb_row compress_frame Total\n");
5570 int Total = 0; local
5583 Total += vp8_mse16x16(src + j, source->y_stride, dst + j, dest->y_stride, &sse);
5590 return Total;
/external/llvm/lib/Support/
H A DTimer.cpp166 static void printVal(double Val, double Total, raw_ostream &OS) { argument
167 if (Total < 1e-7) // Avoid dividing by zero.
170 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
173 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const { argument
174 if (Total.getUserTime())
175 printVal(getUserTime(), Total.getUserTime(), OS);
176 if (Total.getSystemTime())
177 printVal(getSystemTime(), Total.getSystemTime(), OS);
178 if (Total.getProcessTime())
179 printVal(getProcessTime(), Total
316 TimeRecord Total; local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp484 unsigned Total = LHS.getZExtValue() + RHS.getZExtValue(); local
485 while (Total >= Threshold)
486 Total -= CM;
487 LHS = Total;
605 LeafMap Leaves; // Leaf -> Total weight so far.
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp938 ptrdiff_t Total = std::distance(DynTable.begin(), DynTable.end()); local
939 if (Total == 0)
943 W.startLine() << "DynamicSection [ (" << Total << " entries)\n";
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1158 uint64_t Total = CaseCnt.getCount(); local
1164 uint64_t Weight = Total / NCases, Rem = Total % NCases;
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h335 /// \a DidOverflow indicates whether \a Total did overflow while adding to
340 uint64_t Total; ///< Sum of all weights. member in struct:llvm::BlockFrequencyInfoImplBase::Distribution
341 bool DidOverflow; ///< Whether \a Total did overflow.
343 Distribution() : Total(0), DidOverflow(false) {}
357 /// down so that \a Total fits into 32-bits.
/external/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 3207 milliseconds