Searched refs:Size (Results 101 - 125 of 1042) sorted by relevance

1234567891011>>

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.h40 Size() const;
H A DDWARFLocationList.h30 Size (const lldb_private::DataExtractor& debug_loc_data,
/external/llvm/include/llvm/MC/
H A DMCWinCOFFStreamer.h56 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
58 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
60 void EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size,
62 void EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size,
H A DMCWin64EH.h31 static WinEH::Instruction Alloc(MCSymbol *L, unsigned Size) { argument
32 return WinEH::Instruction(Size > 128 ? UOP_AllocLarge : UOP_AllocSmall, L,
33 -1, Size);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterHandler.h34 virtual void setSymbolSize(const MCSymbol *Sym, uint64_t Size) = 0;
/external/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.h27 SDValue Dst, SDValue Src, SDValue Size,
H A DAArch64SelectionDAGInfo.cpp26 SDValue Size, unsigned Align, bool isVolatile,
30 ConstantSDNode *SizeValue = dyn_cast<ConstantSDNode>(Size);
47 Entry.Node = Size;
24 EmitTargetCodeForMemset( SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.h32 getInstruction(MCInst &Instr, uint64_t &Size, ArrayRef<uint8_t> Bytes,
/external/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.h29 SDValue Size, unsigned Align,
/external/llvm/lib/Target/Mips/
H A DMipsSERegisterInfo.h31 const TargetRegisterClass *intRegClass(unsigned Size) const override;
/external/lzma/CPP/7zip/UI/Common/
H A DSortUtils.cpp17 int numItems = strings.Size();
H A DDirItem.h12 UInt64 Size; member in struct:CDirItem
35 int GetNumFolders() const { return Prefixes.Size(); }
56 UInt64 Size; member in struct:CArcItem
/external/clang/lib/Frontend/
H A DLayoutOverrideSource.cpp78 StringRef::size_type Pos = LineStr.find(" Size:");
80 // Skip past the " Size:" prefix.
81 LineStr = LineStr.substr(Pos + strlen(" Size:"));
83 unsigned long long Size = 0; local
84 (void)LineStr.getAsInteger(10, Size);
85 CurrentLayout.Size = Size;
108 unsigned long long Size = 0; local
109 (void)LineStr.getAsInteger(10, Size);
110 CurrentLayout.Size
156 layoutRecordType(const RecordDecl *Record, uint64_t &Size, uint64_t &Alignment, llvm::DenseMap<const FieldDecl *, uint64_t> &FieldOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &BaseOffsets, llvm::DenseMap<const CXXRecordDecl *, CharUnits> &VirtualBaseOffsets) argument
[all...]
/external/deqp/framework/common/
H A DtcuSeedBuilder.hpp68 template<class T, int Size>
69 SeedBuilder& operator<< (SeedBuilder& builder, const tcu::Vector<T, Size>& value)
71 for (int i = 0; i < Size; i++)
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample5_unittest.cc174 EXPECT_EQ(0u, q0_.Size());
185 EXPECT_EQ(0u, q1_.Size());
191 EXPECT_EQ(1u, q2_.Size());
/external/llvm/lib/Fuzzer/
H A DFuzzerCrossOver.cpp19 size_t Size = rand() % MaxLen + 1; local
25 while (U->size() < Size && (PosA < A.size() || PosB < B.size())) {
27 size_t SizeLeftU = Size - U->size();
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h85 void EmitBytes(const uint8_t *Opcode, size_t Size) { argument
86 Ops.insert(Ops.end(), Opcode, Opcode + Size);
87 OpBegins.push_back(OpBegins.back() + Size);
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, argument
39 sys::MemoryBlock Block = allocateSection(Size);
48 allocateDataSection(uintptr_t Size, unsigned Alignment, argument
55 sys::MemoryBlock Block = allocateSection(Size);
63 sys::MemoryBlock RemoteMemoryManager::allocateSection(uintptr_t Size) { argument
65 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(Size,
101 unsigned Size = Section.MB.size(); local
103 DEBUG(dbgs() << "code region: size " << Size
110 CurOffset += Size;
118 unsigned Size local
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.cpp17 int left = 0, mid = _streamIndex, right = Streams.Size();
23 else if (_pos >= m.GlobalOffset + m.Size)
41 UInt64 rem = s.Size - localPos;
123 if (_streamIndex >= Streams.Size())
126 RINOK(VolumeCallback->GetVolumeSize(Streams.Size(), &subStream.Size));
127 RINOK(VolumeCallback->GetVolumeStream(Streams.Size(), &subStream.Stream));
133 if (_offsetPos >= subStream.Size)
135 _offsetPos -= subStream.Size;
147 UInt32 curSize = (UInt32)MyMin((UInt64)size, subStream.Size
[all...]
/external/llvm/include/llvm/CodeGen/
H A DDIE.h117 /// Size - Size of instance + children.
119 unsigned Size; member in class:llvm::DIE
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; }
477 mutable unsigned Size; // Size in bytes excluding size header. member in class:llvm::DIELoc
479 DIELoc() : DIEValue(isLoc), Size(
520 mutable unsigned Size; // Size in bytes excluding size header. member in class:llvm::DIEBlock
[all...]
/external/llvm/include/llvm/ADT/
H A DBitVector.h36 unsigned Size; // Size of bitvector in bits. member in class:llvm::BitVector
37 unsigned Capacity; // Size of allocated memory in BitWord.
78 BitVector() : Size(0), Capacity(0) {
84 explicit BitVector(unsigned s, bool t = false) : Size(s) {
93 BitVector(const BitVector &RHS) : Size(RHS.size()) {
94 if (Size == 0) {
106 : Bits(RHS.Bits), Size(RHS.Size), Capacity(RHS.Capacity) {
115 bool empty() const { return Size
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_vector.h47 uptr Size() const { function in class:__tsan::Vector
62 EnsureSize(Size() + 1);
69 EnsureSize(Size() + 1);
85 uptr old_size = Size();
100 if (size <= Size())
/external/llvm/include/llvm/Support/
H A DRecycler.h29 void PrintRecyclerStats(size_t Size, size_t Align, size_t FreeListSize);
65 template<class T, size_t Size = sizeof(T), size_t Align = AlignOf<T>::Alignment>
104 static_assert(sizeof(SubClass) <= Size,
108 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
122 PrintRecyclerStats(Size, Align, FreeList.size());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp46 void addSizeInfo(const Expr *Array, const Expr *Size,
61 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size, argument
64 SVal SizeV = State->getSVal(Size, C.getLocationContext());
119 const DefinedSVal *Size = State->get<ArraySizeMap>(ArraySym); local
121 if (!Size)
131 // Now, check if 'Idx in [0, Size-1]'.
133 ProgramStateRef StInBound = State->assumeInBound(Idx, *Size, true, T);
134 ProgramStateRef StOutBound = State->assumeInBound(Idx, *Size, false, T);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h62 if (c->Size() > max_cache_size_)
71 if (cache_.Size() > GetSize() && recycle_mutex_.TryLock())
92 while (cache_.Size() > min_size) {
127 uptr Size() const { function in class:__sanitizer::QuarantineCache
145 SizeAdd(c->Size());
168 atomic_store(&size_, Size() + add, memory_order_relaxed);
171 atomic_store(&size_, Size() - sub, memory_order_relaxed);

Completed in 604 milliseconds

1234567891011>>