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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/SecurityPkg/Library/TcgStorageOpalLib/
TcgStorageOpalUtil.c 37 TCG_RESULT Ret;
42 Ret = OpalStartSession(
50 if (Ret == TcgResultSuccess && MethodStatus == TCG_METHOD_STATUS_CODE_SUCCESS) {
51 Ret = OpalPsidRevert(Session);
52 if (Ret != TcgResultSuccess) {
61 Ret = TcgResultFailure;
64 return Ret;
90 TCG_RESULT Ret;
96 Ret = OpalStartSession(
105 if (Ret != TcgResultSuccess || MethodStatus != TCG_METHOD_STATUS_CODE_SUCCESS) {
    [all...]
  /external/compiler-rt/test/profile/
instrprof-write-file.c 21 int Ret = foo(0);
25 return Ret;
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePalLibNull/
PalCall.c 54 PAL_CALL_RETURN Ret;
56 Ret.Status = (UINT64) -1;
58 return Ret;
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 6 template<typename Ret>
7 class C<Ret(void)> {};
10 template<typename Ret, typename Arg1>
11 class C<Ret(Arg1)> {};
13 template<typename Ret, typename Arg1, typename Arg2>
14 class C<Ret(Arg1, Arg2)> {};
45 template<typename Ret> class C<Ret(*)(void)> {};
50 template<typename Ret> class C<Ret(^)(void)> {}
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
OrderedBasicBlockTest.cpp 30 ret i32 %add
43 Instruction *Ret = &*I++;
49 EXPECT_TRUE(OBB.dominates(Add, Ret));
50 EXPECT_TRUE(OBB.dominates(Add, Ret));
51 EXPECT_FALSE(OBB.dominates(Ret, Add));
52 EXPECT_FALSE(OBB.dominates(Ret, Add));
53 EXPECT_FALSE(OBB.dominates(Ret, Ret));
54 EXPECT_FALSE(OBB.dominates(Ret, Ret));
    [all...]
  /external/swiftshader/third_party/LLVM/runtime/libprofile/
EdgeProfiling.c 40 int Ret = save_arguments(argc, argv);
44 return Ret;
OptimalEdgeProfiling.c 40 int Ret = save_arguments(argc, argv);
44 return Ret;
BasicBlockTracing.c 51 int Ret;
55 Ret = save_arguments(argc, argv);
66 return Ret;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CallingConvLower.h 70 CCValAssign Ret;
71 Ret.ValNo = ValNo;
72 Ret.Loc = RegNo;
73 Ret.isMem = false;
74 Ret.isCustom = false;
75 Ret.HTP = HTP;
76 Ret.ValVT = ValVT;
77 Ret.LocVT = LocVT;
78 return Ret;
84 CCValAssign Ret;
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.cpp 51 std::string Ret = "";
54 Ret += "E";
57 Ret += DataLayout::getManglingComponent(TT);
62 Ret += "-i1:8:16-i8:8:16";
65 Ret += "-i64:64";
68 Ret += "-f128:64";
72 Ret += "-v128:64";
75 Ret += "-a:8:16";
78 Ret += "-n32:64";
80 return Ret;
    [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 80 CCValAssign Ret;
81 Ret.ValNo = ValNo;
82 Ret.Loc = RegNo;
83 Ret.isMem = false;
84 Ret.isCustom = false;
85 Ret.HTP = HTP;
86 Ret.ValVT = ValVT;
87 Ret.LocVT = LocVT;
88 return Ret;
94 CCValAssign Ret;
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/OpalPasswordSupportLib/
OpalPasswordSupportLib.c 126 TCG_RESULT Ret;
131 Ret = OpalUtilPsidRevert (Session, Psid, PsidLength);
132 if (Ret == TcgResultSuccess && !gInSmm) {
136 return Ret;
166 TCG_RESULT Ret;
173 Ret = OpalUtilSetAdminPassword(Session, OldPassword, OldPasswordLength, NewPassword, NewPasswordLength);
175 Ret = OpalUtilSetUserPassword(Session, OldPassword, OldPasswordLength, NewPassword, NewPasswordLength);
177 if (Ret == TcgResultSuccess && !gInSmm) {
181 return Ret;
204 TCG_RESULT Ret;
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/TlsLib/
TlsProcess.c 89 INTN Ret;
94 Ret = 1;
114 Ret = SSL_do_handshake (TlsConn->Ssl);
121 Ret = SSL_do_handshake (TlsConn->Ssl);
126 if (Ret < 1) {
127 Ret = SSL_get_error (TlsConn->Ssl, (int) Ret);
128 if (Ret == SSL_ERROR_SSL ||
129 Ret == SSL_ERROR_SYSCALL ||
130 Ret == SSL_ERROR_ZERO_RETURN)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
SymbolSize.cpp 42 std::vector<std::pair<SymbolRef, uint64_t>> Ret;
49 Ret.push_back({Sym, Sym.getSize()});
50 return Ret;
71 return Ret;
91 Ret.resize(SymNum);
95 Ret[P.Number] = {*P.I, P.Address};
97 return Ret;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZTargetMachine.cpp 62 std::string Ret;
65 Ret += "E";
68 Ret += DataLayout::getManglingComponent(TT);
73 Ret += "-i1:8:16-i8:8:16";
76 Ret += "-i64:64";
79 Ret += "-f128:64";
83 Ret += "-v128:64";
86 Ret += "-a:8:16";
89 Ret += "-n32:64";
91 return Ret;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
RandomNumberGenerator.cpp 76 std::error_code Ret;
79 Ret = std::error_code(errno, std::system_category());
81 Ret = std::error_code(EIO, std::system_category());
83 Ret = std::error_code(errno, std::system_category());
85 return Ret;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCReduceCRLogicals.cpp 439 CRLogicalOpInfo Ret;
440 Ret.MI = &MIParam;
443 Ret.IsNullary = 1;
444 Ret.TrueDefs = std::make_pair(nullptr, nullptr);
445 Ret.CopyDefs = std::make_pair(nullptr, nullptr);
448 Ret.SubregDef1, Ret.CopyDefs.first);
449 Ret.DefsSingleUse &=
451 Ret.DefsSingleUse &=
452 MRI->hasOneNonDBGUse(Ret.CopyDefs.first->getOperand(0).getReg())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
CallingConvLower.h 81 CCValAssign Ret;
82 Ret.ValNo = ValNo;
83 Ret.Loc = RegNo;
84 Ret.isMem = false;
85 Ret.isCustom = false;
86 Ret.HTP = HTP;
87 Ret.ValVT = ValVT;
88 Ret.LocVT = LocVT;
89 return Ret;
95 CCValAssign Ret;
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 66 std::string Ret = "e";
68 Ret += DataLayout::getManglingComponent(TT);
73 Ret += "-p:32:32";
77 Ret += "-i64:64";
79 Ret += "-i64:32-f64:32";
81 Ret += "-f64:32:64";
87 Ret += "-f80:128";
89 Ret += "-f80:32";
92 Ret += "-f128:32";
96 Ret += "-n8:16:32:64"
    [all...]
  /external/llvm/lib/Object/
SymbolSize.cpp 48 std::vector<std::pair<SymbolRef, uint64_t>> Ret;
55 Ret.push_back({Sym, Sym.getSize()});
56 return Ret;
93 Ret.resize(SymNum);
97 Ret[P.Number] = {*P.I, P.Address};
99 return Ret;
  /external/llvm/tools/llvm-c-test/
module.c 38 LLVMBool Ret;
43 Ret = LLVMGetBitcodeModule2(MB, &M);
45 Ret = LLVMParseBitcode2(MB, &M);
48 Ret = LLVMGetBitcodeModule(MB, &M, &msg);
50 Ret = LLVMParseBitcode(MB, &M, &msg);
53 if (Ret) {
diagnostic.c 73 int Ret = LLVMGetBitcodeModule2(MB, &M);
74 if (Ret) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-c-test/
module.c 37 LLVMBool Ret;
42 Ret = LLVMGetBitcodeModule2(MB, &M);
44 Ret = LLVMParseBitcode2(MB, &M);
47 Ret = LLVMGetBitcodeModule(MB, &M, &msg);
49 Ret = LLVMParseBitcode(MB, &M, &msg);
52 if (Ret) {
  /device/linaro/bootloader/edk2/NetworkPkg/TlsDxe/
TlsImpl.c 53 INTN Ret;
64 Ret = 0;
117 Ret = TlsCtrlTrafficOut (TlsInstance->TlsConn, (UINT8 *)(TempRecordHeader), MAX_BUFFER_SIZE - BufferOutSize);
119 if (Ret > 0) {
120 ThisMessageSize = (UINT16) Ret;
204 INTN Ret;
215 Ret = 0;
266 Ret = TlsCtrlTrafficIn (TlsInstance->TlsConn, (UINT8 *) (RecordHeaderIn), RECORD_HEADER_LEN + ThisCipherMessageSize);
267 if (Ret != RECORD_HEADER_LEN + ThisCipherMessageSize) {
273 Ret = 0
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
TailRecursionElimination.cpp 92 bool EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
98 ReturnInst *Ret, BasicBlock *&OldEntry,
185 if (ReturnInst *Ret = dyn_cast<ReturnInst>(BB->getTerminator())) {
186 bool Change = ProcessReturningBlock(Ret, OldEntry, TailCallsAreMarkedTail,
188 if (!Change && BB->getFirstNonPHIOrDbg() == Ret)
189 Change = FoldReturnAndProcessPred(BB, Ret, OldEntry,
410 bool TailCallElim::EliminateRecursiveTailCall(CallInst *CI, ReturnInst *Ret,
433 for (++BBI; &*BBI != Ret; ++BBI) {
454 if (Ret->getNumOperands() == 1 && Ret->getReturnValue() != CI &
    [all...]

Completed in 1958 milliseconds

1 2 3 4 5 6 7 8 91011>>