/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | propagator.cpp | 24 if (dest_bb == ctx_->cfg()->pseudo_exit_block()) { in AddControlEdge() 50 if (!BlockHasBeenSimulated(ctx_->get_instr_block(use_instr))) { in AddSSAEdges() 61 BasicBlock* phi_bb = ctx_->get_instr_block(phi); in IsPhiArgExecutable() 65 BasicBlock* in_bb = ctx_->get_instr_block(in_label_instr); in IsPhiArgExecutable() 110 BasicBlock* block = ctx_->get_instr_block(instr); in Simulate() 126 AddControlEdge(Edge(ctx_->get_instr_block(instr), dest_bb)); in Simulate() 176 if (block == ctx_->cfg()->pseudo_exit_block()) { in Simulate() 213 bb_succs_[ctx_->cfg()->pseudo_entry_block()].push_back( in Initialize() 214 Edge(ctx_->cfg()->pseudo_entry_block(), fn->entry().get())); in Initialize() 220 ctx_ in Initialize() [all...] |
H A D | propagator.h | 190 : ctx_(context), visit_fn_(visit_fn) {} in SSAPropagator() 258 // Returns a pointer to the def-use manager for |ctx_|. 260 return ctx_->get_def_use_mgr(); in get_def_use_mgr() 272 IRContext* ctx_; member in spvtools::opt::SSAPropagator
|
H A D | constants.cpp | 145 ConstantManager::ConstantManager(IRContext* ctx) : ctx_(ctx) { in ConstantManager() 149 for (const auto& inst : ctx_->module()->GetConstants()) { in ConstantManager()
|
H A D | constants.h | 506 IRContext* context() const { return ctx_; } in context() 692 IRContext* ctx_; member in spvtools::opt::analysis::ConstantManager
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | propagator.cpp | 24 if (dest_bb == ctx_->cfg()->pseudo_exit_block()) { in AddControlEdge() 50 if (!BlockHasBeenSimulated(ctx_->get_instr_block(use_instr))) { in AddSSAEdges() 61 BasicBlock* phi_bb = ctx_->get_instr_block(phi); in IsPhiArgExecutable() 65 BasicBlock* in_bb = ctx_->get_instr_block(in_label_instr); in IsPhiArgExecutable() 110 BasicBlock* block = ctx_->get_instr_block(instr); in Simulate() 126 AddControlEdge(Edge(ctx_->get_instr_block(instr), dest_bb)); in Simulate() 176 if (block == ctx_->cfg()->pseudo_exit_block()) { in Simulate() 213 bb_succs_[ctx_->cfg()->pseudo_entry_block()].push_back( in Initialize() 214 Edge(ctx_->cfg()->pseudo_entry_block(), fn->entry().get())); in Initialize() 220 ctx_ in Initialize() [all...] |
H A D | propagator.h | 190 : ctx_(context), visit_fn_(visit_fn) {} in SSAPropagator() 258 // Returns a pointer to the def-use manager for |ctx_|. 260 return ctx_->get_def_use_mgr(); in get_def_use_mgr() 272 IRContext* ctx_; member in spvtools::opt::SSAPropagator
|
H A D | constants.cpp | 145 ConstantManager::ConstantManager(IRContext* ctx) : ctx_(ctx) { in ConstantManager() 149 for (const auto& inst : ctx_->module()->GetConstants()) { in ConstantManager()
|
/third_party/spirv-tools/source/opt/ |
H A D | propagator.cpp | 24 if (dest_bb == ctx_->cfg()->pseudo_exit_block()) { in AddControlEdge() 50 if (!BlockHasBeenSimulated(ctx_->get_instr_block(use_instr))) { in AddSSAEdges() 61 BasicBlock* phi_bb = ctx_->get_instr_block(phi); in IsPhiArgExecutable() 65 BasicBlock* in_bb = ctx_->get_instr_block(in_label_instr); in IsPhiArgExecutable() 110 BasicBlock* block = ctx_->get_instr_block(instr); in Simulate() 126 AddControlEdge(Edge(ctx_->get_instr_block(instr), dest_bb)); in Simulate() 176 if (block == ctx_->cfg()->pseudo_exit_block()) { in Simulate() 213 bb_succs_[ctx_->cfg()->pseudo_entry_block()].push_back( in Initialize() 214 Edge(ctx_->cfg()->pseudo_entry_block(), fn->entry().get())); in Initialize() 220 ctx_ in Initialize() [all...] |
H A D | propagator.h | 190 : ctx_(context), visit_fn_(visit_fn) {} in SSAPropagator() 258 // Returns a pointer to the def-use manager for |ctx_|. 260 return ctx_->get_def_use_mgr(); in get_def_use_mgr() 272 IRContext* ctx_; member in spvtools::opt::SSAPropagator
|
H A D | liveness.h | 56 IRContext* context() const { return ctx_; } in context() 83 IRContext* ctx_; member in spvtools::opt::analysis::LivenessManager
|
/third_party/node/src/crypto/ |
H A D | crypto_cipher.cc | 263 ctx_(nullptr), in CipherBase() 272 tracker->TrackFieldWithSize("context", ctx_ ? kSizeOf_EVP_CIPHER_CTX : 0); in MemoryInfo() 374 CHECK(!ctx_); in CommonInit() 375 ctx_.reset(EVP_CIPHER_CTX_new()); in CommonInit() 379 EVP_CIPHER_CTX_set_flags(ctx_.get(), EVP_CIPHER_CTX_FLAG_WRAP_ALLOW); in CommonInit() 382 if (1 != EVP_CipherInit_ex(ctx_.get(), cipher, nullptr, in CommonInit() 394 if (!EVP_CIPHER_CTX_set_key_length(ctx_.get(), key_len)) { in CommonInit() 395 ctx_.reset(); in CommonInit() 399 if (1 != EVP_CipherInit_ex(ctx_.get(), nullptr, nullptr, key, iv, encrypt)) { in CommonInit() 566 if (!EVP_CIPHER_CTX_ctrl(ctx_ in Init() [all...] |
H A D | crypto_hmac.cc | 33 ctx_(nullptr) { in Hmac() 38 tracker->TrackFieldWithSize("context", ctx_ ? kSizeOf_HMAC_CTX : 0); in MemoryInfo() 81 ctx_.reset(HMAC_CTX_new()); in HmacInit() 82 if (!ctx_ || !HMAC_Init_ex(ctx_.get(), key, key_len, md, nullptr)) { in HmacInit() 83 ctx_.reset(); in HmacInit() 99 return ctx_ && HMAC_Update(ctx_.get(), in HmacUpdate() 129 if (hmac->ctx_) { in HmacDigest() 130 bool ok = HMAC_Final(hmac->ctx_ in HmacDigest() [all...] |
H A D | crypto_context.cc | 407 if (ctx_ != nullptr) { in Reset() 410 ctx_.reset(); in Reset() 516 sc->ctx_.reset(SSL_CTX_new(method)); in Init() 517 if (!sc->ctx_) { in Init() 520 SSL_CTX_set_app_data(sc->ctx_.get(), sc); in Init() 526 SSL_CTX_set_options(sc->ctx_.get(), SSL_OP_NO_SSLv2); in Init() 527 SSL_CTX_set_options(sc->ctx_.get(), SSL_OP_NO_SSLv3); in Init() 529 SSL_CTX_set_options(sc->ctx_.get(), SSL_OP_ALLOW_CLIENT_RENEGOTIATION); in Init() 535 SSL_CTX_clear_mode(sc->ctx_.get(), SSL_MODE_NO_AUTO_CHAIN); in Init() 538 SSL_CTX_set_session_cache_mode(sc->ctx_ in Init() [all...] |
H A D | crypto_context.h | 45 const SSLCtxPointer& ctx() const { return ctx_; } in ctx() 49 SSLCtxPointer& ctx() { return ctx_; } in ctx() 143 SSLCtxPointer ctx_; member in node::crypto::final
|
H A D | crypto_hmac.h | 39 HMACCtxPointer ctx_; member in node::crypto::Hmac
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | propagator_test.cpp | 37 ctx_.reset(nullptr); in TearDown() 43 ctx_ = BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, input); in Assemble() 44 ASSERT_NE(nullptr, ctx_) << "Assembling failed for shader:\n" in Assemble() 49 SSAPropagator propagator(ctx_.get(), visit_fn); in Propagate() 51 for (auto& fn : *ctx_->module()) { in Propagate() 65 std::unique_ptr<IRContext> ctx_; member in spvtools::opt::__anon22185::PropagatorTest 113 Instruction* rhs_def = ctx_->get_def_use_mgr()->GetDef(rhs_id); in TEST_F() 180 Instruction* rhs_def = ctx_->get_def_use_mgr()->GetDef(rhs_id); in TEST_F()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | propagator_test.cpp | 37 ctx_.reset(nullptr); in TearDown() 43 ctx_ = BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, input); in Assemble() 44 ASSERT_NE(nullptr, ctx_) << "Assembling failed for shader:\n" in Assemble() 49 SSAPropagator propagator(ctx_.get(), visit_fn); in Propagate() 51 for (auto& fn : *ctx_->module()) { in Propagate() 65 std::unique_ptr<IRContext> ctx_; member in spvtools::opt::__anon23442::PropagatorTest 113 Instruction* rhs_def = ctx_->get_def_use_mgr()->GetDef(rhs_id); in TEST_F() 180 Instruction* rhs_def = ctx_->get_def_use_mgr()->GetDef(rhs_id); in TEST_F()
|
/third_party/spirv-tools/test/opt/ |
H A D | propagator_test.cpp | 36 ctx_.reset(nullptr); in TearDown() 42 ctx_ = BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, input); in Assemble() 43 ASSERT_NE(nullptr, ctx_) << "Assembling failed for shader:\n" in Assemble() 48 SSAPropagator propagator(ctx_.get(), visit_fn); in Propagate() 50 for (auto& fn : *ctx_->module()) { in Propagate() 64 std::unique_ptr<IRContext> ctx_; member in spvtools::opt::__anon27013::PropagatorTest 112 Instruction* rhs_def = ctx_->get_def_use_mgr()->GetDef(rhs_id); in TEST_F() 179 Instruction* rhs_def = ctx_->get_def_use_mgr()->GetDef(rhs_id); in TEST_F()
|
/third_party/python/Python/ |
H A D | ast_opt.c | 628 static int astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 629 static int astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 630 static int astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 631 static int astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 632 static int astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 633 static int astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 634 static int astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 635 static int astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 636 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state); 637 static int astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeStat 660 astfold_body(asdl_stmt_seq *stmts, PyArena *ctx_, _PyASTOptimizeState *state) astfold_body() argument 683 astfold_mod(mod_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_mod() argument 705 astfold_expr(expr_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_expr() argument 828 astfold_keyword(keyword_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_keyword() argument 835 astfold_comprehension(comprehension_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_comprehension() argument 846 astfold_arguments(arguments_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_arguments() argument 859 astfold_arg(arg_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_arg() argument 868 astfold_stmt(stmt_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_stmt() argument 995 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_excepthandler() argument 1009 astfold_withitem(withitem_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_withitem() argument 1017 astfold_pattern(pattern_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_pattern() argument 1063 astfold_match_case(match_case_ty node_, PyArena *ctx_, _PyASTOptimizeState *state) astfold_match_case() argument [all...] |
/third_party/node/deps/v8/src/extensions/ |
H A D | gc-extension.cc | 114 ctx_(isolate, isolate->GetCurrentContext()), in AsyncGC() 124 auto ctx = Local<v8::Context>::New(isolate_, ctx_); 130 v8::Persistent<v8::Context> ctx_; member in v8::internal::__anon14581::final
|
/third_party/node/deps/v8/tools/gcmole/ |
H A D | gcmole.cc | 117 : ctx_(ctx), decl_ctx_(ctx.getTranslationUnitDecl()) { in Resolver() 121 : ctx_(ctx), decl_ctx_(decl_ctx) { in Resolver() 125 clang::IdentifierInfo* ident = &ctx_.Idents.get(n); in ResolveName() 126 return ctx_.DeclarationNames.getIdentifier(ident); in ResolveName() 130 return Resolver(ctx_, Resolve<clang::NamespaceDecl>(n)); in ResolveNamespace() 212 clang::ASTContext& ctx_; member 219 explicit CalleesPrinter(clang::MangleContext* ctx) : ctx_(ctx) {} in CalleesPrinter() 239 if (!GetMangledName(ctx_, f, &name)) return; in AnalyzeFunction() 292 clang::MangleContext* ctx_; member in __anon15306::CalleesPrinter 707 : ctx_(ct in FunctionAnalyzer() 1507 clang::MangleContext* ctx_; global() member in __anon15306::FunctionAnalyzer [all...] |
/third_party/node/src/ |
H A D | node_zlib.cc | 285 ctx_.Close(); in Close() 361 ctx_.SetBuffers(in, in_len, out, out_len); in Write() 362 ctx_.SetFlush(flush); in Write() 381 ctx_.GetAfterWriteOffsets(&write_result_[1], &write_result_[0]); in UpdateWriteResult() 389 ctx_.DoThreadPoolWork(); 394 const CompressionError err = ctx_.GetErrorInfo(); in CheckError() 465 tracker->TrackField("compression context", ctx_); 471 CompressionContext* context() { return &ctx_; } in context() 553 CompressionContext ctx_; member in node::__anon15438::CompressionStream
|
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ppc.pl | 773 my ($ctx_,$_ctx,$const) = map("r$_",(10..12)); 1331 addi $ctx_,$ctx,64 # &ctx->r[1] 1388 lvx_splt $R1,$x00,$ctx_ # gives ~8% improvement 1389 lvx_splt $S1,$x10,$ctx_ 1390 lvx_splt $R2,$x20,$ctx_ 1391 lvx_splt $S2,$x30,$ctx_ 1392 lvx_splt $T1,$x40,$ctx_ 1393 lvx_splt $T2,$x50,$ctx_ 1394 lvx_splt $T3,$x60,$ctx_ 1395 lvx_splt $T4,$x70,$ctx_ [all...] |
/third_party/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ppc.pl | 773 my ($ctx_,$_ctx,$const) = map("r$_",(10..12)); 1331 addi $ctx_,$ctx,64 # &ctx->r[1] 1388 lvx_splt $R1,$x00,$ctx_ # gives ~8% improvement 1389 lvx_splt $S1,$x10,$ctx_ 1390 lvx_splt $R2,$x20,$ctx_ 1391 lvx_splt $S2,$x30,$ctx_ 1392 lvx_splt $T1,$x40,$ctx_ 1393 lvx_splt $T2,$x50,$ctx_ 1394 lvx_splt $T3,$x60,$ctx_ 1395 lvx_splt $T4,$x70,$ctx_ [all...] |
/third_party/libinput/src/ |
H A D | quirks.c | 49 #define qlog_debug(ctx_, ...) quirk_log_msg((ctx_), QLOG_NOISE, __VA_ARGS__) 50 #define qlog_info(ctx_, ...) quirk_log_msg((ctx_), QLOG_INFO, __VA_ARGS__) 51 #define qlog_error(ctx_, ...) quirk_log_msg((ctx_), QLOG_ERROR, __VA_ARGS__) 52 #define qlog_parser(ctx_, ...) quirk_log_msg((ctx_), QLOG_PARSER_ERROR, __VA_ARGS__)
|