Home
last modified time | relevance | path

Searched refs:isPtrType (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/tools/syscalls/tools/
H A Dutil.lua121 function util.isPtrType(type, abi) function
142 if util.isPtrType(type) then
/freebsd/sys/tools/syscalls/core/
H A Dscarg.lua79 if util.isPtrType(self.type) then
H A Dsyscall.lua83 if util.isPtrType(v.type, config.abi_intptr_t) then
/freebsd/sys/tools/syscalls/scripts/
H A Dsystrace_args.lua150 if util.isPtrType(argtype,
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DPrimType.h51 inline constexpr bool isPtrType(PrimType T) { in isPtrType() function
H A DCompiler.cpp351 assert(isPtrType(FromT)); in VisitCastExpr()
437 assert(isPtrType(*FromT)); in VisitCastExpr()
438 assert(isPtrType(*ToT)); in VisitCastExpr()
764 if (isPtrType(*T) || (isPtrType(*LT) && isPtrType(*RT))) in VisitBinaryOperator()
3889 if (PrimType PT = classifyPrim(E); PT != PT_Ptr && isPtrType(PT)) in VisitBuiltinCallExpr()
5258 if (isPtrType(PT)) in visitDeclRef()
H A DInterp.h2815 static_assert(isPtrType(TIn) && isPtrType(TOut)); in DecayPtr()