/external/curl/docs/examples/ |
D | synctime.c | 266 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/ |
D | SystemZISelLowering.cpp | 530 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/ |
D | AlphaISelLowering.cpp | 367 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/ |
D | MCJITTestBase.h | 60 void endFunctionWithRet(Function *Func, Value *RetValue) { in endFunctionWithRet() argument 61 Builder.CreateRet(RetValue); in endFunctionWithRet()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceInst.cpp | 474 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()
|
D | IceInst.h | 700 static InstRet *create(Cfg *Func, Operand *RetValue = nullptr) { 701 return new (Func->allocate<InstRet>()) InstRet(Func, RetValue); 714 InstRet(Cfg *Func, Operand *RetValue);
|
D | IceTargetLoweringMIPS32.cpp | 1804 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()
|
D | IceTargetLoweringX86BaseImpl.h | 1370 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); 7583 Operand *RetValue = Ret->getRetValue(); 7584 Type ReturnType = RetValue->getType();
|
D | IceTargetLoweringMIPS32.h | 626 void ret(Variable *RetAddr, Variable *RetValue);
|
D | IceTargetLoweringARM32.cpp | 1752 Variable *RetValue = nullptr; in addEpilog() local 1754 RetValue = llvm::cast<Variable>(RI->getSrc(0)); in addEpilog() 1756 Sandboxer(this).ret(LR, RetValue); in addEpilog() 7180 void TargetARM32::Sandboxer::ret(Variable *RetAddr, Variable *RetValue) { in ret() argument 7185 Target->_ret(RetAddr, RetValue); in ret()
|
D | IceTargetLoweringARM32.h | 1128 void ret(Variable *RetAddr, Variable *RetValue);
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 5317 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/ |
D | SystemZISelLowering.cpp | 1200 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()
|