Searched refs:Total (Results 1 - 13 of 13) sorted by path

/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DTimer.h69 void print(const TimeRecord &Total, raw_ostream &OS) const;
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp996 << NumElements << " (Total: " << MemToAlloc << ") at "
1015 uint64_t Total = 0;
1024 Total += SLO->getElementOffset(Index);
1039 Total += TD.getTypeAllocSize(ST->getElementType())*Idx;
1044 Result.PointerVal = ((char*)getOperandValue(Ptr, SF).PointerVal) + Total;
1045 DEBUG(dbgs() << "GEP Index " << Total << " bytes.\n");
/freebsd-10.0-release/contrib/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...]
/freebsd-10.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp32 void AArch64FrameLowering::splitSPAdjustments(uint64_t Total, argument
38 if (Total <= 0x1f0) {
39 Initial = Total;
43 Residual = Total - Initial;
H A DAArch64FrameLowering.h55 void splitSPAdjustments(uint64_t Total, uint64_t &Initial,
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp421 unsigned Total = LHS.getZExtValue() + RHS.getZExtValue(); local
422 while (Total >= Threshold)
423 Total -= CM;
424 LHS = Total;
543 LeafMap Leaves; // Leaf -> Total weight so far.
/freebsd-10.0-release/contrib/llvm/tools/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;
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp787 ptrdiff_t Total = std::distance(Start, End);
789 W.startLine() << "DynamicSection [ (" << Total << " entries)\n";
/freebsd-10.0-release/lib/libkse/test/
H A Dmutex_d.exp291 Total tests 212, passed 212, failed 0
/freebsd-10.0-release/sys/boot/i386/boot0/
H A Dboot0ext.S23 .set NUM_SECTORS,2 # Total length in sectors
/freebsd-10.0-release/sys/contrib/dev/acpica/compiler/
H A Daslerror.c185 UINT32 Total = 0; local
312 if (Total < 256)
322 else if (Total == 256)
337 Total++;
415 if (Total >= 256)
/freebsd-10.0-release/usr.bin/systat/
H A Dvmstat.c111 struct vmtotal Total; member in struct:Info
124 #define total s.Total
798 size = sizeof(ls->Total);
801 if (sysctl(mib, 2, &ls->Total, &size, NULL, 0) < 0) {
803 bzero(&ls->Total, sizeof(ls->Total));
/freebsd-10.0-release/usr.sbin/ac/
H A Dac.c84 static struct timeval Total = { 0, 0 }; variable in typeref:struct:timeval
181 timeradd(&Total, &secs, &Total);
201 timeradd(&Total, &secs, &Total);
507 show("total", Total);

Completed in 340 milliseconds