/third_party/skia/src/shaders/gradients/ |
H A D | SkGradientShader.cpp | 221 static void add_stop_color(SkRasterPipeline_GradientCtx* ctx, size_t stop, SkPMColor4f Fs, SkPMColor4f Bs) { in add_stop_color() argument 222 (ctx->fs[0])[stop] = Fs.fR; in add_stop_color() 223 (ctx->fs[1])[stop] = Fs.fG; in add_stop_color() 224 (ctx->fs[2])[stop] = Fs.fB; in add_stop_color() 225 (ctx->fs[3])[stop] = Fs.fA; in add_stop_color() 227 (ctx->bs[0])[stop] = Bs.fR; in add_stop_color() 228 (ctx->bs[1])[stop] = Bs.fG; in add_stop_color() 229 (ctx->bs[2])[stop] = Bs.fB; in add_stop_color() 230 (ctx->bs[3])[stop] = Bs.fA; in add_stop_color() 233 static void add_const_color(SkRasterPipeline_GradientCtx* ctx, size_ argument 239 init_stop_evenly( SkRasterPipeline_GradientCtx* ctx, float gapCount, size_t stop, SkPMColor4f c_l, SkPMColor4f c_r) init_stop_evenly() argument 259 init_stop_pos( SkRasterPipeline_GradientCtx* ctx, size_t stop, float t_l, float t_r, SkPMColor4f c_l, SkPMColor4f c_r) init_stop_pos() argument 333 auto ctx = alloc->make<SkRasterPipeline_EvenlySpaced2StopGradientCtx>(); onAppendStages() local 340 auto* ctx = alloc->make<SkRasterPipeline_GradientCtx>(); onAppendStages() local [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/mtk-vcodec/vdec/ |
H A D | vdec_vp9_if.c | 182 * @ctx : current decode context 199 struct mtk_vcodec_ctx *ctx; member 296 mtk_vcodec_mem_free(inst->ctx, in vp9_free_all_sf_ref_fb() 298 mtk_vcodec_mem_free(inst->ctx, in vp9_free_all_sf_ref_fb() 342 if (mtk_vcodec_mem_alloc(inst->ctx, mem_basy_y)) { in vp9_get_sf_ref_fb() 351 if (mtk_vcodec_mem_alloc(inst->ctx, mem_basy_c)) { in vp9_get_sf_ref_fb() 370 if (!(inst->ctx->dev->dec_capability & in vp9_alloc_work_buf() 395 mtk_vcodec_mem_free(inst->ctx, mem); in vp9_alloc_work_buf() 399 result = mtk_vcodec_mem_alloc(inst->ctx, mem); in vp9_alloc_work_buf() 413 mtk_vcodec_mem_free(inst->ctx, me in vp9_alloc_work_buf() 539 struct mtk_vcodec_ctx *ctx = inst->ctx; vp9_wait_dec_end() local 551 vp9_alloc_inst(struct mtk_vcodec_ctx *ctx) vp9_alloc_inst() argument 787 vdec_vp9_init(struct mtk_vcodec_ctx *ctx) vdec_vp9_init() argument [all...] |
/kernel/linux/linux-5.10/sound/soc/intel/boards/ |
H A D | sof_rt5682.c | 140 struct sof_card_private *ctx = snd_soc_card_get_drvdata(rtd->card); in sof_hdmi_init() local 152 list_add_tail(&pcm->head, &ctx->hdmi_pcm_list); in sof_hdmi_init() 159 struct sof_card_private *ctx = snd_soc_card_get_drvdata(rtd->card); in sof_rt5682_codec_init() local 183 ret = clk_prepare_enable(ctx->mclk); in sof_rt5682_codec_init() 185 clk_disable_unprepare(ctx->mclk); in sof_rt5682_codec_init() 187 ret = clk_set_rate(ctx->mclk, 19200000); in sof_rt5682_codec_init() 201 &ctx->sof_headset, NULL, 0); in sof_rt5682_codec_init() 207 jack = &ctx->sof_headset; in sof_rt5682_codec_init() 234 struct sof_card_private *ctx = snd_soc_card_get_drvdata(rtd->card); in sof_rt5682_hw_params() local 240 ret = clk_prepare_enable(ctx in sof_rt5682_hw_params() 340 struct sof_card_private *ctx = snd_soc_card_get_drvdata(card); sof_card_late_probe() local 738 struct sof_card_private *ctx; sof_audio_probe() local [all...] |
H A D | bxt_da7219_max98357a.c | 258 struct bxt_card_private *ctx = snd_soc_card_get_drvdata(rtd->card); in broxton_hdmi_init() local 269 list_add_tail(&pcm->head, &ctx->hdmi_pcm_list); in broxton_hdmi_init() 652 struct bxt_card_private *ctx = snd_soc_card_get_drvdata(card); in bxt_card_late_probe() local 661 switch (ctx->spkamp) { in bxt_card_late_probe() 679 dev_err(card->dev, "Invalid speaker amplifier %d\n", ctx->spkamp); in bxt_card_late_probe() 708 if (list_empty(&ctx->hdmi_pcm_list)) in bxt_card_late_probe() 711 if (ctx->common_hdmi_codec_drv) { in bxt_card_late_probe() 712 pcm = list_first_entry(&ctx->hdmi_pcm_list, struct bxt_hdmi_pcm, in bxt_card_late_probe() 718 list_for_each_entry(pcm, &ctx->hdmi_pcm_list, head) { in bxt_card_late_probe() 758 struct bxt_card_private *ctx; in broxton_audio_probe() local [all...] |
/kernel/linux/linux-5.10/fs/cifs/ |
H A D | misc.c | 788 struct cifs_aio_ctx *ctx; in cifs_aio_ctx_alloc() local 791 * Must use kzalloc to initialize ctx->bv to NULL and ctx->direct_io in cifs_aio_ctx_alloc() 795 ctx = kzalloc(sizeof(struct cifs_aio_ctx), GFP_KERNEL); in cifs_aio_ctx_alloc() 796 if (!ctx) in cifs_aio_ctx_alloc() 799 INIT_LIST_HEAD(&ctx->list); in cifs_aio_ctx_alloc() 800 mutex_init(&ctx->aio_mutex); in cifs_aio_ctx_alloc() 801 init_completion(&ctx->done); in cifs_aio_ctx_alloc() 802 kref_init(&ctx->refcount); in cifs_aio_ctx_alloc() 803 return ctx; in cifs_aio_ctx_alloc() 809 struct cifs_aio_ctx *ctx = container_of(refcount, cifs_aio_ctx_release() local 836 setup_aio_ctx_iter(struct cifs_aio_ctx *ctx, struct iov_iter *iter, int rw) setup_aio_ctx_iter() argument [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_colorcorrect.c | 64 static int average_slice8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in average_slice8() argument 66 ColorCorrectContext *s = ctx->priv; in average_slice8() 95 static int average_slice16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in average_slice16() argument 97 ColorCorrectContext *s = ctx->priv; in average_slice16() 126 static int minmax_slice8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in minmax_slice8() argument 128 ColorCorrectContext *s = ctx->priv; in minmax_slice8() 162 static int minmax_slice16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in minmax_slice16() argument 164 ColorCorrectContext *s = ctx->priv; in minmax_slice16() 198 static int median_8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in median_8() argument 200 ColorCorrectContext *s = ctx in median_8() 252 median_16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) median_16() argument 315 colorcorrect_slice8(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) colorcorrect_slice8() argument 355 colorcorrect_slice16(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) colorcorrect_slice16() argument 398 AVFilterContext *ctx = inlink->dst; filter_frame() local 449 AVFilterContext *ctx = inlink->dst; config_input() local 496 uninit(AVFilterContext *ctx) uninit() argument [all...] |
H A D | vf_lensfun.c | 132 static av_cold int init(AVFilterContext *ctx) in init() argument 134 LensfunContext *lensfun = ctx->priv; in init() 142 av_log(ctx, AV_LOG_FATAL, "Failed to load lensfun database from %s path\n", in init() 150 av_log(ctx, AV_LOG_FATAL, "Option \"make\" or option \"model\" not specified\n"); in init() 151 av_log(ctx, AV_LOG_INFO, "Available values for \"make\" and \"model\":\n"); in init() 153 av_log(ctx, AV_LOG_INFO, "\t%s\t%s\n", cameras[i]->Maker, cameras[i]->Model); in init() 159 av_log(ctx, AV_LOG_FATAL, "Option \"lens_model\" not specified\n"); in init() 160 av_log(ctx, AV_LOG_INFO, "Available values for \"lens_model\":\n"); in init() 162 av_log(ctx, AV_LOG_INFO, "\t%s\t(make %s)\n", lenses[i]->Model, lenses[i]->Maker); in init() 173 av_log(ctx, AV_LOG_INF in init() 211 AVFilterContext *ctx = inlink->dst; config_props() local 286 vignetting_filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) vignetting_filter_slice() argument 309 distortion_correction_filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) distortion_correction_filter_slice() argument 440 AVFilterContext *ctx = inlink->dst; filter_frame() local 496 uninit(AVFilterContext *ctx) uninit() argument [all...] |
H A D | f_graphmonitor.c | 118 static av_cold int init(AVFilterContext *ctx) in init() argument 120 GraphMonitorContext *s = ctx->priv; in init() 130 static int query_formats(AVFilterContext *ctx) in query_formats() argument 132 AVFilterLink *outlink = ctx->outputs[0]; in query_formats() 206 static int draw_items(AVFilterContext *ctx, AVFrame *out, in draw_items() argument 211 GraphMonitorContext *s = ctx->priv; in draw_items() 328 static int create_frame(AVFilterContext *ctx, int64_t pts) in create_frame() argument 330 GraphMonitorContext *s = ctx->priv; in create_frame() 331 AVFilterLink *outlink = ctx->outputs[0]; in create_frame() 343 for (int i = 0; i < ctx in create_frame() 404 activate(AVFilterContext *ctx) activate() argument 463 uninit(AVFilterContext *ctx) uninit() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/pem/ |
H A D | pem_lib.c | 317 EVP_CIPHER_CTX *ctx = NULL; in PEM_ASN1_write_bio() local 390 if ((ctx = EVP_CIPHER_CTX_new()) == NULL in PEM_ASN1_write_bio() 391 || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv) in PEM_ASN1_write_bio() 392 || !EVP_EncryptUpdate(ctx, data, &j, data, i) in PEM_ASN1_write_bio() 393 || !EVP_EncryptFinal_ex(ctx, &(data[j]), &i)) in PEM_ASN1_write_bio() 408 EVP_CIPHER_CTX_free(ctx); in PEM_ASN1_write_bio() 421 EVP_CIPHER_CTX *ctx; in PEM_do_header() local 452 ctx = EVP_CIPHER_CTX_new(); in PEM_do_header() 453 if (ctx == NULL) in PEM_do_header() 456 ok = EVP_DecryptInit_ex(ctx, ciphe in PEM_do_header() 613 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new(); PEM_write_bio() local 921 EVP_ENCODE_CTX *ctx = NULL; PEM_read_bio_ex() local [all...] |
/third_party/openssl/crypto/pem/ |
H A D | pem_lib.c | 317 EVP_CIPHER_CTX *ctx = NULL; in PEM_ASN1_write_bio() local 390 if ((ctx = EVP_CIPHER_CTX_new()) == NULL in PEM_ASN1_write_bio() 391 || !EVP_EncryptInit_ex(ctx, enc, NULL, key, iv) in PEM_ASN1_write_bio() 392 || !EVP_EncryptUpdate(ctx, data, &j, data, i) in PEM_ASN1_write_bio() 393 || !EVP_EncryptFinal_ex(ctx, &(data[j]), &i)) in PEM_ASN1_write_bio() 408 EVP_CIPHER_CTX_free(ctx); in PEM_ASN1_write_bio() 421 EVP_CIPHER_CTX *ctx; in PEM_do_header() local 452 ctx = EVP_CIPHER_CTX_new(); in PEM_do_header() 453 if (ctx == NULL) in PEM_do_header() 456 ok = EVP_DecryptInit_ex(ctx, ciphe in PEM_do_header() 613 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new(); PEM_write_bio() local 921 EVP_ENCODE_CTX *ctx = NULL; PEM_read_bio_ex() local [all...] |
/kernel/linux/linux-6.6/drivers/clk/samsung/ |
H A D | clk-s5pv210.c | 743 struct samsung_clk_provider *ctx; in __s5pv210_clk_init() local 746 ctx = samsung_clk_init(NULL, reg_base, NR_CLKS); in __s5pv210_clk_init() 747 hws = ctx->clk_data.hws; in __s5pv210_clk_init() 749 samsung_clk_register_mux(ctx, early_mux_clks, in __s5pv210_clk_init() 753 samsung_clk_register_fixed_rate(ctx, s5p6442_frate_clks, in __s5pv210_clk_init() 755 samsung_clk_register_pll(ctx, s5p6442_pll_clks, in __s5pv210_clk_init() 757 samsung_clk_register_mux(ctx, s5p6442_mux_clks, in __s5pv210_clk_init() 759 samsung_clk_register_div(ctx, s5p6442_div_clks, in __s5pv210_clk_init() 761 samsung_clk_register_gate(ctx, s5p6442_gate_clks, in __s5pv210_clk_init() 764 samsung_clk_register_fixed_rate(ctx, s5pv210_frate_clk in __s5pv210_clk_init() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/core/ |
H A D | dc_stream.c | 35 #define DC_LOGGER dc->ctx->logger 48 if (stream->ctx->dc->caps.dual_link_dvi && in update_stream_signal() 65 stream->ctx = dc_sink_data->ctx; in dc_stream_construct() 124 stream->stream_id = stream->ctx->dc_stream_id_count; in dc_stream_construct() 125 stream->ctx->dc_stream_id_count++; in dc_stream_construct() 199 new_stream->stream_id = new_stream->ctx->dc_stream_id_count; in dc_copy_stream() 200 new_stream->ctx->dc_stream_id_count++; in dc_copy_stream() 203 if (new_stream->ctx->dc->res_pool->funcs->link_encs_assign) in dc_copy_stream() 246 struct dc *dc = stream->ctx in dc_stream_get_status() [all...] |
/kernel/linux/linux-6.6/sound/soc/intel/boards/ |
H A D | bxt_da7219_max98357a.c | 277 struct bxt_card_private *ctx = snd_soc_card_get_drvdata(rtd->card); in broxton_hdmi_init() local 288 list_add_tail(&pcm->head, &ctx->hdmi_pcm_list); in broxton_hdmi_init() 671 struct bxt_card_private *ctx = snd_soc_card_get_drvdata(card); in bxt_card_late_probe() local 680 switch (ctx->spkamp) { in bxt_card_late_probe() 698 dev_err(card->dev, "Invalid speaker amplifier %d\n", ctx->spkamp); in bxt_card_late_probe() 727 if (list_empty(&ctx->hdmi_pcm_list)) in bxt_card_late_probe() 730 if (ctx->common_hdmi_codec_drv) { in bxt_card_late_probe() 731 pcm = list_first_entry(&ctx->hdmi_pcm_list, struct bxt_hdmi_pcm, in bxt_card_late_probe() 737 list_for_each_entry(pcm, &ctx->hdmi_pcm_list, head) { in bxt_card_late_probe() 776 struct bxt_card_private *ctx; in broxton_audio_probe() local [all...] |
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_pack.c | 379 bi_assign_branch_offset(bi_context *ctx, bi_block *block) in bi_assign_branch_offset() argument 391 int32_t qwords = bi_block_offset(ctx, clause, br->branch_target); in bi_assign_branch_offset() 638 bi_pack_clause(bi_context *ctx, bi_clause *clause, in bi_pack_clause() argument 655 assert(ctx->quirks & BIFROST_LIMITED_CLPER); in bi_pack_clause() 657 assert(!(ctx->quirks & BIFROST_LIMITED_CLPER)); in bi_pack_clause() 712 bi_collect_blend_ret_addr(bi_context *ctx, struct util_dynarray *emission, in bi_collect_blend_ret_addr() argument 716 if (ctx->inputs->is_blend) in bi_collect_blend_ret_addr() 727 assert(loc < ARRAY_SIZE(ctx->info.bifrost->blend)); in bi_collect_blend_ret_addr() 728 assert(!ctx->info.bifrost->blend[loc].return_offset); in bi_collect_blend_ret_addr() 729 ctx in bi_collect_blend_ret_addr() 735 bi_pack(bi_context *ctx, struct util_dynarray *emission) bi_pack() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe_aaline.c | 118 aa_transform_decl(struct tgsi_transform_context *ctx, in aa_transform_decl() argument 121 struct aa_transform_context *aactx = (struct aa_transform_context *)ctx; in aa_transform_decl() 147 ctx->emit_declaration(ctx, decl); in aa_transform_decl() 165 aa_transform_prolog(struct tgsi_transform_context *ctx) in aa_transform_prolog() argument 167 struct aa_transform_context *aactx = (struct aa_transform_context *) ctx; in aa_transform_prolog() 178 tgsi_transform_input_decl(ctx, aactx->maxInput + 1, in aa_transform_prolog() 183 tgsi_transform_temp_decl(ctx, aactx->aaTemp); in aa_transform_prolog() 184 tgsi_transform_temp_decl(ctx, aactx->colorTemp); in aa_transform_prolog() 192 aa_transform_epilog(struct tgsi_transform_context *ctx) in aa_transform_epilog() argument 248 aa_transform_inst(struct tgsi_transform_context *ctx, struct tgsi_full_instruction *inst) aa_transform_inst() argument [all...] |
/third_party/openssl/crypto/cms/ |
H A D | cms_lib.c | 32 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(a == NULL ? NULL : *a); variable 36 ossl_cms_ctx_get0_libctx(ctx), 37 ossl_cms_ctx_get0_propq(ctx)); 58 ci->ctx.libctx = libctx; in CMS_ContentInfo_new_ex() 59 ci->ctx.propq = NULL; in CMS_ContentInfo_new_ex() 61 ci->ctx.propq = OPENSSL_strdup(propq); in CMS_ContentInfo_new_ex() 62 if (ci->ctx.propq == NULL) { in CMS_ContentInfo_new_ex() 74 return cms != NULL ? &cms->ctx : NULL; in ossl_cms_get0_cmsctx() 77 OSSL_LIB_CTX *ossl_cms_ctx_get0_libctx(const CMS_CTX *ctx) in ossl_cms_ctx_get0_libctx() argument 79 return ctx ! in ossl_cms_ctx_get0_libctx() 82 ossl_cms_ctx_get0_propq(const CMS_CTX *ctx) ossl_cms_ctx_get0_propq() argument 92 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(ci); ossl_cms_resolve_libctx() local 395 ossl_cms_DigestAlgorithm_init_bio(X509_ALGOR *digestAlgorithm, const CMS_CTX *ctx) ossl_cms_DigestAlgorithm_init_bio() argument [all...] |
/third_party/openssl/test/ |
H A D | bad_dtls_test.c | 285 EVP_MAC_CTX *ctx = NULL; in send_record() local 310 || !TEST_ptr(ctx = EVP_MAC_CTX_new(hmac))) in send_record() 317 if (!EVP_MAC_init(ctx, mac_key, 20, params) in send_record() 318 || !EVP_MAC_update(ctx, epoch, 2) in send_record() 319 || !EVP_MAC_update(ctx, seq, 6) in send_record() 320 || !EVP_MAC_update(ctx, &type, 1) in send_record() 321 || !EVP_MAC_update(ctx, ver, 2) /* Version */ in send_record() 322 || !EVP_MAC_update(ctx, lenbytes, 2) /* Length */ in send_record() 323 || !EVP_MAC_update(ctx, enc, len) /* Finally the data itself */ in send_record() 324 || !EVP_MAC_final(ctx, en in send_record() 466 SSL_CTX *ctx = NULL; test_bad_dtls() local [all...] |
/kernel/linux/linux-5.10/arch/arm/crypto/ |
H A D | poly1305-armv4.pl | 38 ($ctx,$inp,$len,$padbit)=map("r$_",(0..3)); 72 str r3,[$ctx,#0] @ zero hash value 73 str r3,[$ctx,#4] 74 str r3,[$ctx,#8] 75 str r3,[$ctx,#12] 76 str r3,[$ctx,#16] 77 str r3,[$ctx,#36] @ clear is_base2_26 78 add $ctx,$ctx,#20 88 str r3,[$ctx,#2 [all...] |
/kernel/linux/linux-6.6/arch/arm/crypto/ |
H A D | poly1305-armv4.pl | 38 ($ctx,$inp,$len,$padbit)=map("r$_",(0..3)); 72 str r3,[$ctx,#0] @ zero hash value 73 str r3,[$ctx,#4] 74 str r3,[$ctx,#8] 75 str r3,[$ctx,#12] 76 str r3,[$ctx,#16] 77 str r3,[$ctx,#36] @ clear is_base2_26 78 add $ctx,$ctx,#20 88 str r3,[$ctx,#2 [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | shader_query.cpp | 102 bind_attrib_location(struct gl_context *ctx, in bind_attrib_location() argument 111 _mesa_error(ctx, GL_INVALID_OPERATION, in bind_attrib_location() 116 if (index >= ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs) { in bind_attrib_location() 117 _mesa_error(ctx, GL_INVALID_VALUE, "glBindAttribLocation(%u >= %u)", in bind_attrib_location() 118 index, ctx->Const.Program[MESA_SHADER_VERTEX].MaxAttribs); in bind_attrib_location() 139 GET_CURRENT_CONTEXT(ctx); in _mesa_BindAttribLocation_no_error() 142 _mesa_lookup_shader_program(ctx, program); in _mesa_BindAttribLocation_no_error() 143 bind_attrib_location(ctx, shProg, index, name, true); in _mesa_BindAttribLocation_no_error() 150 GET_CURRENT_CONTEXT(ctx); in _mesa_BindAttribLocation() 153 _mesa_lookup_shader_program_err(ctx, progra in _mesa_BindAttribLocation() [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | arc4.h | 72 * \param ctx ARC4 context to be initialized 79 void mbedtls_arc4_init( mbedtls_arc4_context *ctx ); 84 * \param ctx ARC4 context to be cleared 91 void mbedtls_arc4_free( mbedtls_arc4_context *ctx ); 96 * \param ctx ARC4 context to be setup 105 void mbedtls_arc4_setup( mbedtls_arc4_context *ctx, const unsigned char *key, 111 * \param ctx ARC4 context 123 int mbedtls_arc4_crypt( mbedtls_arc4_context *ctx, size_t length, const unsigned char *input,
|
H A D | ssl_cookie.h | 76 void mbedtls_ssl_cookie_init( mbedtls_ssl_cookie_ctx *ctx ); 81 int mbedtls_ssl_cookie_setup( mbedtls_ssl_cookie_ctx *ctx, 89 * \param ctx Cookie contex 94 void mbedtls_ssl_cookie_set_timeout( mbedtls_ssl_cookie_ctx *ctx, unsigned long delay ); 99 void mbedtls_ssl_cookie_free( mbedtls_ssl_cookie_ctx *ctx );
|
/device/soc/rockchip/rk3588/hardware/mpp/include/ |
H A D | camera_source.h | 32 MPP_RET camera_source_deinit(CamSource *ctx);
35 RK_S32 camera_source_get_frame(CamSource *ctx);
38 MPP_RET camera_source_put_frame(CamSource *ctx, RK_S32 idx);
40 MppBuffer camera_frame_to_buf(CamSource *ctx, RK_S32 idx);
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | bpf_iter_task.c | 10 int dump_task(struct bpf_iter__task *ctx) in dump_task() argument 12 struct seq_file *seq = ctx->meta->seq; in dump_task() 13 struct task_struct *task = ctx->task; in dump_task() 21 if (ctx->meta->seq_num == 0) in dump_task()
|
H A D | test_autoload.c | 14 int prog1(const void *ctx) in prog1() argument 21 int prog2(const void *ctx) in prog2() argument 32 int prog3(const void *ctx) in prog3() argument 34 struct fake_kernel_struct *fake = (void *)ctx; in prog3()
|