Home
last modified time | relevance | path

Searched refs:UserPtr (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp233 uintptr_t UserPtr; in allocate() local
237 UserPtr = alignUp(SlotStart, Alignment); in allocate()
239 UserPtr = alignDown(SlotEnd - Size, Alignment); in allocate()
241 assert(UserPtr >= SlotStart); in allocate()
242 assert(UserPtr + Size <= SlotEnd); in allocate()
249 reinterpret_cast<void *>(getPageAddr(UserPtr, PageSize)), in allocate()
252 Meta->RecordAllocation(UserPtr, Size); in allocate()
258 return reinterpret_cast<void *>(UserPtr); in allocate()
/llvm-project-15.0.7/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp373 uptr UserPtr = reinterpret_cast<uptr>(BackendPtr) + Chunk::getHeaderSize(); in allocate() local
374 if (UNLIKELY(!IsAligned(UserPtr, Alignment))) { in allocate()
379 const uptr AlignedUserPtr = RoundUpTo(UserPtr, Alignment); in allocate()
380 Header.Offset = (AlignedUserPtr - UserPtr) >> MinAlignmentLog; in allocate()
381 UserPtr = AlignedUserPtr; in allocate()
383 DCHECK_LE(UserPtr + Size, reinterpret_cast<uptr>(BackendPtr) + BackendSize); in allocate()
394 const uptr TrailingBytes = (UserPtr + Size) & (PageSize - 1); in allocate()
398 void *Ptr = reinterpret_cast<void *>(UserPtr); in allocate()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dcombined.h383 const uptr UserPtr = roundUpTo(UnalignedUserPtr, Alignment); variable
385 void *Ptr = reinterpret_cast<void *>(UserPtr);
439 PrevUserPtr == UserPtr &&
440 (TaggedUserPtr = loadTag(UserPtr)) != UserPtr) {
488 if (UNLIKELY(UnalignedUserPtr != UserPtr)) {
489 const uptr Offset = UserPtr - UnalignedUserPtr;
503 (ClassId ? Size : SecondaryBlockEnd - (UserPtr + Size)) &
/llvm-project-15.0.7/polly/include/polly/CodeGen/
H A DIslNodeBuilder.h61 void addReferencesFromStmt(ScopStmt *Stmt, void *UserPtr,
/llvm-project-15.0.7/polly/lib/CodeGen/
H A DIslNodeBuilder.cpp247 void polly::addReferencesFromStmt(ScopStmt *Stmt, void *UserPtr, in addReferencesFromStmt() argument
249 auto &References = *static_cast<SubtreeReferences *>(UserPtr); in addReferencesFromStmt()
287 static void addReferencesFromStmtSet(isl::set Set, SubtreeReferences *UserPtr) { in addReferencesFromStmtSet() argument
290 addReferencesFromStmt(Stmt, UserPtr); in addReferencesFromStmtSet()