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

/external/clang/lib/StaticAnalyzer/Core/
H A DFunctionSummary.cpp25 unsigned Total = 0; local
27 Total += I->second->TotalBasicBlocks;
29 return Total;
33 unsigned Total = 0; local
35 Total += I->second->VisitedBasicBlocks.count();
37 return Total;
/external/libvpx/vp8/encoder/
H A Dpicklpf.c71 int Total = 0; local
97 Total += VARIANCE_INVOKE(rtcd, mse16x16)(src + j, source->y_stride, dst + j, dest->y_stride, &sse);
104 return Total;
H A Donyx_if.c2336 printf("\n_frames recive_data encod_mb_row compress_frame Total\n");
5356 int Total = 0; local
5368 Total += VARIANCE_INVOKE(rtcd, mse16x16)(src + j, source->y_stride, dst + j, dest->y_stride, &sse);
5375 return Total;
5382 int Total = 0; local
5397 Total += sse;
5404 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.cpp335 unsigned Total = LHS.getZExtValue() + RHS.getZExtValue(); local
336 while (Total >= Threshold)
337 Total -= CM;
338 LHS = Total;
493 LeafMap Leaves; // Leaf -> Total weight so far.
/external/v8/src/
H A Dspaces.h1382 intptr_t Total() { function in struct:v8::internal::BASE_EMBEDDED::SizeStats
1408 // Total available bytes in all blocks on this free list.
1467 // Total amount of memory committed for this space. For paged

Completed in 194 milliseconds