Searched refs:Total (Results 1 - 16 of 16) sorted by relevance

/freebsd-9.3-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-9.3-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-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DTypeLoc.cpp75 unsigned Total = 0; local
81 Total = llvm::RoundUpToAlignment(Total, Align);
82 Total += TypeSizer().Visit(TyLoc);
85 Total = llvm::RoundUpToAlignment(Total, MaxAlign);
86 return Total;
/freebsd-9.3-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.h55 void splitSPAdjustments(uint64_t Total, uint64_t &Initial,
H A DAArch64FrameLowering.cpp32 void AArch64FrameLowering::splitSPAdjustments(uint64_t Total, argument
38 if (Total <= 0x1f0) {
39 Initial = Total;
43 Residual = Total - Initial;
/freebsd-9.3-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);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DTimer.h69 void print(const TimeRecord &Total, raw_ostream &OS) const;
/freebsd-9.3-release/usr.bin/systat/
H A Dvmstat.c110 struct vmtotal Total; member in struct:Info
123 #define total s.Total
786 size = sizeof(ls->Total);
789 if (sysctl(mib, 2, &ls->Total, &size, NULL, 0) < 0) {
791 bzero(&ls->Total, sizeof(ls->Total));
/freebsd-9.3-release/usr.sbin/sade/
H A Ddisks.c103 static daddr_t Total; variable
156 Total = 0;
158 Total += chunk_info[i]->size;
/freebsd-9.3-release/usr.sbin/sysinstall/
H A Ddisks.c105 static daddr_t Total; variable
158 Total = 0;
160 Total += chunk_info[i]->size;
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp414 unsigned Total = LHS.getZExtValue() + RHS.getZExtValue(); local
415 while (Total >= Threshold)
416 Total -= CM;
417 LHS = Total;
536 LeafMap Leaves; // Leaf -> Total weight so far.
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A DELFDumper.cpp781 ptrdiff_t Total = std::distance(Start, End);
783 W.startLine() << "DynamicSection [ (" << Total << " entries)\n";
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp409 CharUnits Total = CharUnits::Zero(); local
415 Total += VBPtrOffset;
419 Total += RDLayout.getBaseClassOffset(RD);
421 return Total;
/freebsd-9.3-release/sys/boot/i386/boot0/
H A Dboot0ext.S23 .set NUM_SECTORS,2 # Total length in sectors
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp978 << NumElements << " (Total: " << MemToAlloc << ") at "
997 uint64_t Total = 0;
1006 Total += SLO->getElementOffset(Index);
1021 Total += TD.getTypeAllocSize(ST->getElementType())*Idx;
1026 Result.PointerVal = ((char*)getOperandValue(Ptr, SF).PointerVal) + Total;
1027 DEBUG(dbgs() << "GEP Index " << Total << " bytes.\n");
/freebsd-9.3-release/lib/libkse/test/
H A Dmutex_d.exp291 Total tests 212, passed 212, failed 0

Completed in 286 milliseconds