Home
last modified time | relevance | path

Searched refs:RetValue (Results 1 – 13 of 13) sorted by relevance

/external/curl/docs/examples/
Dsynctime.c266 int RetValue; in main() local
271 RetValue = 0; /* Successful Exit */ in main()
351 RetValue = 1; in main()
369 return RetValue; in main()
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
DSystemZISelLowering.cpp530 SDValue RetValue = Chain.getValue(0); in LowerCallResult() local
537 RetValue = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), RetValue, in LowerCallResult()
540 RetValue = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), RetValue, in LowerCallResult()
544 RetValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), RetValue); in LowerCallResult()
546 InVals.push_back(RetValue); in LowerCallResult()
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/
DAlphaISelLowering.cpp367 SDValue RetValue = Chain.getValue(0); in LowerCallResult() local
374 RetValue = DAG.getNode(ISD::AssertSext, dl, VA.getLocVT(), RetValue, in LowerCallResult()
377 RetValue = DAG.getNode(ISD::AssertZext, dl, VA.getLocVT(), RetValue, in LowerCallResult()
381 RetValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), RetValue); in LowerCallResult()
383 InVals.push_back(RetValue); in LowerCallResult()
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITTestBase.h60 void endFunctionWithRet(Function *Func, Value *RetValue) { in endFunctionWithRet() argument
61 Builder.CreateRet(RetValue); in endFunctionWithRet()
/external/swiftshader/third_party/subzero/src/
DIceInst.cpp474 InstRet::InstRet(Cfg *Func, Operand *RetValue) in InstRet() argument
475 : InstHighLevel(Func, Ret, RetValue ? 1 : 0, nullptr) { in InstRet()
476 if (RetValue) in InstRet()
477 addSource(RetValue); in InstRet()
DIceInst.h700 static InstRet *create(Cfg *Func, Operand *RetValue = nullptr) {
701 return new (Func->allocate<InstRet>()) InstRet(Func, RetValue);
714 InstRet(Cfg *Func, Operand *RetValue);
DIceTargetLoweringMIPS32.cpp1804 Variable *RetValue = nullptr; in addEpilog() local
1806 RetValue = llvm::cast<Variable>(RI->getSrc(0)); in addEpilog()
1808 Sandboxer(this).ret(RA, RetValue); in addEpilog()
6230 void TargetMIPS32::Sandboxer::ret(Variable *RetAddr, Variable *RetValue) { in ret() argument
6232 Target->_ret(RetAddr, RetValue); in ret()
6238 Target->_ret(RetAddr, RetValue); in ret()
DIceTargetLoweringX86BaseImpl.h1370 auto *RetValue = llvm::cast<Variable>(RI->getSrc(0));
1371 Context.insert<InstFakeUse>(RetValue);
6061 Operand *RetValue = legalize(Instr->getRetValue());
6062 const Type ReturnType = RetValue->getType();
6065 Reg = moveReturnValueToRegister(RetValue, ReturnType);
7584 Operand *RetValue = Ret->getRetValue();
7585 Type ReturnType = RetValue->getType();
DIceTargetLoweringMIPS32.h626 void ret(Variable *RetAddr, Variable *RetValue);
DIceTargetLoweringARM32.cpp1752 Variable *RetValue = nullptr; in addEpilog() local
1754 RetValue = llvm::cast<Variable>(RI->getSrc(0)); in addEpilog()
1756 Sandboxer(this).ret(LR, RetValue); in addEpilog()
6948 void TargetARM32::Sandboxer::ret(Variable *RetAddr, Variable *RetValue) { in ret() argument
6953 Target->_ret(RetAddr, RetValue); in ret()
DIceTargetLoweringARM32.h1072 void ret(Variable *RetAddr, Variable *RetValue);
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h5317 if (const auto *RetValue = Node.getRetValue()) in AST_MATCHER_P() local
5318 return InnerMatcher.matches(*RetValue, Finder, Builder); in AST_MATCHER_P()
/external/llvm/lib/Target/SystemZ/
DSystemZISelLowering.cpp1200 SDValue RetValue = DAG.getCopyFromReg(Chain, DL, VA.getLocReg(), in LowerCall() local
1202 Chain = RetValue.getValue(1); in LowerCall()
1203 Glue = RetValue.getValue(2); in LowerCall()
1207 InVals.push_back(convertLocVTToValVT(DAG, DL, VA, Chain, RetValue)); in LowerCall()
1260 SDValue RetValue = OutVals[I]; in LowerReturn() local
1266 RetValue = convertValVTToLocVT(DAG, DL, VA, RetValue); in LowerReturn()
1270 Chain = DAG.getCopyToReg(Chain, DL, Reg, RetValue, Glue); in LowerReturn()