Home
last modified time | relevance | path

Searched refs:RootPtrMark (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/Interp/
H A DPointer.h39 static constexpr unsigned RootPtrMark = (unsigned)-1; variable
56 if (Base == RootPtrMark) in atIndex()
57 return Pointer(Pointee, RootPtrMark, getDeclDesc()->getSize()); in atIndex()
79 if (Base == RootPtrMark) in narrow()
126 return Pointer(Pointee, RootPtrMark, 0); in expand()
149 if (Base == RootPtrMark) { in getBase()
159 if (Base == RootPtrMark) { in getArray()
169 if (Base == 0 || Base == RootPtrMark) in getFieldDesc()
179 if (Base == RootPtrMark) in elemSize()
189 if (Base == RootPtrMark) in getOffset()
[all …]
H A DPointer.cpp29 assert((Base == RootPtrMark || Base % alignof(void *) == 0) && "wrong base"); in Pointer()