HomeSort by relevance Sort by last modified time
    Searched refs:Ret (Results 51 - 75 of 543) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMTargetMachine.cpp 131 std::string Ret;
135 Ret += "e";
138 Ret += "E";
140 Ret += DataLayout::getManglingComponent(TT);
143 Ret += "-p:32:32";
147 Ret += "-i64:64";
152 Ret += "-f64:32:64";
157 Ret += "-v64:32:64-v128:32:128";
159 Ret += "-v128:64:128";
163 Ret += "-a:0:32"
    [all...]
ARMCallLowering.h 48 unsigned VReg, MachineInstrBuilder &Ret) const;
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 495 static bool eliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
518 for (++BBI; &*BBI != Ret; ++BBI) {
539 if (Ret->getNumOperands() == 1 && Ret->getReturnValue() != CI &&
540 !isa<UndefValue>(Ret->getReturnValue()) &&
546 if (!isDynamicConstant(Ret->getReturnValue(), CI, Ret))
550 AccumulatorRecursionEliminationInitVal = getCommonReturnValue(Ret, CI);
555 BasicBlock *BB = Ret->getParent();
650 AccPN->addIncoming(Ret->getReturnValue(), BB)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
Analysis.h 115 const ReturnInst *Ret,
123 const ReturnInst *Ret,
  /external/vixl/examples/aarch64/
factorial-rec.cc 48 __ Ret();
52 __ Ret();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86TargetMachine.cpp 119 std::string Ret = "e";
121 Ret += DataLayout::getManglingComponent(TT);
126 Ret += "-p:32:32";
130 Ret += "-i64:64";
132 Ret += "-i64:32-f64:32";
134 Ret += "-f64:32:64";
140 Ret += "-f80:128";
142 Ret += "-f80:32";
145 Ret += "-f128:32";
149 Ret += "-n8:16:32:64"
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-init.cpp 18 template<typename Ret, typename T, typename U>
19 Ret f1(Ret *retty, T t, U u) {
20 Ret r0(t, u); // expected-error{{no matching}}
21 return Ret(t, u); // expected-error{{no matching}}
  /external/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 78 const Value *Ret = cast<ReturnInst>(Inst).getReturnValue();
82 return CLI->lowerReturn(MIRBuilder, Ret, !Ret ? 0 : getOrCreateVReg(*Ret));
111 case Instruction::Ret:
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.h 229 DoNothingAndReturn(ReturnT Ret) : Ret(std::move(Ret)) {}
232 void operator()(Args...) const { return Ret; }
234 ReturnT Ret;
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalHii.c 592 TCG_RESULT Ret;
611 Ret = OpalSupportGetAvailableActions(&OpalDisk->SupportedAttributes, &OpalDisk->LockingFeature, OpalDisk->Owner, &AvailActions);
612 if (Ret == TcgResultSuccess) {
676 TCG_RESULT Ret;
681 Ret = TcgResultFailure;
699 Ret = OpalSupportPsidRevert(&Session, Psid.Psid, (UINT32)sizeof(Psid.Psid), OpalDisk->OpalDevicePath);
704 if (Ret == TcgResultSuccess) {
733 TCG_RESULT Ret;
776 Ret = OpalSupportEnableOpalFeature (&Session, OpalDisk->Msid, OpalDisk->MsidLength,Password, PassLength, OpalDisk->OpalDevicePath);
777 if (Ret == TcgResultSuccess) {
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 88 std::string Ret;
92 Ret = "e";
94 Ret = "E";
96 Ret += DataLayout::getManglingComponent(T);
101 Ret += "-p:32:32";
106 Ret += "-i64:64";
108 Ret += "-f64:32:64";
112 Ret += "-n32:64";
114 Ret += "-n32";
116 return Ret;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 113 std::string Ret;
117 Ret = "e";
119 Ret = "E";
121 Ret += DataLayout::getManglingComponent(T);
126 Ret += "-p:32:32";
131 Ret += "-i64:64";
133 Ret += "-f64:32:64";
137 Ret += "-n32:64";
139 Ret += "-n32";
141 return Ret;
    [all...]
  /external/llvm/lib/Object/
Archive.cpp 46 uint32_t Ret;
47 if (llvm::StringRef(Size, sizeof(Size)).rtrim(" ").getAsInteger(10, Ret))
49 return Ret;
53 unsigned Ret;
54 if (StringRef(AccessMode, sizeof(AccessMode)).rtrim(' ').getAsInteger(8, Ret))
56 return static_cast<sys::fs::perms>(Ret);
65 sys::TimeValue Ret;
66 Ret.fromEpochTime(Seconds);
67 return Ret;
71 unsigned Ret;
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.not_fn/
not_fn.pass.cpp 29 template <class Ret = bool>
37 Ret operator()(Args&&...) { return Ret{value}; }
40 Ret value;
43 template <class Ret = bool>
52 Ret operator()(Args&&...) { return Ret{value}; }
55 Ret value;
59 template <class Ret = bool>
68 Ret operator()(Args&&...) const { return Ret{value};
268 auto ret = std::not_fn(std::move(value)); local
289 auto ret = std::not_fn(value); local
310 auto ret = std::not_fn(value); local
329 auto ret = std::not_fn(std::move(value)); local
375 auto ret = std::not_fn(returns_true); local
380 auto ret = std::not_fn(returns_value); local
387 auto ret = std::not_fn(&MemFunCallable::return_value); local
396 auto ret = std::not_fn(&MemFunCallable::return_value_nc); local
405 auto ret = std::not_fn(&MemFunCallable::value); local
558 auto ret = std::not_fn(value); local
566 auto ret = std::not_fn(value); local
578 auto ret = std::not_fn(value); local
586 auto ret = std::not_fn(value); local
    [all...]
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 75 std::string Ret = "!!";
76 Ret += StringRef(Tag).substr(18);
77 return Ret;
79 std::string Ret = "!<";
80 Ret += Tag;
81 Ret += ">";
82 return Ret;
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/yaml-bench/
YAMLBench.cpp 75 std::string Ret = "!!";
76 Ret += StringRef(Tag).substr(18);
77 return Ret;
79 std::string Ret = "!<";
80 Ret += Tag;
81 Ret += ">";
82 return Ret;
  /external/llvm/include/llvm/Option/
Option.h 125 std::string Ret = getPrefix();
126 Ret += getName();
127 return Ret;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
Option.h 134 std::string Ret = getPrefix();
135 Ret += getName();
136 return Ret;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DbiStreamBuilder.cpp 296 uint16_t Ret = 0;
298 Ret |= static_cast<uint16_t>(OMFSegDescFlags::Read);
300 Ret |= static_cast<uint16_t>(OMFSegDescFlags::Write);
302 Ret |= static_cast<uint16_t>(OMFSegDescFlags::Execute);
304 Ret |= static_cast<uint16_t>(OMFSegDescFlags::Execute);
306 Ret |= static_cast<uint16_t>(OMFSegDescFlags::AddressIs32Bit);
309 Ret |= static_cast<uint16_t>(OMFSegDescFlags::IsSelector);
311 return Ret;
321 std::vector<SecMapEntry> Ret;
325 Ret.emplace_back()
    [all...]
  /external/swiftshader/third_party/subzero/unittest/AssemblerX8632/
TestUtil.h 69 // __ ret();
197 // ret
223 // float Ret[4];
224 // // populate Ret
225 // return *reinterpret_cast<Dqword *>(&Ret);
314 ElemType Ret[N]; \
316 Ret[i] = (LhsPtr[i] Op RhsPtr[i]) ? -1 : 0; \
318 return *reinterpret_cast<Dqword *>(&Ret); \
344 ElemType Ret[N]; \
346 Ret[i] = (!(LhsPtr[i] == LhsPtr[i]) || !(RhsPtr[i] == RhsPtr[i])) !=
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/
EblCmdFdt.c 183 UINTN Ret;
196 Ret = fdt_check_header (FdtBlob);
197 if (Ret != 0) {
198 Print (L"ERROR: Device Tree header not valid (err:%d)\n", Ret);
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
bind_return_type.pass.cpp 52 auto ret = std::bind(func, _1);
54 using Bind = decltype(ret);
57 using Ret = decltype(ret(42));
58 using Ret2 = decltype(ret(42, 43)); // Test that the extra argument is discarded.
62 static_assert(std::is_same<Ret, Expect>::value, "");
67 Expect exp = ret(100); // the input value is ignored. dummy is returned.
68 Expect exp2 = ret(101, 102);
100 auto ret = std::bind<Expect>(func, _1);
101 using Bind = decltype(ret);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Nios2/
Nios2ISelLowering.h 36 Ret
  /external/syzkaller/sys/windows/
init.go 39 Ret: prog.MakeReturnArg(meta.Ret),