HomeSort by relevance Sort by last modified time
    Searched defs:Total (Results 1 - 5 of 5) 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/libvpx/vp8/encoder/
picklpf.c 71 int Total = 0;
97 Total += VARIANCE_INVOKE(rtcd, mse16x16)(src + j, source->y_stride, dst + j, dest->y_stride, &sse);
104 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/v8/src/
spaces.h 948 // Max capacity of the total space and executable memory limit.
    [all...]

Completed in 3384 milliseconds