Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.h68 static constexpr unsigned RootPtrMark = ~0u; variable
105 if (Base == RootPtrMark) in atIndex()
136 if (Base == RootPtrMark) in narrow()
183 return Pointer(Pointee, RootPtrMark, 0); in expand()
210 if (Base == RootPtrMark) { in getBase()
220 if (Base == RootPtrMark) { in getArray()
230 if (Base == 0 || Base == RootPtrMark) in getFieldDesc()
246 if (Base == RootPtrMark) in elemSize()
256 if (Base == RootPtrMark) in getOffset()
285 return (Base == 0 || Base == RootPtrMark) && Offset == 0; in isRoot()
[all …]
H A DPointer.cpp37 assert((Base == RootPtrMark || Base % alignof(void *) == 0) && "wrong base"); in Pointer()