OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Total
(Results
1 - 3
of
3
) sorted by null
/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.
173
OS << format("%5.1f", Val*100/
Total
) << "%)";
177
void TimeRecord::print(const TimeRecord &
Total
, raw_ostream &OS) const {
178
if (
Total
.getUserTime())
179
printVal(getUserTime(),
Total
.getUserTime(), OS);
180
if (
Total
.getSystemTime())
181
printVal(getSystemTime(),
Total
.getSystemTime(), OS);
182
if (
Total
.getProcessTime())
183
printVal(getProcessTime(),
Total
.getProcessTime(), OS)
[
all
...]
Completed in 57 milliseconds