Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DDivisionByConstantInfo.cpp25 struct SignedDivisionByConstantInfo Retval; in get() local
52 Retval.Magic = Q2 + 1; in get()
54 Retval.Magic = -Retval.Magic; // resulting magic number in get()
55 Retval.ShiftAmount = P - D.getBitWidth(); // resulting shift in get()
56 return Retval; in get()
69 struct UnsignedDivisionByConstantInfo Retval; in get() local
70 Retval.IsAdd = false; // initialize "add" indicator in get()
92 Retval.IsAdd = true; in get()
97 Retval.IsAdd = true; in get()
105 Retval.ShiftAmount = P - D.getBitWidth(); // resulting shift in get()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dunused-return-value-custom.cpp26 struct Retval { struct
28 Retval() { P = new int; } in Retval() function
29 ~Retval() { delete P; } in ~Retval() argument
33 Retval memFun();
34 static Retval staticFun();
39 Retval memFun();
40 static Retval staticFun();
/llvm-project-15.0.7/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1460 Return(SExpr* Rval) : Terminator(COP_Return), Retval(Rval) {} in Return()
1461 Return(const Return &R, SExpr* Rval) : Terminator(R), Retval(Rval) {} in Return()
1468 SExpr *returnValue() { return Retval; } in returnValue()
1469 const SExpr *returnValue() const { return Retval; } in returnValue()
1473 auto Ne = Vs.traverse(Retval, Vs.subExprCtx(Ctx)); in traverse()
1479 return Cmp.compare(Retval, E->Retval); in compare()
1483 SExpr* Retval;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DCommentCommands.td164 def Retval : BlockCommand<"retval"> { let NumArgs = 1; }
/llvm-project-15.0.7/compiler-rt/lib/msan/tests/
H A Dmsan_test.cpp4514 TEST(MemorySanitizerOrigins, Retval) { in TEST() argument