Searched refs:Size (Results 176 - 200 of 1105) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp80 *stack_count = rep->stacks.Size();
81 *mop_count = rep->mops.Size();
82 *loc_count = rep->locs.Size();
83 *mutex_count = rep->mutexes.Size();
84 *thread_count = rep->threads.Size();
85 *unique_tid_count = rep->unique_tids.Size();
101 CHECK_LT(idx, rep->stacks.Size());
112 CHECK_LT(idx, rep->mops.Size());
129 CHECK_LT(idx, rep->locs.Size());
146 CHECK_LT(idx, rep->locs.Size());
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp72 uint64_t Size; member in class:__anon2048::InitializerBuilder
90 InitializerBuilder(uint64_t Size, const DataLayout *DL, Value *BasePtr, argument
93 : Size(Size), DL(DL), BasePtr(BasePtr), SetTagFn(SetTagFn),
187 emitUndef(IRB, 0, Size);
195 for (uint64_t Offset = 0; Offset < Size; Offset += 16) {
214 if (LastOffset < Size)
215 emitZeroes(IRB, LastOffset, Size - LastOffset);
222 void emitZeroes(IRBuilder<> &IRB, uint64_t Offset, uint64_t Size) { argument
223 LLVM_DEBUG(dbgs() << " [" << Offset << ", " << Offset + Size local
232 emitUndef(IRBuilder< &IRB, uint64_t Offset, uint64_t Size) argument
233 LLVM_DEBUG(dbgs() << " [" << Offset << ", " << Offset + Size local
333 collectInitializers(Instruction *StartInst, Value *StartPtr, uint64_t Size, InitializerBuilder &IB) argument
407 tagAlloca(AllocaInst *AI, Instruction *InsertBefore, Value *Ptr, uint64_t Size) argument
420 << ", size = " << Size << "\\n"); local
428 untagAlloca(AllocaInst *AI, Instruction *InsertBefore, uint64_t Size) argument
467 uint64_t Size = Info.AI->getAllocationSizeInBits(*DL).getValue() / 8; local
636 uint64_t Size = local
667 uint64_t Size = Info.AI->getAllocationSizeInBits(*DL).getValue() / 8; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp96 if (size_t Size = preferred_buffer_size())
97 SetBufferSize(Size);
103 void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, argument
105 assert(((Mode == BufferKind::Unbuffered && !BufferStart && Size == 0) ||
106 (Mode != BufferKind::Unbuffered && BufferStart && Size != 0)) &&
115 OutBufEnd = OutBufStart+Size;
242 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { argument
244 if (LLVM_UNLIKELY(size_t(OutBufEnd - OutBufCur) < Size)) {
247 write_impl(Ptr, Size);
252 return write(Ptr, Size);
285 copy_to_buffer(const char *Ptr, size_t Size) argument
408 const size_t Size = Bytes.size(); local
687 write_impl(const char *Ptr, size_t Size) argument
767 pwrite_impl(const char *Ptr, size_t Size, uint64_t Offset) argument
902 write_impl(const char *Ptr, size_t Size) argument
912 write_impl(const char *Ptr, size_t Size) argument
916 pwrite_impl(const char *Ptr, size_t Size, uint64_t Offset) argument
934 write_impl(const char *Ptr, size_t Size) argument
941 pwrite_impl(const char *Ptr, size_t Size, uint64_t Offset) argument
[all...]
H A DBinaryStreamWriter.cpp37 unsigned Size = encodeULEB128(Value, &EncodedBytes[0]); local
38 return writeBytes({EncodedBytes, Size});
43 unsigned Size = encodeSLEB128(Value, &EncodedBytes[0]); local
44 return writeBytes({EncodedBytes, Size});
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp86 /// Size - This is the number of bytes of file this node (including any
88 unsigned Size = 0; member in class:__anon680::RopePieceBTreeNode
99 unsigned size() const { return Size; }
163 Size = 0;
195 /// FullRecomputeSizeLocally - This method recomputes the 'Size' field by
198 Size = 0;
200 Size += getPiece(i).size();
264 Size -= Pieces[i].size();
266 Size += Pieces[i].size();
299 Size
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h53 /// Size - section size. Doesn't include the stubs.
54 size_t Size; member in class:llvm::SectionEntry
77 : Name(name), Address(address), Size(size),
95 size_t getSize() const { return Size; }
149 unsigned Size; member in class:llvm::RelocationEntry
156 SymOffset(0), IsPCRel(false), Size(0), IsTargetThumbFunc(false) {}
161 SymOffset(symoffset), IsPCRel(false), Size(0),
165 bool IsPCRel, unsigned Size)
167 SymOffset(0), IsPCRel(IsPCRel), Size(Size), IsTargetThumbFun
164 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, bool IsPCRel, unsigned Size) argument
169 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB, uint64_t SectionBOffset, bool IsPCRel, unsigned Size) argument
179 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, unsigned SectionA, uint64_t SectionAOffset, unsigned SectionB, uint64_t SectionBOffset, bool IsPCRel, unsigned Size, bool IsTargetThumbFunc) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DMDBuilder.h168 uint64_t Size; member in struct:llvm::MDBuilder::TBAAStructField
170 TBAAStructField(uint64_t Offset, uint64_t Size, MDNode *Type) : argument
171 Offset(Offset), Size(Size), Type(Type) {}
196 MDNode *createTBAATypeNode(MDNode *Parent, uint64_t Size, Metadata *Id,
205 uint64_t Offset, uint64_t Size,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp243 lldb::addr_t &Address, lldb::addr_t *Size,
249 Token Tok = Size ? Token::Func : Token::Public;
265 if (!to_integer(Str, *Size, 16))
282 lldb::addr_t Address, Size, ParamSize; local
285 if (parsePublicOrFunc(Line, Multiple, Address, &Size, ParamSize, Name))
286 return FuncRecord(Multiple, Address, Size, ParamSize, Name);
293 L.Size == R.Size && L.ParamSize == R.ParamSize && L.Name == R.Name;
298 R.Multiple ? "m " : "", R.Address, R.Size,
309 lldb::addr_t Size;
242 parsePublicOrFunc(llvm::StringRef Line, bool &Multiple, lldb::addr_t &Address, lldb::addr_t *Size, lldb::addr_t &ParamSize, llvm::StringRef &Name) argument
[all...]
H A DBreakpadRecords.h95 FuncRecord(bool Multiple, lldb::addr_t Address, lldb::addr_t Size, argument
97 : Record(Module), Multiple(Multiple), Address(Address), Size(Size),
102 lldb::addr_t Size; member in class:lldb_private::breakpad::FuncRecord
113 LineRecord(lldb::addr_t Address, lldb::addr_t Size, uint32_t LineNum, argument
115 : Record(Line), Address(Address), Size(Size), LineNum(LineNum),
119 lldb::addr_t Size; member in class:lldb_private::breakpad::LineRecord
147 StackCFIRecord(lldb::addr_t Address, llvm::Optional<lldb::addr_t> Size, argument
149 : Record(StackCFI), Address(Address), Size(Siz
153 llvm::Optional<lldb::addr_t> Size; member in class:lldb_private::breakpad::StackCFIRecord
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSelectionDAGInfo.cpp21 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline,
23 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
41 Entry.Node = Size;
19 EmitTargetCodeForMemcpy( SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetObjectFile.cpp31 bool RISCVELFTargetObjectFile::isInSmallSection(uint64_t Size) const {
34 return Size > 0 && Size <= SSThreshold;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMSFBuilder.h73 Expected<uint32_t> addStream(uint32_t Size, ArrayRef<uint32_t> Blocks);
79 Expected<uint32_t> addStream(uint32_t Size);
84 Error setStreamSize(uint32_t Idx, uint32_t Size);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h118 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
127 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
178 uint8_t *allocateSection(AllocationPurpose Purpose, uintptr_t Size,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp25 SDValue Size, unsigned Align, RTLIB::Libcall LC) const {
80 Entry.Node = Size;
86 Entry.Node = Size;
103 Entry.Node = Size;
129 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline,
139 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
141 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align,
145 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Align,
243 SDValue Size, unsigned Align, bool isVolatile,
245 return EmitSpecializedLibcall(DAG, dl, Chain, Dst, Src, Size, Alig
23 EmitSpecializedLibcall( SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, RTLIB::Libcall LC) const argument
127 EmitTargetCodeForMemcpy( SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
241 EmitTargetCodeForMemmove( SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
249 EmitTargetCodeForMemset( SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangle.h58 char *allocUnalignedBuffer(size_t Size) { argument
63 Head->Used += Size;
67 addNode(std::max(AllocUnit, Size));
68 Head->Used = Size;
73 size_t Size = Count * sizeof(T); local
82 Head->Used += Size + Adjustment;
86 addNode(std::max(AllocUnit, Size));
87 Head->Used = Size;
92 constexpr size_t Size = sizeof(T); local
101 Head->Used += Size
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDataExtractor.cpp15 uint64_t DWARFDataExtractor::getRelocatedValue(uint32_t Size, uint64_t *Off, argument
21 return getUnsigned(Off, Size, Err);
23 uint64_t A = getUnsigned(Off, Size, Err);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpStack.h73 void *grow(size_t Size);
75 void *peek(size_t Size);
77 void shrink(size_t Size);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp64 uint32_t Size = 0; local
66 Size += sizeof(CrossModuleImport);
67 Size += sizeof(support::ulittle32_t) * Item.second.size();
69 return Size;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DSymbolSize.cpp64 uint64_t Size = Sec.getSize(); local
66 {O.symbol_end(), Address + Size, 0, getSectionID(O, Sec)});
85 uint64_t Size = Addresses[NextI].Address - P.Address; local
86 P.Address = Size;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h75 CharUnits Size; // size of the data, not including the header bytes member in class:clang::analyze_os_log::OSLogBufferItem
82 : TheKind(kind), TheExpr(expr), Size(size), Flags(flags),
91 Size(Ctx.getTypeSizeInChars(Ctx.IntTy)), Flags(flags) {}
106 CharUnits size() const { return Size; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp99 void MipsELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, argument
101 MCELFStreamer::EmitValueImpl(Value, Size, Loc);
105 void MipsELFStreamer::EmitIntValue(uint64_t Value, unsigned Size) { argument
106 MCELFStreamer::EmitIntValue(Value, Size);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16RegisterInfo.h37 const TargetRegisterClass *intRegClass(unsigned Size) const override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp105 unsigned Size = (BitSize + 7) / 8; local
107 assert(Offset + Size <= Data.size() && "Invalid fixup offset!");
109 // Big-endian insertion of Size bytes.
113 unsigned ShiftValue = (Size * 8) - 8;
114 for (unsigned I = 0; I != Size; ++I) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWinCOFFStreamer.h57 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
59 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
61 void EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
63 void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryItemStream.h41 Error readBytes(uint32_t Offset, uint32_t Size,
47 if (auto EC = checkOffsetForRead(Offset, Size))
49 if (Size > Traits::length(Item))
51 Buffer = Traits::bytes(Item).take_front(Size);

Completed in 309 milliseconds

1234567891011>>