HomeSort by relevance Sort by last modified time
    Searched defs:Size (Results 201 - 225 of 529) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 43 uint64_t Size;
47 : Val(V), PrevInList(nullptr), NextInList(nullptr), AS(nullptr), Size(0),
61 if (NewSize > Size) Size = NewSize;
71 uint64_t getSize() const { return Size; }
150 assert(i < UnknownInsts.size());
248 void addPointer(AliasSetTracker &AST, PointerRec &Entry, uint64_t Size,
254 for (size_t i = 0, e = UnknownInsts.size(); i != e; ++i)
269 bool aliasesPointer(const Value *Ptr, uint64_t Size, const AAMDNodes &AAInfo,
324 bool add(Value *Ptr, uint64_t Size, const AAMDNodes &AAInfo); // Add a loc
    [all...]
MemoryDependenceAnalysis.h 281 /// Size - The maximum size of the dereferences of the
283 uint64_t Size;
289 NonLocalPointerInfo() : Size(AliasAnalysis::UnknownSize) {}
414 /// and Size) and compares it against a load. If the specified load could
417 /// location value, then this function returns the size in bytes of the
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 104 for (unsigned i = 0, e = static_cast<unsigned>(BlockInfoRecords.size());
168 // The size of the bicode. 0 if we don't know it yet.
169 size_t Size;
173 /// follow the word size of the host machine for efficiency. We use word_t in
183 // This is the declared size of code values used for the current block, in
210 Size = 0;
226 if (Size != 0)
227 return Size == NextChar;
315 if (Size != 0 && NextChar >= Size)
    [all...]
  /external/llvm/include/llvm/CodeGen/
DIE.h 117 /// Size - Size of instance + children.
119 unsigned Size;
143 : Offset(0), Size(0), Abbrev((dwarf::Tag)0, dwarf::DW_CHILDREN_no),
148 : Offset(0), Size(0), Abbrev((dwarf::Tag)Tag, dwarf::DW_CHILDREN_no),
157 unsigned getSize() const { return Size; }
170 void setSize(unsigned S) { Size = S; }
235 /// SizeOf - Return the size of a value in bytes.
276 /// EmitValue - Emit integer of appropriate size.
283 /// SizeOf - Determine size of integer value in bytes
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 48 // First and Second size parameters (or -1 if unused)
215 // The size of the malloc's result type must be known to determine array size.
278 /// getMallocArraySize - Returns the array size of a malloc call. If the
279 /// argument passed to malloc is a multiple of the size of the malloced type,
281 /// constant 1. Otherwise, return NULL for mallocs whose array size cannot be
345 // Utility functions to compute size of objects.
349 /// \brief Compute the size of the object pointed by Ptr. Returns true and the
350 /// object size in Size if successful, and false otherwise
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 60 /// Size - section size. Doesn't include the stubs.
61 size_t Size;
77 SectionEntry(StringRef name, uint8_t *address, size_t size,
79 : Name(name), Address(address), Size(size),
80 LoadAddress(reinterpret_cast<uintptr_t>(address)), StubOffset(size),
116 /// The size of this relocation (MachO specific).
117 unsigned Size;
121 SymOffset(0), IsPCRel(false), Size(0) {
    [all...]
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 142 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
148 /// @param Size - The size of the common symbol.
150 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
154 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
157 uint64_t Size, unsigned ByteAlignment = 0) override;
161 void EmitValueImpl(const MCExpr *Value, unsigned Size,
163 void EmitIntValue(uint64_t Value, unsigned Size) override;
220 void EmitWinCFIAllocStack(unsigned Size) override;
289 assert(Bytes && "Invalid size!");
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 622 int64_t Size;
624 if (getParser().parseAbsoluteExpression(Size))
627 if (Size & 7)
628 return Error(startLoc, "size is not a multiple of 8");
634 getStreamer().EmitWinCFIAllocStack(Size);
652 return Error(startLoc, "size is not a multiple of 8");
ELFAsmParser.cpp 62 addDirectiveHandler<&ELFAsmParser::ParseDirectiveSize>(".size");
233 unsigned Size = 0;
249 CurSize = getTok().getIdentifier().size() + 2;
252 CurSize = getTok().getIdentifier().size();
258 Size += CurSize;
259 SectionName = StringRef(FirstLoc.getPointer(), Size);
265 if (Size == 0)
274 for (unsigned i = 0; i < flagsStr.size(); i++) {
376 int64_t Size = 0;
444 return TokError("expected the entry size");
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 47 if (llvm::StringRef(Size, sizeof(Size)).rtrim(" ").getAsInteger(10, Ret))
48 llvm_unreachable("Size is not a decimal number.");
91 uint64_t Size = sizeof(ArchiveMemberHeader);
93 Size += Header->getSize();
94 Data = StringRef(Start, Size);
111 return Data.size() - StartOfFile;
119 size_t SpaceToSkip = Data.size();
144 if (name.size() == 1) // Linker member.
146 if (name.size() == 2 && name[1] == '/') // String table
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEInstrInfo.cpp 387 unsigned Size = STI.isABI_N64() ? 64 : 32;
395 AnalyzeImm.Analyze(Imm, Size, LastInstrIsADDiu);
398 assert(Seq.size() && (!LastInstrIsADDiu || (Seq.size() > 1)));
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 110 unsigned Size = 1 << getFixupKindLog2Size(Fixup.getKind());
112 assert(Fixup.getOffset() + Size <= DataSize &&
119 assert(isIntN(Size * 8 + 1, Value) &&
122 for (unsigned i = 0; i != Size; ++i)
411 /// A frameless function with a small constant stack size.
414 /// A frameless function with a large constant stack size.
439 unsigned MoveInstrSize; ///< Size of a "move" instruction.
440 unsigned StackDivide; ///< Amount to adjust stack size by.
442 /// \brief Size of a "push" instruction for the given register.
485 for (unsigned i = 0, e = Instrs.size(); i != e; ++i)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 214 // FIXME: We don't know the size of the trampoline, so we can't really
317 uint64_t Size;
318 if (getObjectSize(V, Size, DL, TLI))
319 return Size;
349 if (Later.Size == AliasAnalysis::UnknownSize ||
350 Earlier.Size == AliasAnalysis::UnknownSize)
353 // Make sure that the Later size is >= the Earlier size.
354 if (Later.Size >= Earlier.Size)
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 202 unsigned Size = End - Begin;
204 if (Size == 1) {
220 unsigned Mid = Size / 2;
367 if (Cases.size()>=2)
414 DEBUG(dbgs() << "Clusterify finished. Total clusters: " << Cases.size()
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 416 "None", "Speed", "Aggressive Speed", "Size", "Aggressive Size", "Debugging",
430 "None", "Speed", "Aggressive Speed", "Size", "Aggressive Size", "Accuracy",
601 /// Tag_File | Tag_Section | Tag_Symbol uleb128:byte-size
606 uint32_t Size =
608 SW.printNumber("Size", Size);
609 Offset = Offset + sizeof(Size);
611 if (Size > Length)
    [all...]
MachODumper.cpp 273 uint64_t Size;
298 Section.Size = Sect.size;
310 Section.Size = Sect.size;
413 W.printHex("Size", MOSection.Size);
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 115 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
118 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
136 uint8_t *TrivialMemoryManager::allocateCodeSection(uintptr_t Size,
140 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr);
145 uint8_t *TrivialMemoryManager::allocateDataSection(uintptr_t Size,
150 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr);
156 for (int i = 0, e = FunctionMemory.size(); i != e; ++i)
158 FunctionMemory[i].size());
160 for (int i = 0, e = DataMemory.size(); i != e; ++i)
162 DataMemory[i].size());
    [all...]
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.cpp 104 // Getting symbol size is linear for Mach-O files, so assume that symbol
115 if (Module->isMachO() && SymbolName.size() > 0 && SymbolName[0] == '_')
118 // with same address size. Make sure we choose the correct one.
126 uint64_t &Size) const {
135 if (SymbolIterator->first.Size != 0 &&
136 SymbolIterator->first.Addr + SymbolIterator->first.Size <= Address)
140 Size = SymbolIterator->first.Size;
154 uint64_t Start, Size;
156 FunctionName, Start, Size)) {
    [all...]
  /external/lzma/C/
7z.h 97 UInt64 Size;
168 if dest == NULL, the return value specifies the required size of the buffer,
181 size_t *outBufferSize, /* buffer size for output buffer */
183 size_t *outSizeProcessed, /* size of file in *outBuffer */
  /external/lzma/CPP/7zip/Archive/7z/
7zItem.h 52 for (int i = UnpackSizes.Size() - 1; i >= 0; i--)
61 for (int i = 0; i < Coders.Size(); i++)
68 for(int i = 0; i < BindPairs.Size(); i++)
75 for(int i = 0; i < BindPairs.Size(); i++)
82 for(int i = 0; i < PackStreams.Size(); i++)
90 for (int i = Coders.Size() - 1; i >= 0; i--)
118 if (index < Defined.Size() && Defined[index])
129 while (index >= Defined.Size())
134 while (index >= Values.Size())
139 bool CheckSize(int size) const { return Defined.Size() == size || Defined.Size() == 0; }
238 int size = Files.Size(); local
    [all...]
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 44 UInt64 Size;
49 bool HasSize() const { return (Size != (UInt64)(Int64)-1); }
61 Size = GetUi64(sig + 5);
65 (!HasSize() || Size < ((UInt64)1 << 56)) &&
85 HRESULT ReadInput(Byte *data, UInt32 size, UInt32 *processedSize)
86 { return _lzmaDecoderSpec->ReadFromInputStream(data, size, processedSize); }
150 const UInt64 *Size = header.HasSize() ? &header.Size : NULL;
151 HRESULT res = _lzmaDecoderSpec->CodeResume(outStream, Size, progress);
261 case kpidSize: if (_stream && _header.HasSize()) prop = _header.Size; break;
    [all...]
  /external/openfst/src/include/fst/
encode.h 123 for (size_t i = 0; i < encode_tuples_.size(); ++i) {
138 encode_hash_[encode_tuples_.back()] = encode_tuples_.size();
139 return encode_tuples_.size();
160 if (key < 1 || key > encode_tuples_.size()) {
167 size_t Size() const { return encode_tuples_.size(); }
221 int64 size = encode_tuples_.size(); local
222 WriteType(strm, size);
223 for (size_t i = 0; i < size; ++i)
256 int64 size; local
    [all...]
  /external/v8/include/
v8-util.h 43 static size_t Size(Impl* impl) { return impl->size(); }
128 * Return size of the map.
130 size_t Size() { return Traits::Size(&impl_); }
379 static size_t Size(const Impl* impl) {
380 return impl->size();
383 return (i < impl->size()) ? impl->at(i) : kPersistentContainerNotFound;
438 size_t Size() const {
439 return Traits::Size(&impl_)
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bass/lib/
LVDBE.h 144 LVDBE_TOOMANYSAMPLES = 3, /* Maximum block size exceeded */
145 LVDBE_SIZEERROR = 4, /* Incorrect structure size */
226 LVM_UINT32 Size; /* Region size in bytes */
260 LVM_UINT16 MaxBlockSize; /* Maximum block size in sample pairs */
448 /* LVDBE_TOOMANYSAMPLES NumSamples was larger than the maximum block size */
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
LVM_Types.h 45 #define LVM_MAXINT_8 127 /* Maximum positive integer size */
155 LVM_UINT32 Size; /* Region size in bytes */

Completed in 540 milliseconds

1 2 3 4 5 6 7 891011>>