Home
last modified time | relevance | path

Searched refs:ctx (Results 3776 - 3800 of 13010) sorted by relevance

1...<<151152153154155156157158159160>>...521

/kernel/linux/linux-5.10/drivers/clk/samsung/
H A Dclk-exynos4412-isp.c92 struct samsung_clk_provider *ctx = dev_get_drvdata(dev); in exynos4x12_isp_clk_suspend() local
94 samsung_clk_save(ctx->reg_base, exynos4x12_save_isp, in exynos4x12_isp_clk_suspend()
101 struct samsung_clk_provider *ctx = dev_get_drvdata(dev); in exynos4x12_isp_clk_resume() local
103 samsung_clk_restore(ctx->reg_base, exynos4x12_save_isp, in exynos4x12_isp_clk_resume()
110 struct samsung_clk_provider *ctx; in exynos4x12_isp_clk_probe() local
128 ctx = samsung_clk_init(np, reg_base, CLK_NR_ISP_CLKS); in exynos4x12_isp_clk_probe()
129 ctx->dev = dev; in exynos4x12_isp_clk_probe()
131 platform_set_drvdata(pdev, ctx); in exynos4x12_isp_clk_probe()
137 samsung_clk_register_div(ctx, exynos4x12_isp_div_clks, in exynos4x12_isp_clk_probe()
139 samsung_clk_register_gate(ctx, exynos4x12_isp_gate_clk in exynos4x12_isp_clk_probe()
[all...]
H A Dclk-s3c2443.c335 struct samsung_clk_provider *ctx, unsigned long xti_f) in s3c2443_common_clk_register_fixed_ext()
338 samsung_clk_register_fixed_rate(ctx, s3c2443_common_frate_clks, in s3c2443_common_clk_register_fixed_ext()
346 struct samsung_clk_provider *ctx; in s3c2443_common_clk_init() local
356 ctx = samsung_clk_init(np, reg_base, NR_CLKS); in s3c2443_common_clk_init()
360 s3c2443_common_clk_register_fixed_ext(ctx, xti_f); in s3c2443_common_clk_init()
364 samsung_clk_register_pll(ctx, s3c2416_pll_clks, in s3c2443_common_clk_init()
367 samsung_clk_register_pll(ctx, s3c2443_pll_clks, in s3c2443_common_clk_init()
371 samsung_clk_register_mux(ctx, s3c2443_common_muxes, in s3c2443_common_clk_init()
373 samsung_clk_register_div(ctx, s3c2443_common_dividers, in s3c2443_common_clk_init()
375 samsung_clk_register_gate(ctx, s3c2443_common_gate in s3c2443_common_clk_init()
334 s3c2443_common_clk_register_fixed_ext( struct samsung_clk_provider *ctx, unsigned long xti_f) s3c2443_common_clk_register_fixed_ext() argument
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/
H A Dxdping_kern.c59 static __always_inline int icmp_check(struct xdp_md *ctx, int type) in icmp_check() argument
61 void *data_end = (void *)(long)ctx->data_end; in icmp_check()
62 void *data = (void *)(long)ctx->data; in icmp_check()
90 int xdping_client(struct xdp_md *ctx) in xdping_client() argument
92 void *data_end = (void *)(long)ctx->data_end; in xdping_client()
93 void *data = (void *)(long)ctx->data; in xdping_client()
104 ret = icmp_check(ctx, ICMP_ECHOREPLY); in xdping_client()
154 int xdping_server(struct xdp_md *ctx) in xdping_server() argument
156 void *data_end = (void *)(long)ctx->data_end; in xdping_server()
157 void *data = (void *)(long)ctx in xdping_server()
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/
H A Dath9k_pci_owl_loader.c105 struct owl_ctx *ctx = (struct owl_ctx *)pci_get_drvdata(pdev); in owl_fw_cb() local
108 complete(&ctx->eeprom_load); in owl_fw_cb()
158 struct owl_ctx *ctx; in owl_probe() local
173 ctx = devm_kzalloc(&pdev->dev, sizeof(*ctx), GFP_KERNEL); in owl_probe()
174 if (!ctx) in owl_probe()
177 init_completion(&ctx->eeprom_load); in owl_probe()
179 pci_set_drvdata(pdev, ctx); in owl_probe()
190 struct owl_ctx *ctx = pci_get_drvdata(pdev); in owl_remove() local
192 if (ctx) { in owl_remove()
[all...]
/kernel/linux/linux-5.10/drivers/tee/optee/
H A Ddevice.c22 static int get_devices(struct tee_context *ctx, u32 session, in get_devices() argument
43 ret = tee_client_invoke_func(ctx, &inv_arg, param); in get_devices()
111 struct tee_context *ctx = NULL; in __optee_enumerate_devices() local
118 ctx = tee_client_open_context(NULL, optee_ctx_match, NULL, NULL); in __optee_enumerate_devices()
119 if (IS_ERR(ctx)) in __optee_enumerate_devices()
127 rc = tee_client_open_session(ctx, &sess_arg, NULL); in __optee_enumerate_devices()
134 rc = get_devices(ctx, sess_arg.session, NULL, &shm_size, func); in __optee_enumerate_devices()
138 device_shm = tee_shm_alloc(ctx, shm_size, in __optee_enumerate_devices()
146 rc = get_devices(ctx, sess_arg.session, device_shm, &shm_size, func); in __optee_enumerate_devices()
168 tee_client_close_session(ctx, sess_ar in __optee_enumerate_devices()
[all...]
/kernel/linux/linux-5.10/net/mptcp/
H A Dtoken_test.c44 struct mptcp_subflow_context *ctx; in build_ctx() local
46 ctx = kunit_kzalloc(test, sizeof(struct mptcp_subflow_context), in build_ctx()
48 KUNIT_EXPECT_NOT_ERR_OR_NULL(test, ctx); in build_ctx()
49 return ctx; in build_ctx()
66 struct mptcp_subflow_context *ctx = build_ctx(test); in mptcp_token_test_msk_basic() local
71 rcu_assign_pointer(icsk->icsk_ulp_data, ctx); in mptcp_token_test_msk_basic()
72 ctx->conn = (struct sock *)msk; in mptcp_token_test_msk_basic()
77 KUNIT_EXPECT_NE(test, 0, (int)ctx->token); in mptcp_token_test_msk_basic()
78 KUNIT_EXPECT_EQ(test, ctx->token, msk->token); in mptcp_token_test_msk_basic()
79 KUNIT_EXPECT_PTR_EQ(test, msk, mptcp_token_get_sock(&init_net, ctx in mptcp_token_test_msk_basic()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dce60/
H A Ddce60_timing_generator.c92 uint32_t value = dm_read_reg(tg->ctx, addr); in program_pix_dur()
105 dm_write_reg(tg->ctx, addr, value); in program_pix_dur()
130 uint32_t value = dm_read_reg(tg->ctx, addr); in dce60_timing_generator_enable_advanced_request()
133 uint32_t value2 = dm_read_reg(tg->ctx, addr2); in dce60_timing_generator_enable_advanced_request()
174 dm_write_reg(tg->ctx, addr, value); in dce60_timing_generator_enable_advanced_request()
175 dm_write_reg(tg->ctx, addr2, value2); in dce60_timing_generator_enable_advanced_request()
186 value = dm_read_reg(tg->ctx, addr); in dce60_is_tg_enabled()
245 struct dc_context *ctx, in dce60_timing_generator_construct()
256 tg110->base.ctx = ctx; in dce60_timing_generator_construct()
243 dce60_timing_generator_construct( struct dce110_timing_generator *tg110, struct dc_context *ctx, uint32_t instance, const struct dce110_timing_generator_offsets *offsets) dce60_timing_generator_construct() argument
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/sunxi/cedrus/
H A Dcedrus.h142 void (*irq_clear)(struct cedrus_ctx *ctx);
143 void (*irq_disable)(struct cedrus_ctx *ctx);
144 enum cedrus_irq_status (*irq_status)(struct cedrus_ctx *ctx);
145 void (*setup)(struct cedrus_ctx *ctx, struct cedrus_run *run);
146 int (*start)(struct cedrus_ctx *ctx);
147 void (*stop)(struct cedrus_ctx *ctx);
148 void (*trigger)(struct cedrus_ctx *ctx);
205 static inline dma_addr_t cedrus_dst_buf_addr(struct cedrus_ctx *ctx, in cedrus_dst_buf_addr() argument
214 vq = v4l2_m2m_get_vq(ctx->fh.m2m_ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); in cedrus_dst_buf_addr()
218 return buf ? cedrus_buf_addr(buf, &ctx in cedrus_dst_buf_addr()
[all...]
/kernel/linux/linux-6.6/drivers/tee/optee/
H A Ddevice.c22 static int get_devices(struct tee_context *ctx, u32 session, in get_devices() argument
43 ret = tee_client_invoke_func(ctx, &inv_arg, param); in get_devices()
110 struct tee_context *ctx = NULL; in __optee_enumerate_devices() local
117 ctx = tee_client_open_context(NULL, optee_ctx_match, NULL, NULL); in __optee_enumerate_devices()
118 if (IS_ERR(ctx)) in __optee_enumerate_devices()
126 rc = tee_client_open_session(ctx, &sess_arg, NULL); in __optee_enumerate_devices()
133 rc = get_devices(ctx, sess_arg.session, NULL, &shm_size, func); in __optee_enumerate_devices()
137 device_shm = tee_shm_alloc_kernel_buf(ctx, shm_size); in __optee_enumerate_devices()
144 rc = get_devices(ctx, sess_arg.session, device_shm, &shm_size, func); in __optee_enumerate_devices()
166 tee_client_close_session(ctx, sess_ar in __optee_enumerate_devices()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dce60/
H A Ddce60_timing_generator.c92 uint32_t value = dm_read_reg(tg->ctx, addr); in program_pix_dur()
105 dm_write_reg(tg->ctx, addr, value); in program_pix_dur()
130 uint32_t value = dm_read_reg(tg->ctx, addr); in dce60_timing_generator_enable_advanced_request()
133 uint32_t value2 = dm_read_reg(tg->ctx, addr2); in dce60_timing_generator_enable_advanced_request()
174 dm_write_reg(tg->ctx, addr, value); in dce60_timing_generator_enable_advanced_request()
175 dm_write_reg(tg->ctx, addr2, value2); in dce60_timing_generator_enable_advanced_request()
186 value = dm_read_reg(tg->ctx, addr); in dce60_is_tg_enabled()
245 struct dc_context *ctx, in dce60_timing_generator_construct()
256 tg110->base.ctx = ctx; in dce60_timing_generator_construct()
243 dce60_timing_generator_construct( struct dce110_timing_generator *tg110, struct dc_context *ctx, uint32_t instance, const struct dce110_timing_generator_offsets *offsets) dce60_timing_generator_construct() argument
[all...]
/kernel/linux/linux-6.6/crypto/
H A Dpolyval-generic.c122 struct polyval_tfm_ctx *ctx = crypto_shash_ctx(tfm); in polyval_setkey() local
128 gf128mul_free_4k(ctx->gf128); in polyval_setkey()
134 ctx->gf128 = gf128mul_init_4k_lle(&k); in polyval_setkey()
137 if (!ctx->gf128) in polyval_setkey()
156 const struct polyval_tfm_ctx *ctx = crypto_shash_ctx(desc->tfm); in polyval_update() local
172 gf128mul_4k_lle(&dctx->buffer128, ctx->gf128); in polyval_update()
178 gf128mul_4k_lle(&dctx->buffer128, ctx->gf128); in polyval_update()
196 const struct polyval_tfm_ctx *ctx = crypto_shash_ctx(desc->tfm); in polyval_final() local
199 gf128mul_4k_lle(&dctx->buffer128, ctx->gf128); in polyval_final()
206 struct polyval_tfm_ctx *ctx in polyval_exit_tfm() local
[all...]
/kernel/linux/linux-6.6/drivers/scsi/elx/libefc/
H A Defc_node.h23 efc_node_evt_set(struct efc_sm_ctx *ctx, enum efc_sm_event evt, in efc_node_evt_set() argument
26 struct efc_node *node = ctx->app; in efc_node_evt_set()
110 efc_node_check_els_req(struct efc_sm_ctx *ctx,
116 efc_node_check_ns_req(struct efc_sm_ctx *ctx,
134 __efc_node_shutdown(struct efc_sm_ctx *ctx,
137 __efc_node_wait_node_free(struct efc_sm_ctx *ctx,
140 __efc_node_wait_els_shutdown(struct efc_sm_ctx *ctx,
143 __efc_node_wait_ios_shutdown(struct efc_sm_ctx *ctx,
152 __efc_node_common(const char *funcname, struct efc_sm_ctx *ctx,
163 void (*state)(struct efc_sm_ctx *ctx,
[all...]
/kernel/linux/linux-6.6/net/mptcp/
H A Dtoken_test.c44 struct mptcp_subflow_context *ctx; in build_ctx() local
46 ctx = kunit_kzalloc(test, sizeof(struct mptcp_subflow_context), in build_ctx()
48 KUNIT_EXPECT_NOT_ERR_OR_NULL(test, ctx); in build_ctx()
49 return ctx; in build_ctx()
69 struct mptcp_subflow_context *ctx = build_ctx(test); in mptcp_token_test_msk_basic() local
74 rcu_assign_pointer(icsk->icsk_ulp_data, ctx); in mptcp_token_test_msk_basic()
75 ctx->conn = (struct sock *)msk; in mptcp_token_test_msk_basic()
80 KUNIT_EXPECT_NE(test, 0, (int)ctx->token); in mptcp_token_test_msk_basic()
81 KUNIT_EXPECT_EQ(test, ctx->token, msk->token); in mptcp_token_test_msk_basic()
82 KUNIT_EXPECT_PTR_EQ(test, msk, mptcp_token_get_sock(&init_net, ctx in mptcp_token_test_msk_basic()
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_bs2b.c67 static av_cold int init(AVFilterContext *ctx) in init() argument
69 Bs2bContext *bs2b = ctx->priv; in init()
85 static av_cold void uninit(AVFilterContext *ctx) in uninit() argument
87 Bs2bContext *bs2b = ctx->priv; in uninit()
93 static int query_formats(AVFilterContext *ctx) in query_formats() argument
109 ret = ff_set_common_channel_layouts(ctx, layouts); in query_formats()
113 ret = ff_set_common_formats_from_list(ctx, sample_fmts); in query_formats()
117 return ff_set_common_all_samplerates(ctx); in query_formats()
155 AVFilterContext *ctx = outlink->src; in config_output() local
156 Bs2bContext *bs2b = ctx in config_output()
[all...]
/third_party/ffmpeg/libavformat/
H A Dchromaprint.c43 ChromaprintContext *ctx; member
45 ChromaprintContext ctx; member
53 if (cpr->ctx) { in deinit()
55 chromaprint_free(cpr->ctx); in deinit()
66 cpr->ctx = chromaprint_new(cpr->algorithm); in write_header()
69 if (!cpr->ctx) { in write_header()
76 if (!chromaprint_set_option(cpr->ctx, "silence_threshold", cpr->silence_threshold)) { in write_header()
104 if (!chromaprint_start(cpr->ctx, st->codecpar->sample_rate, st->codecpar->ch_layout.nb_channels)) { in write_header()
115 return chromaprint_feed(cpr->ctx, (const int16_t *)pkt->data, pkt->size / 2) ? 0 : AVERROR(EINVAL); in write_packet()
126 if (!chromaprint_finish(cpr->ctx)) { in write_trailer()
[all...]
/third_party/mesa3d/src/mesa/vbo/
H A Dvbo_exec.c111 vbo_exec_init(struct gl_context *ctx) in vbo_exec_init() argument
113 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; in vbo_exec_init()
117 ctx->Driver.NeedFlush = 0; in vbo_exec_init()
118 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END; in vbo_exec_init()
124 void vbo_exec_destroy( struct gl_context *ctx ) in vbo_exec_destroy()
126 struct vbo_exec_context *exec = &vbo_context(ctx)->exec; in vbo_exec_destroy()
171 vbo_merge_draws(struct gl_context *ctx, bool in_dlist, in vbo_merge_draws() argument
204 if (begin1 == 1 && (in_dlist || ctx->Line.StippleFlag)) in vbo_merge_draws()
239 *count0 % ctx->TessCtrlProgram.patch_vertices) in vbo_merge_draws()
261 vbo_copy_vertices(struct gl_context *ctx, in vbo_copy_vertices() argument
[all...]
/third_party/python/Modules/_ssl/
H A Ddebughelpers.c25 if (ssl_obj->ctx->msg_cb == NULL) { in _PySSL_msg_callback()
71 ssl_obj->ctx->msg_cb, "Osiiiy#", in _PySSL_msg_callback()
101 SSL_CTX_set_msg_callback(self->ctx, NULL); in _PySSLContext_set_msg_callback()
105 SSL_CTX_set_msg_callback(self->ctx, NULL); in _PySSLContext_set_msg_callback()
112 SSL_CTX_set_msg_callback(self->ctx, _PySSL_msg_callback); in _PySSLContext_set_msg_callback()
129 if (ssl_obj->ctx->keylog_bio == NULL) { in _PySSL_keylog_callback()
151 res = BIO_printf(ssl_obj->ctx->keylog_bio, "%s\n", line); in _PySSL_keylog_callback()
153 (void)BIO_flush(ssl_obj->ctx->keylog_bio); in _PySSL_keylog_callback()
160 ssl_obj->ctx->keylog_filename); in _PySSL_keylog_callback()
180 SSL_CTX_set_keylog_callback(self->ctx, NUL in _PySSLContext_set_keylog_filename()
[all...]
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/
H A Dpoly1305-ppc.pl91 my ($ctx,$inp,$len,$padbit) = map("r$_",(3..6));
110 std r0,0($ctx) # zero hash value
111 std r0,8($ctx)
112 std r0,16($ctx)
113 stw r0,24($ctx) # clear is_base2_26
142 std $d0,32($ctx) # store key
143 std $d1,40($ctx)
168 ld $r0,32($ctx) # load key
169 ld $r1,40($ctx)
171 ld $h0,0($ctx) # loa
[all...]
/third_party/openssl/crypto/poly1305/asm/
H A Dpoly1305-ppc.pl91 my ($ctx,$inp,$len,$padbit) = map("r$_",(3..6));
110 std r0,0($ctx) # zero hash value
111 std r0,8($ctx)
112 std r0,16($ctx)
113 stw r0,24($ctx) # clear is_base2_26
142 std $d0,32($ctx) # store key
143 std $d1,40($ctx)
168 ld $r0,32($ctx) # load key
169 ld $r1,40($ctx)
171 ld $h0,0($ctx) # loa
[all...]
/kernel/linux/linux-5.10/fs/nfs/
H A Dinode.c891 static struct nfs_lock_context *__nfs_find_lock_context(struct nfs_open_context *ctx) in __nfs_find_lock_context() argument
895 list_for_each_entry_rcu(pos, &ctx->lock_context.list, list) { in __nfs_find_lock_context()
904 struct nfs_lock_context *nfs_get_lock_context(struct nfs_open_context *ctx) in nfs_get_lock_context() argument
907 struct inode *inode = d_inode(ctx->dentry); in nfs_get_lock_context()
910 res = __nfs_find_lock_context(ctx); in nfs_get_lock_context()
918 res = __nfs_find_lock_context(ctx); in nfs_get_lock_context()
920 new->open_context = get_nfs_open_context(ctx); in nfs_get_lock_context()
923 &ctx->lock_context.list); in nfs_get_lock_context()
938 struct nfs_open_context *ctx = l_ctx->open_context; in nfs_put_lock_context() local
939 struct inode *inode = d_inode(ctx in nfs_put_lock_context()
959 nfs_close_context(struct nfs_open_context *ctx, int is_sync) nfs_close_context() argument
990 struct nfs_open_context *ctx; alloc_nfs_open_context() local
1015 get_nfs_open_context(struct nfs_open_context *ctx) get_nfs_open_context() argument
1023 __put_nfs_open_context(struct nfs_open_context *ctx, int is_sync) __put_nfs_open_context() argument
1045 put_nfs_open_context(struct nfs_open_context *ctx) put_nfs_open_context() argument
1051 put_nfs_open_context_sync(struct nfs_open_context *ctx) put_nfs_open_context_sync() argument
1060 nfs_inode_attach_open_context(struct nfs_open_context *ctx) nfs_inode_attach_open_context() argument
1075 nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx) nfs_file_set_open_context() argument
1090 struct nfs_open_context *pos, *ctx = NULL; nfs_find_open_context() local
1110 struct nfs_open_context *ctx = nfs_file_open_context(filp); nfs_file_clear_open_context() local
1132 struct nfs_open_context *ctx; nfs_open() local
[all...]
/kernel/linux/linux-6.6/fs/nfs/
H A Dinode.c937 static struct nfs_lock_context *__nfs_find_lock_context(struct nfs_open_context *ctx) in __nfs_find_lock_context() argument
941 list_for_each_entry_rcu(pos, &ctx->lock_context.list, list) { in __nfs_find_lock_context()
950 struct nfs_lock_context *nfs_get_lock_context(struct nfs_open_context *ctx) in nfs_get_lock_context() argument
953 struct inode *inode = d_inode(ctx->dentry); in nfs_get_lock_context()
956 res = __nfs_find_lock_context(ctx); in nfs_get_lock_context()
964 res = __nfs_find_lock_context(ctx); in nfs_get_lock_context()
966 new->open_context = get_nfs_open_context(ctx); in nfs_get_lock_context()
969 &ctx->lock_context.list); in nfs_get_lock_context()
984 struct nfs_open_context *ctx = l_ctx->open_context; in nfs_put_lock_context() local
985 struct inode *inode = d_inode(ctx in nfs_put_lock_context()
1005 nfs_close_context(struct nfs_open_context *ctx, int is_sync) nfs_close_context() argument
1035 struct nfs_open_context *ctx; alloc_nfs_open_context() local
1060 get_nfs_open_context(struct nfs_open_context *ctx) get_nfs_open_context() argument
1068 __put_nfs_open_context(struct nfs_open_context *ctx, int is_sync) __put_nfs_open_context() argument
1090 put_nfs_open_context(struct nfs_open_context *ctx) put_nfs_open_context() argument
1096 put_nfs_open_context_sync(struct nfs_open_context *ctx) put_nfs_open_context_sync() argument
1105 nfs_inode_attach_open_context(struct nfs_open_context *ctx) nfs_inode_attach_open_context() argument
1120 nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx) nfs_file_set_open_context() argument
1135 struct nfs_open_context *pos, *ctx = NULL; nfs_find_open_context() local
1155 struct nfs_open_context *ctx = nfs_file_open_context(filp); nfs_file_clear_open_context() local
1177 struct nfs_open_context *ctx; nfs_open() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dwpa_auth_glue.c222 static void hostapd_wpa_auth_logger(void *ctx, const u8 *addr, in hostapd_wpa_auth_logger() argument
226 struct hostapd_data *hapd = ctx; in hostapd_wpa_auth_logger()
247 static void hostapd_wpa_auth_disconnect(void *ctx, const u8 *addr, in hostapd_wpa_auth_disconnect() argument
250 struct hostapd_data *hapd = ctx; in hostapd_wpa_auth_disconnect()
258 static int hostapd_wpa_auth_mic_failure_report(void *ctx, const u8 *addr) in hostapd_wpa_auth_mic_failure_report() argument
260 struct hostapd_data *hapd = ctx; in hostapd_wpa_auth_mic_failure_report()
265 static void hostapd_wpa_auth_psk_failure_report(void *ctx, const u8 *addr) in hostapd_wpa_auth_psk_failure_report() argument
267 struct hostapd_data *hapd = ctx; in hostapd_wpa_auth_psk_failure_report()
286 static void hostapd_wpa_auth_set_eapol(void *ctx, const u8 *addr, in hostapd_wpa_auth_set_eapol() argument
289 struct hostapd_data *hapd = ctx; in hostapd_wpa_auth_set_eapol()
327 hostapd_wpa_auth_get_eapol(void *ctx, const u8 *addr, wpa_eapol_variable var) hostapd_wpa_auth_get_eapol() argument
345 hostapd_wpa_auth_get_psk(void *ctx, const u8 *addr, const u8 *p2p_dev_addr, const u8 *prev_psk, size_t *psk_len, int *vlan_id) hostapd_wpa_auth_get_psk() argument
424 hostapd_wpa_auth_get_msk(void *ctx, const u8 *addr, u8 *msk, size_t *len) hostapd_wpa_auth_get_msk() argument
454 hostapd_wpa_auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg, const u8 *addr, int idx, u8 *key, size_t key_len, enum key_flag key_flag) hostapd_wpa_auth_set_key() argument
517 hostapd_wpa_auth_get_seqnum(void *ctx, const u8 *addr, int idx, u8 *seq) hostapd_wpa_auth_get_seqnum() argument
525 hostapd_wpa_auth_send_eapol(void *ctx, const u8 *addr, const u8 *data, size_t data_len, int encrypt) hostapd_wpa_auth_send_eapol() argument
557 hostapd_wpa_auth_for_each_sta( void *ctx, int (*cb)(struct wpa_state_machine *sm, void *ctx), void *cb_ctx) hostapd_wpa_auth_for_each_sta() argument
577 wpa_auth_iface_iter(struct hostapd_iface *iface, void *ctx) wpa_auth_iface_iter() argument
590 hostapd_wpa_auth_for_each_auth( void *ctx, int (*cb)(struct wpa_authenticator *sm, void *ctx), void *cb_ctx) hostapd_wpa_auth_for_each_auth() argument
641 hostapd_wpa_auth_ft_iter(struct hostapd_iface *iface, void *ctx) hostapd_wpa_auth_ft_iter() argument
694 hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto, const u8 *data, size_t data_len) hostapd_wpa_auth_send_ether() argument
820 hostapd_wpa_auth_oui_iter(struct hostapd_iface *iface, void *ctx) hostapd_wpa_auth_oui_iter() argument
889 hostapd_wpa_auth_send_oui(void *ctx, const u8 *dst, u8 oui_suffix, const u8 *data, size_t data_len) hostapd_wpa_auth_send_oui() argument
930 hostapd_channel_info(void *ctx, struct wpa_channel_info *ci) hostapd_channel_info() argument
940 hostapd_store_ptksa(void *ctx, const u8 *addr,int cipher, u32 life_time, const struct wpa_ptk *ptk) hostapd_store_ptksa() argument
949 hostapd_clear_ptksa(void *ctx, const u8 *addr, int cipher) hostapd_clear_ptksa() argument
959 hostapd_wpa_auth_update_vlan(void *ctx, const u8 *addr, int vlan_id) hostapd_wpa_auth_update_vlan() argument
1005 hostapd_get_sta_tx_params(void *ctx, const u8 *addr, int ap_max_chanwidth, int ap_seg1_idx, int *bandwidth, int *seg1_idx) hostapd_get_sta_tx_params() argument
1027 hostapd_wpa_auth_send_ft_action(void *ctx, const u8 *dst, const u8 *data, size_t data_len) hostapd_wpa_auth_send_ft_action() argument
1058 hostapd_wpa_auth_add_sta(void *ctx, const u8 *sta_addr) hostapd_wpa_auth_add_sta() argument
1101 hostapd_wpa_auth_add_sta_ft(void *ctx, const u8 *sta_addr) hostapd_wpa_auth_add_sta_ft() argument
1129 hostapd_wpa_auth_set_vlan(void *ctx, const u8 *sta_addr, struct vlan_description *vlan) hostapd_wpa_auth_set_vlan() argument
1162 hostapd_wpa_auth_get_vlan(void *ctx, const u8 *sta_addr, struct vlan_description *vlan) hostapd_wpa_auth_get_vlan() argument
1182 hostapd_wpa_auth_set_identity(void *ctx, const u8 *sta_addr, const u8 *identity, size_t identity_len) hostapd_wpa_auth_set_identity() argument
1223 hostapd_wpa_auth_get_identity(void *ctx, const u8 *sta_addr, const u8 **buf) hostapd_wpa_auth_get_identity() argument
1252 hostapd_wpa_auth_set_radius_cui(void *ctx, const u8 *sta_addr, const u8 *radius_cui, size_t radius_cui_len) hostapd_wpa_auth_set_radius_cui() argument
1291 hostapd_wpa_auth_get_radius_cui(void *ctx, const u8 *sta_addr, const u8 **buf) hostapd_wpa_auth_get_radius_cui() argument
1323 hostapd_wpa_auth_set_session_timeout(void *ctx, const u8 *sta_addr, int session_timeout) hostapd_wpa_auth_set_session_timeout() argument
1345 hostapd_wpa_auth_get_session_timeout(void *ctx, const u8 *sta_addr) hostapd_wpa_auth_get_session_timeout() argument
1367 hostapd_rrb_receive(void *ctx, const u8 *src_addr, const u8 *buf, size_t len) hostapd_rrb_receive() argument
1385 hostapd_rrb_oui_receive(void *ctx, const u8 *src_addr, const u8 *dst_addr, u8 oui_suffix, const u8 *buf, size_t len) hostapd_rrb_oui_receive() argument
1401 hostapd_wpa_auth_add_tspec(void *ctx, const u8 *sta_addr, u8 *tspec_ie, size_t tspec_ielen) hostapd_wpa_auth_add_tspec() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dce/
H A Ddce_clk_mgr.c46 clk_mgr_dce->base.ctx
48 clk_mgr->ctx->logger
252 struct dc_bios *bp = clk_mgr->ctx->dc_bios; in dce_set_clock()
254 struct dmcu *dmcu = clk_mgr_dce->base.ctx->dc->res_pool->dmcu; in dce_set_clock()
292 struct dc_bios *bp = clk_mgr->ctx->dc_bios; in dce112_set_clock()
293 struct dc *core_dc = clk_mgr->ctx->dc; in dce112_set_clock()
320 if (!ASICREV_IS_VEGA20_P(clk_mgr->ctx->asic_id.hw_internal_rev)) in dce112_set_clock()
329 if (!IS_FPGA_MAXIMUS_DC(core_dc->ctx->dce_environment)) { in dce112_set_clock()
343 struct dc_debug_options *debug = &clk_mgr_dce->base.ctx->dc->debug; in dce_clock_read_integrated_info()
344 struct dc_bios *bp = clk_mgr_dce->base.ctx in dce_clock_read_integrated_info()
807 dce_clk_mgr_construct( struct dce_clk_mgr *clk_mgr_dce, struct dc_context *ctx, const struct clk_mgr_registers *regs, const struct clk_mgr_shift *clk_shift, const struct clk_mgr_mask *clk_mask) dce_clk_mgr_construct() argument
841 dce_clk_mgr_create( struct dc_context *ctx, const struct clk_mgr_registers *regs, const struct clk_mgr_shift *clk_shift, const struct clk_mgr_mask *clk_mask) dce_clk_mgr_create() argument
864 dce110_clk_mgr_create( struct dc_context *ctx, const struct clk_mgr_registers *regs, const struct clk_mgr_shift *clk_shift, const struct clk_mgr_mask *clk_mask) dce110_clk_mgr_create() argument
889 dce112_clk_mgr_create( struct dc_context *ctx, const struct clk_mgr_registers *regs, const struct clk_mgr_shift *clk_shift, const struct clk_mgr_mask *clk_mask) dce112_clk_mgr_create() argument
914 dce120_clk_mgr_create(struct dc_context *ctx) dce120_clk_mgr_create() argument
936 dce121_clk_mgr_create(struct dc_context *ctx) dce121_clk_mgr_create() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/microsoft/mana/
H A Dhw_channel.c57 struct hwc_caller_ctx *ctx; in mana_hwc_handle_resp() local
67 ctx = hwc->caller_ctx + resp_msg->response.hwc_msg_id; in mana_hwc_handle_resp()
68 err = mana_hwc_verify_resp_msg(ctx, resp_msg, resp_len); in mana_hwc_handle_resp()
72 ctx->status_code = resp_msg->status; in mana_hwc_handle_resp()
74 memcpy(ctx->output_buf, resp_msg, resp_len); in mana_hwc_handle_resp()
76 ctx->error = err; in mana_hwc_handle_resp()
77 complete(&ctx->comp_event); in mana_hwc_handle_resp()
103 static void mana_hwc_init_event_handler(void *ctx, struct gdma_queue *q_self, in mana_hwc_init_event_handler() argument
106 struct hw_channel_context *hwc = ctx; in mana_hwc_init_event_handler()
201 static void mana_hwc_rx_event_handler(void *ctx, u3 argument
247 mana_hwc_tx_event_handler(void *ctx, u32 gdma_txq_id, const struct hwc_rx_oob *rx_oob) mana_hwc_tx_event_handler() argument
272 mana_hwc_create_gdma_cq(struct hw_channel_context *hwc, u64 queue_size, void *ctx, gdma_cq_callback *cb, struct gdma_queue *parent_eq, struct gdma_queue **queue) mana_hwc_create_gdma_cq() argument
290 mana_hwc_create_gdma_eq(struct hw_channel_context *hwc, u64 queue_size, void *ctx, gdma_eq_callback *cb, struct gdma_queue **queue) mana_hwc_create_gdma_eq() argument
307 mana_hwc_comp_event(void *ctx, struct gdma_queue *q_self) mana_hwc_comp_event() argument
349 mana_hwc_create_cq(struct hw_channel_context *hwc, u16 q_depth, gdma_eq_callback *callback, void *ctx, hwc_rx_event_handler_t *rx_ev_hdlr, void *rx_ev_ctx, hwc_tx_event_handler_t *tx_ev_hdlr, void *tx_ev_ctx, struct hwc_cq **hwc_cq_ptr) mana_hwc_create_cq() argument
591 struct hwc_caller_ctx *ctx; mana_hwc_test_channel() local
809 struct hwc_caller_ctx *ctx; mana_hwc_send_request() local
[all...]
/kernel/linux/linux-5.10/arch/x86/crypto/
H A Dcast5_avx_glue.c20 asmlinkage void cast5_ecb_enc_16way(struct cast5_ctx *ctx, u8 *dst,
22 asmlinkage void cast5_ecb_dec_16way(struct cast5_ctx *ctx, u8 *dst,
24 asmlinkage void cast5_cbc_dec_16way(struct cast5_ctx *ctx, u8 *dst,
26 asmlinkage void cast5_ctr_16way(struct cast5_ctx *ctx, u8 *dst, const u8 *src,
51 struct cast5_ctx *ctx = crypto_skcipher_ctx(tfm); in ecb_crypt() local
55 void (*fn)(struct cast5_ctx *ctx, u8 *dst, const u8 *src); in ecb_crypt()
70 fn(ctx, wdst, wsrc); in ecb_crypt()
85 fn(ctx, wdst, wsrc); in ecb_crypt()
114 struct cast5_ctx *ctx = crypto_skcipher_ctx(tfm); in cbc_encrypt() local
128 __cast5_encrypt(ctx, (u in cbc_encrypt()
142 __cbc_decrypt(struct cast5_ctx *ctx, struct skcipher_walk *walk) __cbc_decrypt() argument
199 struct cast5_ctx *ctx = crypto_skcipher_ctx(tfm); cbc_decrypt() local
217 ctr_crypt_final(struct skcipher_walk *walk, struct cast5_ctx *ctx) ctr_crypt_final() argument
231 __ctr_crypt(struct skcipher_walk *walk, struct cast5_ctx *ctx) __ctr_crypt() argument
279 struct cast5_ctx *ctx = crypto_skcipher_ctx(tfm); ctr_crypt() local
[all...]

Completed in 18 milliseconds

1...<<151152153154155156157158159160>>...521