Searched refs:UserPtr (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/ |
H A D | guarded_pool_allocator.cpp | 244 uintptr_t UserPtr; in allocate() local 248 UserPtr = alignUp(SlotStart, Alignment); in allocate() 250 UserPtr = alignDown(SlotEnd - Size, Alignment); in allocate() 252 assert(UserPtr >= SlotStart); in allocate() 253 assert(UserPtr + Size <= SlotEnd); in allocate() 260 reinterpret_cast<void *>(getPageAddr(UserPtr, PageSize)), in allocate() 263 Meta->RecordAllocation(UserPtr, Size); in allocate() 269 return reinterpret_cast<void *>(UserPtr); in allocate()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | combined.h | 413 const uptr UserPtr = roundUp( variable 416 ClassId ? Size : SecondaryBlockEnd - (UserPtr + Size); 419 return initChunk(ClassId, Origin, Block, UserPtr, SizeOrUnusedBytes, 423 return initChunkWithMemoryTagging(ClassId, Origin, Block, UserPtr, Size, 1065 void *Block, const uptr UserPtr, in initChunk() argument 1084 if (UNLIKELY(DefaultAlignedPtr != UserPtr)) { in initChunk() 1085 const uptr Offset = UserPtr - DefaultAlignedPtr; in initChunk() 1100 Chunk::storeHeader(Cookie, reinterpret_cast<void *>(addHeaderTag(UserPtr)), in initChunk() 1103 return reinterpret_cast<void *>(UserPtr); in initChunk() 1108 void *Block, const uptr UserPtr, const uptr Size, in initChunkWithMemoryTagging() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 51180 SDValue UserPtr = UserLd->getBasePtr(); in combineConstantPoolLoads() local 51181 const Constant *UserC = getTargetConstantFromBasePtr(UserPtr); in combineConstantPoolLoads() 51185 if (UserC && UserPtr != Ptr) { in combineConstantPoolLoads()
|