Searched refs:getLength (Results 1 - 25 of 81) sorted by relevance

1234

/freebsd-9.3-release/contrib/llvm/lib/DebugInfo/
H A DDWARFTypeUnit.cpp22 return TypeOffset < getLength();
27 << " length = " << format("0x%08x", getLength())
H A DDWARFCompileUnit.cpp18 << " length = " << format("0x%08x", getLength())
H A DDWARFDebugLine.h65 uint32_t getLength() const { function in struct:llvm::DWARFDebugLine::Prologue
71 return TotalLength + sizeof(TotalLength) - getLength();
H A DDWARFUnit.h112 uint32_t getLength() const { return Length; } function in class:llvm::DWARFUnit
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DRefactoring.cpp72 Start, ReplacementRange.getLength(), ReplacementText);
81 << ReplacementRange.getLength() << ":\"" << ReplacementText << "\"";
88 if (LHS.getLength() != RHS.getLength())
89 return LHS.getLength() < RHS.getLength();
97 LHS.getLength() == RHS.getLength() &&
191 Replacement Replace("<stdin>", I->getOffset(), I->getLength(),
209 if (I->getOffset() + I->getLength() > Positio
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DTokenConcatenation.cpp52 if (Tok.getLength() < 1 || Tok.getLength() > 3)
56 return IsStringPrefix(StringRef(Ptr, Tok.getLength()),
60 if (Tok.getLength() < 256) {
132 } else if (Tok.getLength() < 256) {
162 if (PrevSpellLoc.getLocWithOffset(PrevTok.getLength()) == SpellLoc)
H A DTokenLexer.cpp469 Tok.getLength());
528 Buffer.resize(Tok.getLength() + RHS.getLength());
669 Tok.getLength()));
784 unsigned FullLength = LastRelOffs + LastConsecutiveTok.getLength();
820 Tok.getLength()));
H A DMacroArgs.cpp235 Result.resize(CurStrLen+Tok.getLength());
247 if (ActualTokLen != Tok.getLength())
H A DMacroInfo.cpp59 DefinitionLength += lastToken.getLength();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DRefactoring.h44 unsigned getLength() const { return Length; } function in class:clang::tooling::Range
107 unsigned getLength() const { return ReplacementRange.getLength(); } function in class:clang::tooling::Replacement
H A DReplacementsYaml.h52 Length(R.getLength()), ReplacementText(R.getReplacementText()) {}
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DSelectorLocationsKind.cpp31 unsigned Len = II ? II->getLength() : 0;
39 unsigned Len = /* selector id */ (II ? II->getLength() : 0) + /* ':' */ 1;
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp133 Value *len = intr->getLength();
145 Value *len = memsetintr->getLength();
181 Value *len = cpy->getLength();
193 Value *len = memsetinst->getLength();
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h141 assert((n1.getCosts().getLength() == ne.getCosts().getRows()) &&
142 (n2.getCosts().getLength() == ne.getCosts().getCols()) &&
222 assert(getNodeCosts(n1Id).getLength() == costs.getRows() &&
223 getNodeCosts(n2Id).getLength() == costs.getCols() &&
401 os << "\n" << v.getLength() << "\n";
402 assert(v.getLength() != 0 && "Empty vector in graph.");
404 for (unsigned i = 1; i < v.getLength(); ++i) {
H A DHeuristicSolver.h251 for (unsigned j = 0; j < yCosts.getLength(); ++j) {
253 for (unsigned i = 1; i < xCosts.getLength(); ++i) {
264 for (unsigned i = 0; i < yCosts.getLength(); ++i) {
266 for (unsigned j = 1; j < xCosts.getLength(); ++j) {
311 unsigned xLen = xCosts.getLength(),
446 if (g.getNodeCosts(nId).getLength() == 1) {
H A DMath.h55 unsigned getLength() const { function in class:PBQP::Vector
99 assert((v.getLength() != 0) && "Zero-length vector badness.");
102 for (unsigned i = 1; i < v.getLength(); ++i) {
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/
H A DBriggs.h361 unsigned numRegs = getGraph().getNodeCosts(nId).getLength() - 1;
388 unsigned numRegs = getGraph().getNodeCosts(nId).getLength() - 1;
407 unsigned numRegs = getGraph().getNodeCosts(nId).getLength() - 1;
417 unsigned numRegs = getGraph().getNodeCosts(nId).getLength() - 1;
421 for (unsigned i = 1; i < nCosts.getLength(); ++i) {
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp222 int64_t Size = cast<ConstantInt>(MSI->getLength())->getZExtValue();
407 !isa<ConstantInt>(MSI->getLength()))
558 if (isa<ConstantInt>(MSI->getLength()) && !MSI->isVolatile())
756 ConstantInt *MDepLen = dyn_cast<ConstantInt>(MDep->getLength());
757 ConstantInt *MLen = dyn_cast<ConstantInt>(M->getLength());
799 Builder.CreateMemMove(M->getRawDest(), MDep->getRawSource(), M->getLength(),
802 Builder.CreateMemCpy(M->getRawDest(), MDep->getRawSource(), M->getLength(),
820 ConstantInt *CopySize = dyn_cast<ConstantInt>(M->getLength());
888 M->getLength()->getType() };
924 ConstantInt *C1 = dyn_cast<ConstantInt>(MDep->getLength());
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DFormatString.h94 unsigned getLength() const { function in class:clang::analyze_format_string::LengthModifier
187 return StringRef(getStart(), getLength());
204 unsigned getLength() const { function in class:clang::analyze_format_string::ConversionSpecifier
405 unsigned getLength() const { function in class:clang::analyze_printf::PrintfConversionSpecifier
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseAST.cpp65 unsigned Length = Tok.getLength();
/freebsd-9.3-release/sys/netgraph/
H A Dng_parse.h365 ng_parse_array_getLength_t *getLength; member in struct:ng_parse_array_info
/freebsd-9.3-release/contrib/llvm/include/llvm/IR/
H A DIntrinsicInst.h122 Value *getLength() const { return const_cast<Value*>(getArgOperand(2)); } function in class:llvm::MemIntrinsic
156 assert(getLength()->getType() == L->getType() &&
H A DMetadata.h52 unsigned getLength() const { return (unsigned)getName().size(); } function in class:llvm::MDString
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DIdentifierTable.h93 return getLength() == StrLen-1 && !memcmp(getNameStart(), Str, StrLen-1);
112 unsigned getLength() const { function in class:clang::IdentifierInfo
126 return StringRef(getNameStart(), getLength());
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DToken.h114 unsigned getLength() const { function in class:clang::Token

Completed in 166 milliseconds

1234