HomeSort by relevance Sort by last modified time
    Searched defs:Total (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
FunctionSummary.cpp 25 unsigned Total = 0;
27 Total += I->second->TotalBasicBlocks;
29 return Total;
33 unsigned Total = 0;
35 Total += I->second->VisitedBasicBlocks.count();
37 return Total;
  /external/llvm/tools/llvm-readobj/
ELF.cpp 155 ptrdiff_t Total = std::distance(Start, End);
156 OS << "Dynamic section contains " << Total << " entries\n";
170 OS << " Total: " << Total << "\n\n";
  /external/libvpx/libvpx/vp8/encoder/
picklpf.c 58 int Total = 0;
85 Total += vp8_mse16x16(src + j, source->y_stride,
94 return Total;
onyx_if.c     [all...]
  /external/llvm/lib/Support/
Timer.cpp 168 static void printVal(double Val, double Total, raw_ostream &OS) {
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 {
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.getProcessTime(), OS)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 335 unsigned Total = LHS.getZExtValue() + RHS.getZExtValue();
336 while (Total >= Threshold)
337 Total -= CM;
338 LHS = Total;
457 LeafMap Leaves; // Leaf -> Total weight so far.
    [all...]
  /external/v8/src/
spaces.h 948 // Max capacity of the total space and executable memory limit.
    [all...]

Completed in 494 milliseconds