HomeSort by: relevance | last modified time | path
    Searched refs:Resume (Results 1 - 25 of 30) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
11-dtls_resumption.conf 32 resume-server = 0-resumption-resume-server
33 resume-client = 0-resumption-client
43 [0-resumption-resume-server]
57 HandshakeMode = Resume
70 resume-server = 1-resumption-resume-server
71 resume-client = 1-resumption-client
81 [1-resumption-resume-server]
95 HandshakeMode = Resume
    [all...]
10-resumption.conf 81 resume-server = 0-resumption-resume-server
82 resume-client = 0-resumption-client
92 [0-resumption-resume-server]
106 HandshakeMode = Resume
118 resume-server = 1-resumption-resume-server
119 resume-client = 1-resumption-client
129 [1-resumption-resume-server]
143 HandshakeMode = Resume
    [all...]
27-ticket-appdata.conf 17 resume-server = 0-session-ticket-app-data12-server
18 resume-client = 0-session-ticket-app-data12-client
36 HandshakeMode = Resume
40 resume-server = 0-session-ticket-app-data12-server-extra
54 resume-server = 1-session-ticket-app-data12-server
55 resume-client = 1-session-ticket-app-data12-client
73 HandshakeMode = Resume
86 resume-server = 2-session-ticket-app-data13-server
87 resume-client = 2-session-ticket-app-data13-client
105 HandshakeMode = Resume
    [all...]
12-ct.conf 128 resume-server = 4-ct-permissive-resumption-server
129 resume-client = 4-ct-permissive-resumption-client
143 HandshakeMode = Resume
146 resume-client = 4-ct-permissive-resumption-client-extra
160 resume-server = 5-ct-strict-resumption-server
161 resume-client = 5-ct-strict-resumption-resume-client
173 [5-ct-strict-resumption-resume-client]
180 HandshakeMode = Resume
183 resume-client = 5-ct-strict-resumption-resume-client-extr
    [all...]
09-alpn.conf 376 resume-server = 10-alpn-simple-resumption-server
377 resume-client = 10-alpn-simple-resumption-client
391 HandshakeMode = Resume
394 resume-server = 10-alpn-simple-resumption-server-extra
396 resume-client = 10-alpn-simple-resumption-client-extra
413 resume-server = 11-alpn-server-switch-resumption-resume-server
414 resume-client = 11-alpn-server-switch-resumption-client
421 [11-alpn-server-switch-resumption-resume-server]
433 HandshakeMode = Resume
    [all...]
08-npn.conf 469 resume-server = 12-npn-simple-resumption-server
470 resume-client = 12-npn-simple-resumption-client
485 HandshakeMode = Resume
488 resume-server = 12-npn-simple-resumption-server-extra
490 resume-client = 12-npn-simple-resumption-client-extra
507 resume-server = 13-npn-server-switch-resumption-resume-server
508 resume-client = 13-npn-server-switch-resumption-client
515 [13-npn-server-switch-resumption-resume-server]
528 HandshakeMode = Resume
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
ssl_test_ctx_test.conf 6 resume-server2 = ssltest_good_resume_server2_extra
7 resume-client = ssltest_good_resume_client_extra
10 HandshakeMode = Resume
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroElide.cpp 95 // Given a resume function @f.resume(%f.frame* %frame), returns the size
97 static std::pair<uint64_t, Align> getFrameLayout(Function *Resume) {
99 auto Size = Resume->getParamDereferenceableBytes(0);
100 auto Align = Resume->getParamAlign(0);
104 auto *FrameTy = Resume->arg_begin()->getType()->getPointerElementType();
106 const DataLayout &DL = Resume->getParent()->getDataLayout();
274 // switch i8 %0, label %suspend [i8 0, label %resume
CoroInternal.h 72 /// The "resume-switch" lowering, where there are separate resume and
74 /// coroutine frame implicitly stores the resume and destroy functions,
108 Resume,
202 return cast<PointerType>(FrameTy->getElementType(SwitchFieldIndex::Resume));
CoroEarly.cpp 42 // Replace a direct call to coro.resume or coro.destroy with an indirect call to
82 // the coroutine frame (it is UB to resume from a final suspend point).
89 static_assert(coro::Shape::SwitchFieldIndex::Resume == 0,
90 "resume function not at offset zero");
224 "llvm.coro.free", "llvm.coro.promise", "llvm.coro.resume",
CoroSplit.cpp 8 // This pass builds the coroutine frame and outlines resume and destroy parts
15 // corresponding to an initial, resume and destroy invocations of the coroutine,
83 /// The shared resume function for a switch lowering.
95 /// An async resume function.
325 // Create an entry block for a resume function with a switch that will jump to
331 // resume.entry:
336 // i32 0, label %resume.0
337 // i32 1, label %resume.1
341 auto *NewEntry = BasicBlock::Create(C, "resume.entry", &F);
367 coro::Shape::SwitchFieldIndex::Resume,
    [all...]
CoroFrame.cpp 220 // between coro.save and coro.suspend may resume the coroutine and all of the
950 unsigned ResumeIndex = coro::Shape::SwitchFieldIndex::Resume;
994 // The Align and Offset of Resume function and Destroy function are fixed.
1104 // Add header fields for the resume and destroy functions.
1473 // AllocaSpillBB that will become the new entry block for the resume parts of
1904 // Check for instructions that we can recreate on resume as opposed to spill
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprCXX.h 4678 /// If the coroutine is not suspended, or when it is resumed, the 'resume'
4686 enum SubExpr { Common, Ready, Suspend, Resume, Count };
4693 Expr *Ready, Expr *Suspend, Expr *Resume,
4695 : Expr(SC, Resume->getType(), Resume->getValueKind(),
4696 Resume->getObjectKind()),
4701 SubExprs[SubExpr::Resume] = Resume;
4713 SubExprs[SubExpr::Resume] = nullptr;
4721 SubExprs[SubExpr::Resume] = nullptr
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h 236 case Instruction::Resume:
Instructions.h 4150 /// Resume the propagation of an exception.
4183 return I->getOpcode() == Instruction::Resume;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp 351 if (auto *Resume = E->getResumeExpr())
352 return (Resume->getDependence() &
  /src/external/gpl3/gcc/dist/libgcc/config/i386/
morestack.S 435 movl %ebp,(%esp) # Stack pointer after resume.
446 call _Unwind_Resume@PLT # Resume unwinding.
609 movq %rbp,%rdi # Stack pointer after resume.
617 call _Unwind_Resume@PLT # Resume unwinding.
619 call _Unwind_Resume # Resume unwinding.
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/
morestack.S 435 movl %ebp,(%esp) # Stack pointer after resume.
446 call _Unwind_Resume@PLT # Resume unwinding.
609 movq %rbp,%rdi # Stack pointer after resume.
617 call _Unwind_Resume@PLT # Resume unwinding.
619 call _Unwind_Resume # Resume unwinding.
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLLexer.cpp 896 INSTKEYWORD(resume, Resume);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Instruction.cpp 325 case Resume: return "resume";
Instructions.cpp 997 : Instruction(Type::getVoidTy(RI.getContext()), Instruction::Resume,
1003 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
1009 : Instruction(Type::getVoidTy(Exn->getContext()), Instruction::Resume,
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml 243 | Resume
1111 | Instruction (Br | IndirectBr | Invoke | Resume | Ret | Switch | Unreachable)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlan.h 839 case Instruction::Resume:
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringBase.cpp 1747 case Resume: return 0;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
Attributor.cpp 1931 case Instruction::Resume:

Completed in 43 milliseconds

1 2