HomeSort by: relevance | last modified time | path
    Searched defs:getLength (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
Math.h 60 unsigned getLength() const {
110 assert((V.getLength() != 0) && "Zero-length vector badness.");
113 for (unsigned i = 1; i < V.getLength(); ++i)
  /src/external/bsd/elftosb/dist/common/
IVTDataSource.cpp 63 unsigned IVTDataSource::getLength()
Blob.h 55 unsigned getLength() const { return m_length; }
DataSource.cpp 52 unsigned DataSource::PatternSegment::getLength()
193 unsigned MemoryImageDataSource::TextSegment::getLength()
214 unsigned MemoryImageDataSource::FillSegment::getLength()
DataSource.h 65 virtual unsigned getLength()=0;
114 virtual unsigned getLength();
223 virtual unsigned getLength() { return m_length; }
262 virtual unsigned getLength();
280 virtual unsigned getLength();
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeTypeBuiltin.cpp 38 uint64_t NativeTypeBuiltin::getLength() const { return Length; }
NativeLineNumber.cpp 45 uint32_t NativeLineNumber::getLength() const { return Length; }
NativeTypeArray.cpp 38 dumpSymbolField(OS, "length", getLength(), Indent);
58 return getLength() / Element.getLength();
66 uint64_t NativeTypeArray::getLength() const { return Record.Size; }
NativeFunctionSymbol.cpp 35 dumpSymbolField(OS, "length", getLength(), Indent);
49 uint64_t NativeFunctionSymbol::getLength() const { return Sym.CodeSize; }
NativeTypePointer.cpp 49 dumpSymbolField(OS, "length", getLength(), Indent);
78 uint64_t NativeTypePointer::getLength() const {
NativeTypeUDT.cpp 54 dumpSymbolField(OS, "length", getLength(), Indent);
99 uint64_t NativeTypeUDT::getLength() const {
101 return UnmodifiedType->getLength();
NativeTypeEnum.cpp 145 dumpSymbolField(OS, "length", getLength(), Indent);
293 uint64_t NativeTypeEnum::getLength() const {
295 return UnmodifiedType->getLength();
301 return UnderlyingType ? UnderlyingType->getLength() : 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAddr.h 82 uint64_t getLength() const { return Length; }
DWARFListTable.h 95 uint64_t getLength() const { return HeaderData.Length; }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryStreamWriter.h 185 uint32_t getLength() const { return Stream.getLength(); }
186 uint32_t bytesRemaining() const { return getLength() - getOffset(); }
BinaryStreamReader.h 256 uint32_t getLength() const { return Stream.getLength(); }
257 uint32_t bytesRemaining() const { return getLength() - getOffset(); }
BinaryStreamRef.h 30 Length = BorrowedImpl.getLength();
51 uint32_t getLength() const {
55 return BorrowedImpl ? (BorrowedImpl->getLength() - ViewOffset) : 0;
65 N = std::min(N, getLength());
84 N = std::min(N, getLength());
92 Result.Length = getLength();
100 assert(N <= getLength());
101 return drop_back(getLength() - N);
106 assert(N <= getLength());
107 return drop_front(getLength() - N)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 57 uint32_t DIALineNumber::getLength() const {
DIASectionContrib.cpp 58 uint32_t DIASectionContrib::getLength() const {
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/
Replacement.h 52 unsigned getLength() const { return Length; }
70 return Offset == RHS.getOffset() && Length == RHS.getLength();
122 unsigned getLength() const { return ReplacementRange.getLength(); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOutliner.h 89 unsigned getLength() const { return Len; }
210 unsigned getNumInstrs() const { return Candidates[0].getLength(); }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.h 291 unsigned getLength() {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MappedBlockStream.cpp 196 uint32_t MappedBlockStream::getLength() { return StreamLayout.Length; }
383 uint32_t WritableMappedBlockStream::getLength() {
384 return ReadInterface.getLength();
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprOpenMP.h 102 Expr *getLength() { return cast_or_null<Expr>(SubExprs[LENGTH]); }
103 const Expr *getLength() const { return cast_or_null<Expr>(SubExprs[LENGTH]); }
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Token.h 129 unsigned getLength() const {
155 : getLocation().getLocWithOffset(getLength());
207 return StringRef(reinterpret_cast<const char *>(PtrData), getLength());

Completed in 39 milliseconds

1 2