Home
last modified time | relevance | path

Searched refs:isPtrType (Results 1 – 8 of 8) 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/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRawPtrRefLambdaCapturesChecker.cpp38 virtual bool isPtrType(const std::string &) const = 0;
306 if (Checker->isPtrType(clsName) && CE->getNumArgs()) { in checkASTDecl()
340 if (!Checker->isPtrType(clsName) || !OpCE->getNumArgs()) in checkASTDecl()
472 virtual bool isPtrType(const std::string &Name) const final { in isPtrType() function in __anone86945dd0111::UncountedLambdaCapturesChecker
495 virtual bool isPtrType(const std::string &Name) const final { in isPtrType() function in __anone86945dd0111::UnretainedLambdaCapturesChecker
/freebsd/sys/tools/syscalls/scripts/
H A Dsystrace_args.lua150 if util.isPtrType(argtype,
/freebsd/sys/tools/syscalls/core/
H A Dscarg.lua95 if util.isPtrType(self.type) then
H A Dsyscall.lua83 if util.isPtrType(v.type, config.abi_intptr_t) then
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DPrimType.h52 inline constexpr bool isPtrType(PrimType T) { in isPtrType() function
H A DCompiler.cpp380 assert(isPtrType(FromT)); in VisitCastExpr()
457 assert(isPtrType(*FromT)); in VisitCastExpr()
458 assert(isPtrType(*ToT)); in VisitCastExpr()
879 if (isPtrType(*T) || (isPtrType(*LT) && isPtrType(*RT))) in VisitBinaryOperator()
7006 if (isPtrType(PT)) in emitDummyPtr()
H A DInterp.h3256 static_assert(isPtrType(TIn) && isPtrType(TOut)); in DecayPtr()