Home
last modified time | relevance | path

Searched defs:Size (Results 1 – 25 of 1054) sorted by relevance

12345678910>>...43

/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dmem_map.cpp15 bool MemMapDefault::mapImpl(uptr Addr, uptr Size, const char *Name, in mapImpl()
27 void MemMapDefault::unmapImpl(uptr Addr, uptr Size) { in unmapImpl()
41 bool MemMapDefault::remapImpl(uptr Addr, uptr Size, const char *Name, in remapImpl()
50 void MemMapDefault::releaseAndZeroPagesToOSImpl(uptr From, uptr Size) { in releaseAndZeroPagesToOSImpl()
56 void MemMapDefault::setMemoryPermissionImpl(uptr Addr, uptr Size, uptr Flags) { in setMemoryPermissionImpl()
64 bool ReservedMemoryDefault::createImpl(uptr Addr, uptr Size, const char *Name, in createImpl()
78 uptr Size) { in dispatchImpl()
H A Dmem_map_linux.cpp46 static void *mmapWrapper(uptr Addr, uptr Size, const char *Name, uptr Flags) { in mmapWrapper()
81 bool MemMapLinux::mapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags) { in mapImpl()
91 void MemMapLinux::unmapImpl(uptr Addr, uptr Size) { in unmapImpl()
108 bool MemMapLinux::remapImpl(uptr Addr, uptr Size, const char *Name, in remapImpl()
116 void MemMapLinux::setMemoryPermissionImpl(uptr Addr, uptr Size, uptr Flags) { in setMemoryPermissionImpl()
122 void MemMapLinux::releaseAndZeroPagesToOSImpl(uptr From, uptr Size) { in releaseAndZeroPagesToOSImpl()
129 bool ReservedMemoryLinux::createImpl(uptr Addr, uptr Size, const char *Name, in createImpl()
147 uptr Size) { in dispatchImpl()
H A Dmem_map_base.h33 void unmap(uptr Addr, uptr Size) { in unmap()
50 void setMemoryPermission(uptr Addr, uptr Size, uptr Flags) { in setMemoryPermission()
59 void releasePagesToOS(uptr From, uptr Size) { in releasePagesToOS()
66 void releaseAndZeroPagesToOS(uptr From, uptr Size) { in releaseAndZeroPagesToOS()
109 MemMapT dispatch(uptr Addr, uptr Size) { in dispatch()
H A Dmem_map_fuchsia.cpp24 uptr Size) { in dieOnError() argument
142 Size, nullptr, 0); in unmapImpl() argument
96 mapImpl(UNUSED uptr Addr,uptr Size,const char * Name,uptr Flags) mapImpl() argument
171 remapImpl(uptr Addr,uptr Size,const char * Name,uptr Flags) remapImpl() argument
206 releaseAndZeroPagesToOSImpl(uptr From,uptr Size) releaseAndZeroPagesToOSImpl() argument
212 setMemoryPermissionImpl(uptr Addr,uptr Size,uptr Flags) setMemoryPermissionImpl() argument
223 createImpl(UNUSED uptr Addr,uptr Size,UNUSED const char * Name,uptr Flags) createImpl() argument
246 dispatchImpl(uptr Addr,uptr Size) dispatchImpl() argument
[all...]
H A Dfuchsia.cpp36 uptr Size) { in dieOnError() argument
45 allocateVmar(uptr Size,MapPlatformData * Data,bool AllowNoMem) allocateVmar() argument
62 map(void * Addr,uptr Size,const char * Name,uptr Flags,MapPlatformData * Data) map() argument
144 unmap(void * Addr,uptr Size,uptr Flags,MapPlatformData * Data) unmap() argument
168 setMemoryPermission(UNUSED uptr Addr,UNUSED uptr Size,UNUSED uptr Flags,UNUSED MapPlatformData * Data) setMemoryPermission() argument
179 releasePagesToOS(UNUSED uptr BaseAddress,uptr Offset,uptr Size,MapPlatformData * Data) releasePagesToOS() argument
[all...]
H A Dwrappers_c_checks.h33 inline bool checkAlignedAllocAlignmentAndSize(uptr Alignment, uptr Size) { in checkAlignedAllocAlignmentAndSize() argument
48 return __builtin_umull_overflow(Size, N, in checkForCallocOverflow() argument
66 checkForPvallocOverflow(uptr Size,uptr PageSize) checkForPvallocOverflow() argument
[all...]
H A Dtrusty.cpp34 void *map(void *Addr, uptr Size, const char *Name, uptr Flags, in map()
62 void unmap(UNUSED void *Addr, UNUSED uptr Size, UNUSED uptr Flags, in unmap()
68 void setMemoryPermission(UNUSED uptr Addr, UNUSED uptr Size, UNUSED uptr Flags, in setMemoryPermission()
72 UNUSED uptr Size, UNUSED MapPlatformData *Data) {} in releasePagesToOS()
/freebsd-src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerMutate.cpp70 size_t MutationDispatcher::Mutate_Custom(uint8_t *Data, size_t Size, in Mutate_Custom()
80 size_t MutationDispatcher::Mutate_CustomCrossOver(uint8_t *Data, size_t Size, in Mutate_CustomCrossOver()
109 size_t MutationDispatcher::Mutate_ShuffleBytes(uint8_t *Data, size_t Size, in Mutate_ShuffleBytes()
120 size_t MutationDispatcher::Mutate_EraseBytes(uint8_t *Data, size_t Size, in Mutate_EraseBytes()
132 size_t MutationDispatcher::Mutate_InsertByte(uint8_t *Data, size_t Size, in Mutate_InsertByte()
143 size_t Size, in Mutate_InsertRepeatedBytes()
161 size_t MutationDispatcher::Mutate_ChangeByte(uint8_t *Data, size_t Size, in Mutate_ChangeByte()
169 size_t MutationDispatcher::Mutate_ChangeBit(uint8_t *Data, size_t Size, in Mutate_ChangeBit()
178 size_t Size, in Mutate_AddWordFromManualDictionary()
183 size_t MutationDispatcher::ApplyDictionaryEntry(uint8_t *Data, size_t Size, in ApplyDictionaryEntry()
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackReader.cpp164 uint8_t Size = FB & ~FixBitsMask::String; in read() local
189 T Size = endian::read<T, Endianness>(Current); in readRaw() local
229 T Size = endian::read<T, Endianness>(Current); in readExt() local
234 Expected<bool> Reader::createRaw(Object &Obj, uint32_t Size) { in createRaw()
244 Expected<bool> Reader::createExt(Object &Obj, uint32_t Size) { in createExt()
H A DMsgPackWriter.cpp104 size_t Size = s.size(); in write() local
126 size_t Size = Buffer.getBufferSize(); in write() local
143 void Writer::writeArraySize(uint32_t Size) { in writeArraySize()
159 void Writer::writeMapSize(uint32_t Size) { in writeMapSize()
176 size_t Size = Buffer.getBufferSize(); in writeExt() local
/freebsd-src/contrib/llvm-project/clang/lib/AST/
H A DOSLog.cpp25 std::optional<unsigned> Size; member
140 CharUnits Size = CharUnits::fromQuantity(8); in computeLayout() local
146 CharUnits Size = Ctx.getTypeSizeInChars((*Data.FieldWidth)->getType()); in computeLayout() local
151 CharUnits Size = Ctx.getTypeSizeInChars((*Data.Precision)->getType()); in computeLayout() local
157 CharUnits Size = Ctx.getTypeSizeInChars((*Data.Count)->getType()); in computeLayout() local
165 CharUnits Size; in computeLayout() local
172 auto Size = Ctx.getTypeSizeInChars(Data.E->getType()); in computeLayout() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/
H A DAllocatorBase.h44 void *Allocate(size_t Size, size_t Alignment) { in Allocate()
58 void Deallocate(const void *Ptr, size_t Size, size_t Alignment) { in Deallocate()
91 LLVM_ATTRIBUTE_RETURNS_NONNULL void *Allocate(size_t Size, size_t Alignment) { in Allocate()
98 void Deallocate(const void *Ptr, size_t Size, size_t Alignment) { in Deallocate()
H A DAllocator.h148 LLVM_ATTRIBUTE_RETURNS_NONNULL void *Allocate(size_t Size, Align Alignment) { in Allocate() argument
207 Allocate(size_t Size,size_t Alignment) Allocate() argument
218 Deallocate(const void * Ptr,size_t Size,size_t) Deallocate() argument
246 size_t Size = CustomSizedSlabs[Idx].second; identifyObject() local
365 size_t Size = PtrAndSize.second; DeallocateCustomSizedSlabs() local
423 size_t Size = PtrAndSize.second; DestroyAll() local
440 new(size_t Size,llvm::BumpPtrAllocatorImpl<AllocatorT,SlabSize,SizeThreshold,GrowthDelay> & Allocator) new() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetStreamer.h20 virtual void emitFAlign(unsigned Size, unsigned MaxBytesToEmit){}; in emitFAlign() argument
21 virtual void emitCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size, in emitCommonSymbolSorted() argument
24 virtual void emitLocalCommonSymbolSorted(MCSymbol *Symbol, uint64_t Size, in emitLocalCommonSymbolSorted() argument
/freebsd-src/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/
H A DPPCRegisterBankInfo.cpp106 unsigned Size = Ty.getSizeInBits(); getInstrMapping() local
122 unsigned Size = getSizeInBits(SrcReg, MRI, TRI); getInstrMapping() local
157 unsigned Size = getSizeInBits(SrcReg, MRI, TRI); getInstrMapping() local
167 unsigned Size = getSizeInBits(SrcReg, MRI, TRI); getInstrMapping() local
175 unsigned Size = MRI.getType(MI.getOperand(0).getReg()).getSizeInBits(); getInstrMapping() local
200 unsigned Size = MRI.getType(MI.getOperand(0).getReg()).getSizeInBits(); getInstrMapping() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRAsmBackend.cpp77 adjustBranch(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) adjustBranch() argument
88 adjustRelativeBranch(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) adjustRelativeBranch() argument
104 fixup_call(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) fixup_call() argument
120 fixup_7_pcrel(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) fixup_7_pcrel() argument
134 fixup_13_pcrel(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) fixup_13_pcrel() argument
212 fixup(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) fixup() argument
222 lo8(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) lo8() argument
228 hi8(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) hi8() argument
234 hh8(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) hh8() argument
240 ms8(unsigned Size,const MCFixup & Fixup,uint64_t & Value,MCContext * Ctx=nullptr) ms8() argument
256 uint64_t Size = AVRAsmBackend::getFixupKindInfo(Fixup.getKind()).TargetSize; adjustFixupValue() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/WebAssembly/Disassembler/
H A DWebAssemblyDisassembler.cpp76 nextByte(ArrayRef<uint8_t> Bytes,uint64_t & Size) nextByte() argument
84 nextLEB(int64_t & Val,ArrayRef<uint8_t> Bytes,uint64_t & Size,bool Signed) nextLEB() argument
99 parseLEBImmediate(MCInst & MI,uint64_t & Size,ArrayRef<uint8_t> Bytes,bool Signed) parseLEBImmediate() argument
109 parseImmediate(MCInst & MI,uint64_t & Size,ArrayRef<uint8_t> Bytes) parseImmediate() argument
125 onSymbolStart(SymbolInfoTy & Symbol,uint64_t & Size,ArrayRef<uint8_t> Bytes,uint64_t Address,raw_ostream & CStream) const onSymbolStart() argument
162 getInstruction(MCInst & MI,uint64_t & Size,ArrayRef<uint8_t> Bytes,uint64_t,raw_ostream & CS) const getInstruction() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp92 size_t Size) { in registerEHFramesInProcess()
103 size_t Size) { in deregisterEHFramesInProcess()
113 size_t Size) { in registerEHFramesInProcess()
123 size_t Size) { in deregisterEHFramesInProcess()
130 size_t Size) { in registerEHFrames()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DSimplePackedSerialization.h59 bool write(const char *Data, size_t Size) { in write()
80 bool read(char *Data, size_t Size) { in read()
90 bool skip(size_t Size) { in skip()
279 static void reserve(std::string &S, uint64_t Size) { S.reserve(Size); } in reserve()
301 static void reserve(std::vector<T> &V, uint64_t Size) { V.reserve(Size); } in reserve()
323 static void reserve(SmallVectorImpl<T> &V, uint64_t Size) { V.reserve(Size); } in reserve()
368 uint64_t Size; in deserialize() local
387 size_t Size = SPSArgList<uint64_t>::size(static_cast<uint64_t>(S.size())); in size() local
404 uint64_t Size; in deserialize() local
482 size_t Size = SPSArgList<bool>::size(!!Value); in size() local
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/orc/
H A Dsimple_packed_serialization.h58 bool write(const char *Data, size_t Size) { in write()
78 bool read(char *Data, size_t Size) { in read()
88 bool skip(size_t Size) { in skip()
270 static void reserve(std::string &S, uint64_t Size) { S.reserve(Size); } in reserve()
299 static void reserve(std::vector<T> &V, uint64_t Size) { V.reserve(Size); } in reserve()
325 static void reserve(std::unordered_map<K, V> &M, uint64_t Size) { in reserve()
342 size_t Size = SPSArgList<uint64_t>::size(static_cast<uint64_t>(S.size())); in size() local
359 uint64_t Size; in deserialize() local
387 uint64_t Size; in deserialize() local
458 size_t Size = SPSArgList<bool>::size(!!Value); in size() local
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DJITLoaderGDB.cpp47 appendJITDebugDescriptor(const char * ObjAddr,size_t Size) appendJITDebugDescriptor() argument
78 llvm_orc_registerJITLoaderGDBAllocAction(const char * Data,size_t Size) llvm_orc_registerJITLoaderGDBAllocAction() argument
94 llvm_orc_registerJITLoaderGDBWrapper(const char * Data,uint64_t Size) llvm_orc_registerJITLoaderGDBWrapper() argument
/freebsd-src/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp60 createScalarTypeNode(StringRef Name,llvm::MDNode * Parent,uint64_t Size) createScalarTypeNode() argument
116 uint64_t Size = Context.getTypeSizeInChars(Ty).getQuantity(); getTypeInfoHelper() local
267 uint64_t Size = Context.getTypeSizeInChars(AccessType).getQuantity(); getAccessInfo() local
273 unsigned Size = DL.getPointerTypeSize(VTablePtrType); getVTablePtrAccessInfo() local
315 uint64_t Size = Context.getTypeSizeInChars(QTy).getQuantity(); CollectFields() local
362 uint64_t Size = getBaseTypeInfoHelper() local
388 uint64_t Size = Context.getTypeSizeInChars(FieldQTy).getQuantity(); getBaseTypeInfoHelper() local
404 uint64_t Size = Context.getTypeSizeInChars(Ty).getQuantity(); getBaseTypeInfoHelper() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DMemAlloc.cpp15 llvm::allocate_buffer(size_t Size, size_t Alignment) { in allocate_buffer()
24 void llvm::deallocate_buffer(void *Ptr, size_t Size, size_t Alignment) { in deallocate_buffer()
H A DFormattedStream.cpp26 void formatted_raw_ostream::UpdatePosition(const char *Ptr, size_t Size) { in UpdatePosition()
96 void formatted_raw_ostream::ComputePosition(const char *Ptr, size_t Size) { in ComputePosition()
127 void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) { in write_impl()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64RegisterBankInfo.cpp121 CHECK_VALUEMAP_IMPL(RBName,Size,Offset) AArch64RegisterBankInfo() argument
129 CHECK_VALUEMAP(RBName,Size) AArch64RegisterBankInfo() argument
143 CHECK_VALUEMAP_3OPS(RBName,Size) AArch64RegisterBankInfo() argument
159 CHECK_VALUEMAP_CROSSREGCPY(RBNameDst,RBNameSrc,Size) AArch64RegisterBankInfo() argument
303 unsigned Size = getSizeInBits(MI.getOperand(0).getReg(), MRI, TRI); getInstrAlternativeMappings() local
324 unsigned Size = getSizeInBits(MI.getOperand(0).getReg(), MRI, TRI); getInstrAlternativeMappings() local
364 unsigned Size = getSizeInBits(MI.getOperand(0).getReg(), MRI, TRI); getInstrAlternativeMappings() local
462 unsigned Size = Ty.getSizeInBits(); getSameKindOfOperandsMapping() local
725 unsigned Size = getSizeInBits(DstReg, MRI, TRI); getInstrMapping() local
738 unsigned Size = DstTy.getSizeInBits(); getInstrMapping() local
[all...]

12345678910>>...43