Home
last modified time | relevance | path

Searched refs:ctx (Results 4426 - 4450 of 12649) sorted by relevance

1...<<171172173174175176177178179180>>...506

/third_party/openssl/include/crypto/
H A Dsiphash.h24 size_t SipHash_hash_size(SIPHASH *ctx);
25 int SipHash_set_hash_size(SIPHASH *ctx, size_t hash_size);
26 int SipHash_Init(SIPHASH *ctx, const unsigned char *k,
28 void SipHash_Update(SIPHASH *ctx, const unsigned char *in, size_t inlen);
29 int SipHash_Final(SIPHASH *ctx, unsigned char *out, size_t outlen);
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_seed.c27 PROV_SEED_CTX *ctx = (PROV_SEED_CTX *)vctx; in seed_freectx() local
30 OPENSSL_clear_free(ctx, sizeof(*ctx)); in seed_freectx()
33 static void *seed_dupctx(void *ctx) in seed_dupctx() argument
35 PROV_SEED_CTX *in = (PROV_SEED_CTX *)ctx; in seed_dupctx()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dosfiber_mips64.c27 void marl_fiber_set_target(struct marl_fiber_context* ctx, in marl_fiber_set_target() argument
33 ctx->ra = (uintptr_t)&marl_fiber_trampoline; in marl_fiber_set_target()
34 ctx->a0 = (uintptr_t)target; in marl_fiber_set_target()
35 ctx->a1 = (uintptr_t)arg; in marl_fiber_set_target()
36 ctx->sp = ((uintptr_t)stack_top) & ~(uintptr_t)15; in marl_fiber_set_target()
/third_party/skia/third_party/externals/tint/src/ast/
H A Dalias.cc36 const Alias* Alias::Clone(CloneContext* ctx) const { in Clone()
38 auto src = ctx->Clone(source); in Clone()
39 auto sym = ctx->Clone(name); in Clone()
40 auto* ty = ctx->Clone(type); in Clone()
41 return ctx->dst->create<Alias>(src, sym, ty); in Clone()
H A Dbitcast_expression.cc37 const BitcastExpression* BitcastExpression::Clone(CloneContext* ctx) const { in Clone()
39 auto src = ctx->Clone(source); in Clone()
40 auto* t = ctx->Clone(type); in Clone()
41 auto* e = ctx->Clone(expr); in Clone()
42 return ctx->dst->create<BitcastExpression>(src, t, e); in Clone()
H A Delse_statement.cc38 const ElseStatement* ElseStatement::Clone(CloneContext* ctx) const { in Clone()
40 auto src = ctx->Clone(source); in Clone()
41 auto* cond = ctx->Clone(condition); in Clone()
42 auto* b = ctx->Clone(body); in Clone()
43 return ctx->dst->create<ElseStatement>(src, cond, b); in Clone()
H A Dloop_statement.cc38 const LoopStatement* LoopStatement::Clone(CloneContext* ctx) const { in Clone()
40 auto src = ctx->Clone(source); in Clone()
41 auto* b = ctx->Clone(body); in Clone()
42 auto* cont = ctx->Clone(continuing); in Clone()
43 return ctx->dst->create<LoopStatement>(src, b, cont); in Clone()
/third_party/skia/third_party/externals/tint/src/transform/
H A Dremove_unreachable_statements.cc40 void RemoveUnreachableStatements::Run(CloneContext& ctx, in Run() argument
43 for (auto* node : ctx.src->ASTNodes().Objects()) { in Run()
44 if (auto* stmt = ctx.src->Sem().Get<sem::Statement>(node)) { in Run()
46 RemoveStatement(ctx, stmt->Declaration()); in Run()
51 ctx.Clone(); in Run()
/third_party/skia/modules/svg/src/
H A DSkSVGFeFlood.cpp14 SkColor SkSVGFeFlood::resolveFloodColor(const SkSVGRenderContext& ctx) const { in resolveFloodColor()
23 const SkColor color = ctx.resolveSvgColor(*floodColor); in resolveFloodColor()
27 sk_sp<SkImageFilter> SkSVGFeFlood::onMakeImageFilter(const SkSVGRenderContext& ctx, in onMakeImageFilter() argument
29 return SkImageFilters::Shader(SkShaders::Color(resolveFloodColor(ctx)), in onMakeImageFilter()
30 this->resolveFilterSubregion(ctx, fctx)); in onMakeImageFilter()
H A DSkSVGFeOffset.cpp21 sk_sp<SkImageFilter> SkSVGFeOffset::onMakeImageFilter(const SkSVGRenderContext& ctx, in onMakeImageFilter() argument
24 * ctx.transformForCurrentOBB(fctx.primitiveUnits()).scale; in onMakeImageFilter()
27 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)); in onMakeImageFilter()
28 return SkImageFilters::Offset(d.x, d.y, std::move(in), this->resolveFilterSubregion(ctx, fctx)); in onMakeImageFilter()
/third_party/ffmpeg/libavfilter/
H A Dvf_bm3d.c691 static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in filter_slice() argument
693 BM3DContext *s = ctx->priv; in filter_slice()
734 static int filter_frame(AVFilterContext *ctx, AVFrame **out, AVFrame *in, AVFrame *ref) in filter_frame() argument
736 BM3DContext *s = ctx->priv; in filter_frame()
737 AVFilterLink *outlink = ctx->outputs[0]; in filter_frame()
749 if (!((1 << p) & s->planes) || ctx->is_disabled) { in filter_frame()
761 ff_filter_execute(ctx, filter_slice, &td, NULL, nb_jobs); in filter_frame()
774 AVFilterContext *ctx = inlink->dst; in config_input() local
775 BM3DContext *s = ctx->priv; in config_input()
778 s->nb_threads = FFMIN(ff_filter_get_nb_threads(ctx), MAX_NB_THREAD in config_input()
845 activate(AVFilterContext *ctx) activate() argument
881 AVFilterContext *ctx = fs->parent; process_frame() local
899 init(AVFilterContext *ctx) init() argument
956 AVFilterContext *ctx = outlink->src; config_output() local
1004 uninit(AVFilterContext *ctx) uninit() argument
[all...]
H A Df_ebur128.c285 AVFilterContext *ctx = outlink->src; in config_video_output() local
286 AVFilterLink *inlink = ctx->inputs[0]; in config_video_output()
287 EBUR128Context *ebur128 = ctx->priv; in config_video_output()
292 av_log(ctx, AV_LOG_ERROR, "Video size %dx%d is too small, " in config_video_output()
381 AVFilterContext *ctx = inlink->dst; in config_audio_input() local
382 EBUR128Context *ebur128 = ctx->priv; in config_audio_input()
427 AVFilterContext *ctx = outlink->src; in config_audio_output() local
428 EBUR128Context *ebur128 = ctx->priv; in config_audio_output()
531 static av_cold int init(AVFilterContext *ctx) in init() argument
533 EBUR128Context *ebur128 = ctx in init()
619 AVFilterContext *ctx = inlink->dst; filter_frame() local
936 activate(AVFilterContext *ctx) activate() argument
973 query_formats(AVFilterContext *ctx) query_formats() argument
1014 uninit(AVFilterContext *ctx) uninit() argument
[all...]
H A Dsetpts.c100 static av_cold int init(AVFilterContext *ctx) in init() argument
102 SetPTSContext *setpts = ctx->priv; in init()
106 var_names, NULL, NULL, NULL, NULL, 0, ctx)) < 0) { in init()
107 av_log(ctx, AV_LOG_ERROR, "Error while parsing expression '%s'\n", setpts->expr_str); in init()
124 AVFilterContext *ctx = inlink->dst; in config_input() local
125 SetPTSContext *setpts = ctx->priv; in config_input()
224 static int activate(AVFilterContext *ctx) in activate() argument
226 SetPTSContext *setpts = ctx->priv; in activate()
227 AVFilterLink *inlink = ctx->inputs[0]; in activate()
228 AVFilterLink *outlink = ctx in activate()
259 uninit(AVFilterContext *ctx) uninit() argument
[all...]
H A Dvf_aspect.c91 AVFilterContext *ctx = inlink->dst; in get_aspect_ratio() local
109 NULL, NULL, NULL, NULL, NULL, 0, ctx); in get_aspect_ratio()
111 ret = av_parse_ratio(aspect_ratio, s->ratio_expr, s->max, 0, ctx); in get_aspect_ratio()
116 av_log(ctx, AV_LOG_ERROR, in get_aspect_ratio()
121 av_log(ctx, AV_LOG_ERROR, in get_aspect_ratio()
132 AVFilterContext *ctx = outlink->src; in setdar_config_props() local
133 AVFilterLink *inlink = ctx->inputs[0]; in setdar_config_props()
134 AspectContext *s = ctx->priv; in setdar_config_props()
155 av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d dar:%d/%d sar:%d/%d -> dar:%d/%d sar:%d/%d\n", in setdar_config_props()
204 AVFilterContext *ctx in setsar_config_props() local
[all...]
/third_party/skia/src/shaders/
H A DSkImageShader.cpp467 void* ctx = gather; in doStages()
469 case kAlpha_8_SkColorType: p->append(SkRasterPipeline::gather_a8, ctx); break; in doStages()
470 case kA16_unorm_SkColorType: p->append(SkRasterPipeline::gather_a16, ctx); break; in doStages()
471 case kA16_float_SkColorType: p->append(SkRasterPipeline::gather_af16, ctx); break; in doStages()
472 case kRGB_565_SkColorType: p->append(SkRasterPipeline::gather_565, ctx); break; in doStages()
473 case kARGB_4444_SkColorType: p->append(SkRasterPipeline::gather_4444, ctx); break; in doStages()
474 case kR8G8_unorm_SkColorType: p->append(SkRasterPipeline::gather_rg88, ctx); break; in doStages()
475 case kR16G16_unorm_SkColorType: p->append(SkRasterPipeline::gather_rg1616, ctx); break; in doStages()
476 case kR16G16_float_SkColorType: p->append(SkRasterPipeline::gather_rgf16, ctx); break; in doStages()
477 case kRGBA_8888_SkColorType: p->append(SkRasterPipeline::gather_8888, ctx); brea in doStages()
564 auto ctx = alloc->make<SkRasterPipeline_SamplerCtx2>(); doStages() local
591 auto ctx = alloc->make<SkRasterPipeline_SamplerCtx2>(); doStages() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dhls.c110 AVFormatContext *ctx; member
205 AVFormatContext *ctx; member
276 ff_format_io_close(c->ctx, &pls->input); in free_playlist_list()
278 ff_format_io_close(c->ctx, &pls->input_next); in free_playlist_list()
280 if (pls->ctx) { in free_playlist_list()
281 pls->ctx->pb = NULL; in free_playlist_list()
282 avformat_close_input(&pls->ctx); in free_playlist_list()
504 av_log(c->ctx, AV_LOG_WARNING, "Can't support the type: %s\n", info->type); in new_rendition()
510 av_log(c->ctx, AV_LOG_ERROR, "The URI tag is REQUIRED for subtitle.\n"); in new_rendition()
515 if (c->ctx in new_rendition()
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_lower_to_hw_instr.cpp199 emit_int64_dpp_op(lower_context* ctx, PhysReg dst_reg, PhysReg src0_reg, PhysReg src1_reg, in emit_int64_dpp_op() argument
203 Builder bld(ctx->program, &ctx->instructions); in emit_int64_dpp_op()
212 if (ctx->program->gfx_level >= GFX10) { in emit_int64_dpp_op()
299 emit_int64_op(lower_context* ctx, PhysReg dst_reg, PhysReg src0_reg, PhysReg src1_reg, PhysReg vtmp, in emit_int64_op() argument
302 Builder bld(ctx->program, &ctx->instructions); in emit_int64_op()
326 if (ctx->program->gfx_level >= GFX10) { in emit_int64_op()
386 emit_dpp_op(lower_context* ctx, PhysReg dst_reg, PhysReg src0_reg, PhysReg src1_reg, PhysReg vtmp, in emit_dpp_op() argument
390 Builder bld(ctx in emit_dpp_op()
427 emit_op(lower_context* ctx, PhysReg dst_reg, PhysReg src0_reg, PhysReg src1_reg, PhysReg vtmp, ReduceOp op, unsigned size) emit_op() argument
454 emit_dpp_mov(lower_context* ctx, PhysReg dst, PhysReg src0, unsigned size, unsigned dpp_ctrl, unsigned row_mask, unsigned bank_mask, bool bound_ctrl) emit_dpp_mov() argument
474 emit_reduction(lower_context* ctx, aco_opcode op, ReduceOp reduce_op, unsigned cluster_size, PhysReg tmp, PhysReg stmp, PhysReg vtmp, PhysReg sitmp, Operand src, Definition dst) emit_reduction() argument
971 split_copy(lower_context* ctx, unsigned offset, Definition* def, Operand* op, const copy_operation& src, bool ignore_uses, unsigned max_size) split_copy() argument
1041 copy_constant(lower_context* ctx, Builder& bld, Definition dst, Operand op) copy_constant() argument
1208 do_copy(lower_context* ctx, Builder& bld, const copy_operation& copy, bool* preserve_scc, PhysReg scratch_sgpr) do_copy() argument
1327 do_swap(lower_context* ctx, Builder& bld, const copy_operation& copy, bool preserve_scc, Pseudo_instruction* pi) do_swap() argument
1434 do_pack_2x16(lower_context* ctx, Builder& bld, Definition def, Operand lo, Operand hi) do_pack_2x16() argument
1547 try_coalesce_copies(lower_context* ctx, std::map<PhysReg, copy_operation>& copy_map, copy_operation& copy) try_coalesce_copies() argument
1594 handle_operands(std::map<PhysReg, copy_operation>& copy_map, lower_context* ctx, amd_gfx_level gfx_level, Pseudo_instruction* pi) handle_operands() argument
2010 lower_context ctx; lower_to_hw_instr() local
[all...]
/third_party/mesa3d/src/egl/main/
H A Deglapi.c838 eglDestroyContext(EGLDisplay dpy, EGLContext ctx) in eglDestroyContext() argument
841 _EGLContext *context = _eglLookupContext(ctx, disp); in eglDestroyContext()
856 EGLContext ctx) in eglMakeCurrent()
859 _EGLContext *context = _eglLookupContext(ctx, disp); in eglMakeCurrent()
872 ctx != EGL_NO_CONTEXT) in eglMakeCurrent()
878 if (!context && ctx != EGL_NO_CONTEXT) in eglMakeCurrent()
883 * To release the current context without assigning a new one, set ctx in eglMakeCurrent()
886 if (!disp->Extensions.KHR_surfaceless_context && ctx != EGL_NO_CONTEXT) in eglMakeCurrent()
919 eglQueryContext(EGLDisplay dpy, EGLContext ctx, in eglQueryContext() argument
923 _EGLContext *context = _eglLookupContext(ctx, dis in eglQueryContext()
855 eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) eglMakeCurrent() argument
1305 _EGLContext *ctx = _eglGetCurrentContext(); eglSwapInterval() local
1341 _EGLContext *ctx = _eglGetCurrentContext(); eglSwapBuffers() local
1387 _EGLContext *ctx = _eglGetCurrentContext(); _eglSwapBuffersWithDamageCommon() local
1470 _EGLContext *ctx = _eglGetCurrentContext(); eglSetDamageRegionKHR() local
1521 _EGLContext *ctx = _eglGetCurrentContext(); _eglWaitClientCommon() local
1562 _EGLContext *ctx = _eglGetCurrentContext(); eglWaitNative() local
1590 _EGLContext *ctx = _eglGetCurrentContext(); eglGetCurrentDisplay() local
1602 _EGLContext *ctx = _eglGetCurrentContext(); eglGetCurrentContext() local
1614 _EGLContext *ctx = _eglGetCurrentContext(); eglGetCurrentSurface() local
1724 _EGLContext *ctx = t->CurrentContext; eglReleaseThread() local
1743 _eglCreateImageCommon(_EGLDisplay *disp, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attr_list) _eglCreateImageCommon() argument
1768 eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attr_list) eglCreateImageKHR() argument
1778 eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attr_list) eglCreateImage() argument
1838 _EGLContext *ctx = _eglGetCurrentContext(); _eglCreateSync() local
2041 _EGLContext *ctx = _eglGetCurrentContext(); _eglWaitSyncCommon() local
2186 _EGLContext *ctx = _eglGetCurrentContext(); eglSwapBuffersRegionNOK() local
2763 _eglLockDisplayInterop(EGLDisplay dpy, EGLContext context, _EGLDisplay **disp, _EGLContext **ctx) _eglLockDisplayInterop() argument
2790 _EGLContext *ctx; MesaGLInteropEGLQueryDeviceInfo() local
2812 _EGLContext *ctx; MesaGLInteropEGLExportObject() local
[all...]
/kernel/linux/linux-5.10/drivers/clk/samsung/
H A Dclk-s3c2412.c192 struct samsung_clk_provider *ctx, in s3c2412_common_clk_register_fixed_ext()
200 samsung_clk_register_fixed_rate(ctx, s3c2412_common_frate_clks, in s3c2412_common_clk_register_fixed_ext()
203 samsung_clk_register_alias(ctx, &xti_alias, 1); in s3c2412_common_clk_register_fixed_ext()
209 struct samsung_clk_provider *ctx; in s3c2412_common_clk_init() local
219 ctx = samsung_clk_init(np, reg_base, NR_CLKS); in s3c2412_common_clk_init()
223 s3c2412_common_clk_register_fixed_ext(ctx, xti_f, ext_f); in s3c2412_common_clk_init()
226 samsung_clk_register_pll(ctx, s3c2412_plls, ARRAY_SIZE(s3c2412_plls), in s3c2412_common_clk_init()
230 samsung_clk_register_mux(ctx, s3c2412_muxes, ARRAY_SIZE(s3c2412_muxes)); in s3c2412_common_clk_init()
231 samsung_clk_register_div(ctx, s3c2412_dividers, in s3c2412_common_clk_init()
233 samsung_clk_register_gate(ctx, s3c2412_gate in s3c2412_common_clk_init()
191 s3c2412_common_clk_register_fixed_ext( struct samsung_clk_provider *ctx, unsigned long xti_f, unsigned long ext_f) s3c2412_common_clk_register_fixed_ext() argument
[all...]
/kernel/linux/linux-5.10/drivers/char/tpm/
H A Dtpm_ftpm_tee.c130 rc = tee_client_invoke_func(pvt_data->ctx, &transceive_args, in ftpm_tee_tpm_op_send()
232 pvt_data->ctx = tee_client_open_context(NULL, ftpm_tee_match, NULL, in ftpm_tee_probe()
234 if (IS_ERR(pvt_data->ctx)) { in ftpm_tee_probe()
235 if (PTR_ERR(pvt_data->ctx) == -ENOENT) in ftpm_tee_probe()
238 return PTR_ERR(pvt_data->ctx); in ftpm_tee_probe()
247 rc = tee_client_open_session(pvt_data->ctx, &sess_arg, NULL); in ftpm_tee_probe()
257 pvt_data->shm = tee_shm_alloc_kernel_buf(pvt_data->ctx, in ftpm_tee_probe()
292 tee_client_close_session(pvt_data->ctx, pvt_data->session); in ftpm_tee_probe()
294 tee_client_close_context(pvt_data->ctx); in ftpm_tee_probe()
327 tee_client_close_session(pvt_data->ctx, pvt_dat in ftpm_tee_remove()
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dmpi.h113 void mpi_barrett_free(mpi_barrett_t ctx);
114 void mpi_mod_barrett(MPI r, MPI x, mpi_barrett_t ctx);
115 void mpi_mul_barrett(MPI w, MPI u, MPI v, mpi_barrett_t ctx);
241 void (*addm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx);
243 void (*mulm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx);
244 void (*pow2)(MPI w, const MPI b, struct mpi_ec_ctx *ctx);
245 void (*mul2)(MPI w, MPI u, struct mpi_ec_ctx *ctx);
248 void mpi_ec_init(struct mpi_ec_ctx *ctx, enum gcry_mpi_ec_models model,
251 void mpi_ec_deinit(struct mpi_ec_ctx *ctx);
256 int mpi_ec_get_affine(MPI x, MPI y, MPI_POINT point, struct mpi_ec_ctx *ctx);
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dmpi.h113 void mpi_barrett_free(mpi_barrett_t ctx);
114 void mpi_mod_barrett(MPI r, MPI x, mpi_barrett_t ctx);
115 void mpi_mul_barrett(MPI w, MPI u, MPI v, mpi_barrett_t ctx);
241 void (*addm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx);
243 void (*mulm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx);
244 void (*pow2)(MPI w, const MPI b, struct mpi_ec_ctx *ctx);
245 void (*mul2)(MPI w, MPI u, struct mpi_ec_ctx *ctx);
248 void mpi_ec_init(struct mpi_ec_ctx *ctx, enum gcry_mpi_ec_models model,
251 void mpi_ec_deinit(struct mpi_ec_ctx *ctx);
256 int mpi_ec_get_affine(MPI x, MPI y, MPI_POINT point, struct mpi_ec_ctx *ctx);
[all...]
/kernel/linux/linux-6.6/drivers/char/tpm/
H A Dtpm_ftpm_tee.c129 rc = tee_client_invoke_func(pvt_data->ctx, &transceive_args, in ftpm_tee_tpm_op_send()
231 pvt_data->ctx = tee_client_open_context(NULL, ftpm_tee_match, NULL, in ftpm_tee_probe()
233 if (IS_ERR(pvt_data->ctx)) { in ftpm_tee_probe()
234 if (PTR_ERR(pvt_data->ctx) == -ENOENT) in ftpm_tee_probe()
237 return PTR_ERR(pvt_data->ctx); in ftpm_tee_probe()
246 rc = tee_client_open_session(pvt_data->ctx, &sess_arg, NULL); in ftpm_tee_probe()
256 pvt_data->shm = tee_shm_alloc_kernel_buf(pvt_data->ctx, in ftpm_tee_probe()
291 tee_client_close_session(pvt_data->ctx, pvt_data->session); in ftpm_tee_probe()
293 tee_client_close_context(pvt_data->ctx); in ftpm_tee_probe()
326 tee_client_close_session(pvt_data->ctx, pvt_dat in ftpm_tee_remove()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/clk_mgr/dce100/
H A Ddce_clk_mgr.c235 struct dc_bios *bp = clk_mgr_base->ctx->dc_bios; in dce_set_clock()
237 struct dmcu *dmcu = clk_mgr_dce->base.ctx->dc->res_pool->dmcu; in dce_set_clock()
274 struct dc_debug_options *debug = &clk_mgr_dce->base.ctx->dc->debug; in dce_clock_read_integrated_info()
275 struct dc_bios *bp = clk_mgr_dce->base.ctx->dc_bios; in dce_clock_read_integrated_info()
327 struct dc_bios *bp = clk_mgr_dce->base.ctx->dc_bios; in dce_clock_read_ss_info()
377 if (clk_mgr_dce->base.ctx->dc->config.ignore_dpref_ss) in dce_clock_read_ss_info()
394 dm_pp_apply_display_requirements(dc->ctx, pp_display_cfg); in dce_pplib_apply_display_requirements()
413 if (dm_pp_apply_power_level_change_request(clk_mgr_base->ctx, &level_change_req)) in dce_update_clocks()
421 dce_pplib_apply_display_requirements(clk_mgr_base->ctx->dc, context); in dce_update_clocks()
437 struct dc_context *ctx, in dce_clk_mgr_construct()
436 dce_clk_mgr_construct( struct dc_context *ctx, struct clk_mgr_internal *clk_mgr) dce_clk_mgr_construct() argument
[all...]
/kernel/linux/linux-6.6/io_uring/
H A Dmsg_ring.c47 * the source ctx lock, punt to io-wq. in io_double_lock_ctx()
78 struct io_ring_ctx *ctx = req->file->private_data; in io_msg_exec_remote() local
80 struct task_struct *task = READ_ONCE(ctx->submitter_task); in io_msg_exec_remote()
86 if (task_work_add(ctx->submitter_task, &msg->tw, TWA_SIGNAL)) in io_msg_exec_remote()
163 struct io_ring_ctx *ctx = req->ctx; in io_msg_grab_file() local
167 io_ring_submit_lock(ctx, issue_flags); in io_msg_grab_file()
168 if (likely(idx < ctx->nr_user_files)) { in io_msg_grab_file()
169 idx = array_index_nospec(idx, ctx->nr_user_files); in io_msg_grab_file()
170 file = io_file_from_index(&ctx in io_msg_grab_file()
227 struct io_ring_ctx *ctx = req->ctx; io_msg_send_fd() local
[all...]

Completed in 23 milliseconds

1...<<171172173174175176177178179180>>...506