Searched refs:Size (Results 201 - 225 of 1105) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DRandomNumberGenerator.h66 std::error_code getRandomBytes(void *Buffer, size_t Size);
H A DFileOutputBuffer.h46 /// file \p Size may be set to -1, in which case the entire file is used.
48 /// \p Size. It is an error to specify F_modify and Size=-1 if \p FilePath
51 create(StringRef FilePath, size_t Size, unsigned Flags = 0);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64SelectionDAGInfo.h24 SDValue Size, unsigned Align, bool isVolatile,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLegalizerInfo.h61 // Get the libcall(s) corresponding to \p Predicate for operands of \p Size
63 FCmpLibcallsList getFCmpLibcalls(CmpInst::Predicate, unsigned Size) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugPubTable.h57 uint32_t Size; member in struct:llvm::DWARFDebugPubTable::Set
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DFunctionInfo.h43 /// uint32_t Size The size in bytes of this function.
78 /// uint32_t Size;
94 FunctionInfo(uint64_t Addr = 0, uint64_t Size = 0, uint32_t N = 0)
95 : Range(Addr, Addr + Size), Name(N) {}
177 void setSize(uint64_t Size) { Range.End = Range.Start + Size; } argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/
H A DARCDisassembler.cpp43 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
51 uint64_t &Size, uint32_t &Insn) {
52 Size = 4;
60 uint64_t &Size, uint64_t &Insn) {
61 Size = 8;
70 uint64_t &Size, uint64_t &Insn) {
71 Size = 6;
79 uint64_t &Size, uint32_t &Insn) {
80 Size = 2;
296 DecodeStatus ARCDisassembler::getInstruction(MCInst &Instr, uint64_t &Size,
50 readInstruction32(ArrayRef<uint8_t> Bytes, uint64_t Address, uint64_t &Size, uint32_t &Insn) argument
59 readInstruction64(ArrayRef<uint8_t> Bytes, uint64_t Address, uint64_t &Size, uint64_t &Insn) argument
69 readInstruction48(ArrayRef<uint8_t> Bytes, uint64_t Address, uint64_t &Size, uint64_t &Insn) argument
78 readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address, uint64_t &Size, uint32_t &Insn) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFixup.h137 static MCFixupKind getKindForSize(unsigned Size, bool IsPCRel) {
138 switch (Size) {
153 static MCFixupKind getKindForSizeInBits(unsigned Size, bool IsPCRel) {
154 switch (Size) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDelinearization.cpp110 int Size = Subscripts.size(); local
111 for (int i = 0; i < Size - 1; i++)
113 O << " with elements of " << *Sizes[Size - 1] << " bytes.\n";
116 for (int i = 0; i < Size; i++)
H A DLoads.cpp53 const Value *V, Align Alignment, const APInt &Size, const DataLayout &DL,
66 Size, DL, CtxI, DT, Visited);
69 APInt KnownDerefBytes(Size.getBitWidth(),
71 if (KnownDerefBytes.getBoolValue() && KnownDerefBytes.uge(Size))
92 // If the base pointer is dereferenceable for Offset+Size bytes, then the
93 // GEP (== Base + Offset) is dereferenceable for Size bytes. If the base
98 // Offset and Size may have different bit widths if we have visited an
101 Base, Alignment, Offset + Size.sextOrTrunc(Offset.getBitWidth()), DL,
108 RelocateInst->getDerivedPtr(), Alignment, Size, DL, CtxI, DT, Visited);
112 Size, D
52 isDereferenceableAndAlignedPointer( const Value *V, Align Alignment, const APInt &Size, const DataLayout &DL, const Instruction *CtxI, const DominatorTree *DT, SmallPtrSetImpl<const Value *> &Visited) argument
123 isDereferenceableAndAlignedPointer(const Value *V, Align Alignment, const APInt &Size, const DataLayout &DL, const Instruction *CtxI, const DominatorTree *DT) argument
262 isSafeToLoadUnconditionally(Value *V, MaybeAlign MA, APInt &Size, const DataLayout &DL, Instruction *ScanFrom, const DominatorTree *DT) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DWinCFGuard.h32 void setSymbolSize(const MCSymbol *Sym, uint64_t Size) override {}
H A DDwarfExpression.cpp123 unsigned Size = TRI.getSubRegIdxSize(Idx); local
127 setSubRegisterPiece(Size, RegOffset);
146 unsigned Size = TRI.getSubRegIdxSize(Idx); local
155 CurSubReg.set(Offset, Offset + Size);
165 {Reg, std::min<unsigned>(Size, MaxSize - Offset), "sub-register"});
168 Coverage.set(Offset, Offset + Size);
169 CurPos = Offset + Size;
202 unsigned Size = Value.getBitWidth(); local
208 while (Offset < Size) {
210 if (Offset == 0 && Size <
338 unsigned Size = getTemporaryBufferSize(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.h27 void WriteToFile(const uint8_t *Data, size_t Size, const std::string &Path);
78 size_t Size; member in struct:fuzzer::SizedFile
79 bool operator<(const SizedFile &B) const { return Size < B.Size; }
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.cpp36 uptr IgnoreSet::Size() const { function in class:__tsan::IgnoreSet
H A Dtsan_report.cpp140 for (uptr i = 0; i < mset.Size(); i++) {
145 Printf(i == mset.Size() - 1 ? ")" : ",");
284 if (rep->mops.Size())
286 if (rep->stacks.Size())
288 if (rep->mutexes.Size())
290 if (rep->threads.Size())
328 for (uptr i = 0; i < rep->mutexes.Size(); i++)
331 CHECK_GT(rep->mutexes.Size(), 0U);
332 CHECK_EQ(rep->mutexes.Size() * (flags()->second_deadlock_stack ? 2 : 1),
333 rep->stacks.Size());
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_buffer_queue.cpp30 BufferQueue::ControlBlock *allocControlBlock(size_t Size, size_t Count) { argument
32 allocateBuffer((sizeof(BufferQueue::ControlBlock) - 1) + (Size * Count));
37 void deallocControlBlock(BufferQueue::ControlBlock *C, size_t Size, argument
40 (sizeof(BufferQueue::ControlBlock) - 1) + (Size * Count));
43 void decRefCount(BufferQueue::ControlBlock *C, size_t Size, size_t Count) { argument
47 deallocControlBlock(C, Size, Count);
130 Buf.Size = BufferSize;
192 decRefCount(Buf.BackingStore, Buf.Size, Buf.Count);
210 decRefCount(Buf.BackingStore, Buf.Size, Buf.Count);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DIRBuilder.cpp99 CallInst *IRBuilderBase::CreateMemSet(Value *Ptr, Value *Val, Value *Size, argument
104 Value *Ops[] = {Ptr, Val, Size, getInt1(isVolatile)};
105 Type *Tys[] = { Ptr->getType(), Size->getType() };
128 Value *Ptr, Value *Val, Value *Size, Align Alignment, uint32_t ElementSize,
132 Value *Ops[] = {Ptr, Val, Size, getInt32(ElementSize)};
133 Type *Tys[] = {Ptr->getType(), Size->getType()};
156 unsigned SrcAlign, Value *Size,
161 Size, isVolatile, TBAATag, TBAAStructTag, ScopeTag,
167 Value *Size, bool isVolatile,
173 Value *Ops[] = {Dst, Src, Size, getInt
127 CreateElementUnorderedAtomicMemSet( Value *Ptr, Value *Val, Value *Size, Align Alignment, uint32_t ElementSize, MDNode *TBAATag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
155 CreateMemCpy(Value *Dst, unsigned DstAlign, Value *Src, unsigned SrcAlign, Value *Size, bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
165 CreateMemCpy(Value *Dst, MaybeAlign DstAlign, Value *Src, MaybeAlign SrcAlign, Value *Size, bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
203 CreateElementUnorderedAtomicMemCpy( Value *Dst, unsigned DstAlign, Value *Src, unsigned SrcAlign, Value *Size, uint32_t ElementSize, MDNode *TBAATag, MDNode *TBAAStructTag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
244 CreateMemMove(Value *Dst, MaybeAlign DstAlign, Value *Src, MaybeAlign SrcAlign, Value *Size, bool isVolatile, MDNode *TBAATag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
278 CreateElementUnorderedAtomicMemMove( Value *Dst, unsigned DstAlign, Value *Src, unsigned SrcAlign, Value *Size, uint32_t ElementSize, MDNode *TBAATag, MDNode *TBAAStructTag, MDNode *ScopeTag, MDNode *NoAliasTag) argument
406 CreateLifetimeStart(Value *Ptr, ConstantInt *Size) argument
422 CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) argument
438 CreateInvariantStart(Value *Ptr, ConstantInt *Size) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBranchRelaxation.cpp56 /// Size - Size of the basic block in bytes. If the block contains
61 unsigned Size = 0; member in struct:__anon1694::BranchRelaxation::BasicBlockInfo
68 const unsigned PO = Offset + Size;
134 assert(BlockInfo[Num].Size == computeBlockSize(MBB));
146 << format("size=%#x\n", BBI.Size);
162 BlockInfo[MBB.getNumber()].Size = computeBlockSize(MBB);
170 uint64_t Size = 0; local
172 Size += TII->getInstSizeInBytes(MI);
173 return Size;
[all...]
H A DSafeStackLayout.h42 unsigned Size, Alignment; member in struct:llvm::safestack::StackLayout::StackObject
58 void addObject(const Value *V, unsigned Size, unsigned Alignment,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h105 support::ulittle32_t Size; member in struct:llvm::pdb::HashTable::Header
127 if (H->Size > maxLoad(H->Capacity))
129 "Invalid Hash Table Size");
135 if (Present.count() != H->Size)
158 uint32_t Size = sizeof(Header); local
170 Size += sizeof(uint32_t);
171 Size += NumWordsP * sizeof(uint32_t);
175 Size += sizeof(uint32_t);
176 Size += NumWordsD * sizeof(uint32_t);
179 Size
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp60 ExternalLayout() : Size(0), Align(0) {}
63 uint64_t Size; member in struct:__anon265::ExternalLayout
585 /// Size - The current size of the record layout.
586 uint64_t Size; member in class:__anon265::ItaniumRecordLayoutBuilder
635 /// If we've laid out a field but not included its tail padding in Size yet,
679 : Context(Context), EmptySubobjects(EmptySubobjects), Size(0),
785 assert(Size % Context.getCharWidth() == 0);
786 return Context.toCharUnitsFromBits(Size);
788 uint64_t getSizeInBits() const { return Size; }
790 void setSize(CharUnits NewSize) { Size
1390 roundUpSizeToCharAlignment(uint64_t Size, const ASTContext &Context) argument
1414 uint64_t Size = Context.getTypeSize(QT); local
2299 CharUnits Size; member in struct:__anon266::MicrosoftRecordLayoutBuilder::ElementInfo
2354 CharUnits Size; member in struct:__anon266::MicrosoftRecordLayoutBuilder
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbol.cpp35 size_t Size = s + (Name ? sizeof(NameEntryStorageTy) : 0); local
42 void *Storage = Ctx.allocate(Size, alignof(NameEntryStorageTy));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCELFStreamer.h35 void HexagonMCEmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
38 void HexagonMCEmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.h59 void EmitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc) override;
60 void EmitIntValue(uint64_t Value, unsigned Size) override;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h46 void setFormalArgInfo(unsigned Size, bool HasByval) { argument
47 IncomingArgSize = Size;
105 /// Size of incoming argument area.

Completed in 458 milliseconds

1234567891011>>