/kernel/linux/linux-6.6/drivers/gpu/drm/panel/ |
H A D | panel-samsung-s6d7aa0.c | 37 int (*init_func)(struct s6d7aa0 *ctx); 38 int (*off_func)(struct s6d7aa0 *ctx); 57 static void s6d7aa0_reset(struct s6d7aa0 *ctx) in s6d7aa0_reset() argument 59 gpiod_set_value_cansleep(ctx->reset_gpio, 1); in s6d7aa0_reset() 61 gpiod_set_value_cansleep(ctx->reset_gpio, 0); in s6d7aa0_reset() 65 static int s6d7aa0_lock(struct s6d7aa0 *ctx, bool lock) in s6d7aa0_lock() argument 67 struct mipi_dsi_device *dsi = ctx->dsi; in s6d7aa0_lock() 72 if (ctx->desc->use_passwd3) in s6d7aa0_lock() 77 if (ctx->desc->use_passwd3) in s6d7aa0_lock() 84 static int s6d7aa0_on(struct s6d7aa0 *ctx) in s6d7aa0_on() argument 106 s6d7aa0_off(struct s6d7aa0 *ctx) s6d7aa0_off() argument 137 struct s6d7aa0 *ctx = panel_to_s6d7aa0(panel); s6d7aa0_prepare() local 161 struct s6d7aa0 *ctx = panel_to_s6d7aa0(panel); s6d7aa0_disable() local 174 struct s6d7aa0 *ctx = panel_to_s6d7aa0(panel); s6d7aa0_unprepare() local 231 s6d7aa0_lsl080al02_init(struct s6d7aa0 *ctx) s6d7aa0_lsl080al02_init() argument 282 s6d7aa0_lsl080al02_off(struct s6d7aa0 *ctx) s6d7aa0_lsl080al02_off() argument 320 s6d7aa0_lsl080al03_init(struct s6d7aa0 *ctx) s6d7aa0_lsl080al03_init() argument 386 s6d7aa0_lsl080al03_off(struct s6d7aa0 *ctx) s6d7aa0_lsl080al03_off() argument 453 struct s6d7aa0 *ctx; s6d7aa0_get_modes() local 484 struct s6d7aa0 *ctx; s6d7aa0_probe() local 545 struct s6d7aa0 *ctx = mipi_dsi_get_drvdata(dsi); s6d7aa0_remove() local [all...] |
/kernel/linux/linux-6.6/net/sunrpc/auth_gss/ |
H A D | gss_krb5_mech.c | 297 gss_krb5_import_ctx_v2(struct krb5_ctx *ctx, gfp_t gfp_mask) in gss_krb5_import_ctx_v2() argument 300 .len = ctx->gk5e->keylength, in gss_krb5_import_ctx_v2() 301 .data = ctx->Ksess, in gss_krb5_import_ctx_v2() 311 keyout.len = ctx->gk5e->Ke_length; in gss_krb5_import_ctx_v2() 312 if (krb5_derive_key(ctx, &keyin, &keyout, KG_USAGE_INITIATOR_SEAL, in gss_krb5_import_ctx_v2() 315 ctx->initiator_enc = gss_krb5_alloc_cipher_v2(ctx->gk5e->encrypt_name, in gss_krb5_import_ctx_v2() 317 if (ctx->initiator_enc == NULL) in gss_krb5_import_ctx_v2() 319 if (ctx->gk5e->aux_cipher) { in gss_krb5_import_ctx_v2() 320 ctx in gss_krb5_import_ctx_v2() 395 gss_import_v2_context(const void *p, const void *end, struct krb5_ctx *ctx, gfp_t gfp_mask) gss_import_v2_context() argument 473 struct krb5_ctx *ctx; gss_krb5_import_sec_context() local [all...] |
/third_party/libcoap/tests/ |
H A D | test_sendqueue.c | 17 static coap_context_t *ctx; /* Holds the coap context for most tests */ variable 44 int result = coap_insert_node(&ctx->sendqueue, node[1]); in t_sendqueue1() 47 CU_ASSERT_PTR_NOT_NULL(ctx->sendqueue); in t_sendqueue1() 48 CU_ASSERT_PTR_EQUAL(ctx->sendqueue, node[1]); in t_sendqueue1() 56 result = coap_insert_node(&ctx->sendqueue, node[2]); in t_sendqueue2() 59 CU_ASSERT_PTR_EQUAL(ctx->sendqueue, node[1]); in t_sendqueue2() 60 CU_ASSERT_PTR_EQUAL(ctx->sendqueue->next, node[2]); in t_sendqueue2() 62 CU_ASSERT(ctx->sendqueue->t == timestamp[1]); in t_sendqueue2() 70 result = coap_insert_node(&ctx->sendqueue, node[3]); in t_sendqueue3() 74 CU_ASSERT_PTR_EQUAL(ctx in t_sendqueue3() [all...] |
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | siv128.c | 89 __owur static ossl_inline int siv128_do_s2v_p(SIV128_CONTEXT *ctx, SIV_BLOCK *out, in siv128_do_s2v_p() argument 97 mac_ctx = EVP_MAC_CTX_dup(ctx->mac_ctx_init); in siv128_do_s2v_p() 105 siv128_xorblock(&t, &ctx->d); in siv128_do_s2v_p() 112 siv128_dbl(&ctx->d); in siv128_do_s2v_p() 113 siv128_xorblock(&t, &ctx->d); in siv128_do_s2v_p() 129 __owur static ossl_inline int siv128_do_encrypt(EVP_CIPHER_CTX *ctx, unsigned char *out, in siv128_do_encrypt() argument 135 if (!EVP_CipherInit_ex(ctx, NULL, NULL, NULL, icv->byte, 1)) in siv128_do_encrypt() 137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt() 147 SIV128_CONTEXT *ctx; in ossl_siv128_new() local 150 if ((ctx in ossl_siv128_new() 163 ossl_siv128_init(SIV128_CONTEXT *ctx, const unsigned char *key, int klen, const EVP_CIPHER *cbc, const EVP_CIPHER *ctr, OSSL_LIB_CTX *libctx, const char *propq) ossl_siv128_init() argument 246 ossl_siv128_aad(SIV128_CONTEXT *ctx, const unsigned char *aad, size_t len) ossl_siv128_aad() argument 273 ossl_siv128_encrypt(SIV128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len) ossl_siv128_encrypt() argument 300 ossl_siv128_decrypt(SIV128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len) ossl_siv128_decrypt() argument 336 ossl_siv128_finish(SIV128_CONTEXT *ctx) ossl_siv128_finish() argument 344 ossl_siv128_set_tag(SIV128_CONTEXT *ctx, const unsigned char *tag, size_t len) ossl_siv128_set_tag() argument 357 ossl_siv128_get_tag(SIV128_CONTEXT *ctx, unsigned char *tag, size_t len) ossl_siv128_get_tag() argument 370 ossl_siv128_cleanup(SIV128_CONTEXT *ctx) ossl_siv128_cleanup() argument 387 ossl_siv128_speed(SIV128_CONTEXT *ctx, int arg) ossl_siv128_speed() argument [all...] |
/third_party/openssl/crypto/modes/ |
H A D | siv128.c | 89 __owur static ossl_inline int siv128_do_s2v_p(SIV128_CONTEXT *ctx, SIV_BLOCK *out, in siv128_do_s2v_p() argument 97 mac_ctx = EVP_MAC_CTX_dup(ctx->mac_ctx_init); in siv128_do_s2v_p() 105 siv128_xorblock(&t, &ctx->d); in siv128_do_s2v_p() 112 siv128_dbl(&ctx->d); in siv128_do_s2v_p() 113 siv128_xorblock(&t, &ctx->d); in siv128_do_s2v_p() 129 __owur static ossl_inline int siv128_do_encrypt(EVP_CIPHER_CTX *ctx, unsigned char *out, in siv128_do_encrypt() argument 135 if (!EVP_CipherInit_ex(ctx, NULL, NULL, NULL, icv->byte, 1)) in siv128_do_encrypt() 137 return EVP_EncryptUpdate(ctx, out, &out_len, in, out_len); in siv128_do_encrypt() 147 SIV128_CONTEXT *ctx; in ossl_siv128_new() local 150 if ((ctx in ossl_siv128_new() 163 ossl_siv128_init(SIV128_CONTEXT *ctx, const unsigned char *key, int klen, const EVP_CIPHER *cbc, const EVP_CIPHER *ctr, OSSL_LIB_CTX *libctx, const char *propq) ossl_siv128_init() argument 246 ossl_siv128_aad(SIV128_CONTEXT *ctx, const unsigned char *aad, size_t len) ossl_siv128_aad() argument 273 ossl_siv128_encrypt(SIV128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len) ossl_siv128_encrypt() argument 300 ossl_siv128_decrypt(SIV128_CONTEXT *ctx, const unsigned char *in, unsigned char *out, size_t len) ossl_siv128_decrypt() argument 336 ossl_siv128_finish(SIV128_CONTEXT *ctx) ossl_siv128_finish() argument 344 ossl_siv128_set_tag(SIV128_CONTEXT *ctx, const unsigned char *tag, size_t len) ossl_siv128_set_tag() argument 357 ossl_siv128_get_tag(SIV128_CONTEXT *ctx, unsigned char *tag, size_t len) ossl_siv128_get_tag() argument 370 ossl_siv128_cleanup(SIV128_CONTEXT *ctx) ossl_siv128_cleanup() argument 387 ossl_siv128_speed(SIV128_CONTEXT *ctx, int arg) ossl_siv128_speed() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | crypto_nettle.c | 31 struct des_ctx ctx; in des_encrypt() local 44 nettle_des_set_key(&ctx, pkey); in des_encrypt() 45 nettle_des_encrypt(&ctx, DES_BLOCK_SIZE, cypher, clear); in des_encrypt() 46 os_memset(&ctx, 0, sizeof(ctx)); in des_encrypt() 54 void *ctx; in nettle_digest_vector() local 60 ctx = os_malloc(alg->context_size); in nettle_digest_vector() 61 if (!ctx) in nettle_digest_vector() 63 alg->init(ctx); in nettle_digest_vector() 65 alg->update(ctx, le in nettle_digest_vector() 111 struct hmac_md5_ctx ctx; hmac_md5_vector() local 136 struct hmac_sha1_ctx ctx; hmac_sha1_vector() local 163 struct hmac_sha256_ctx ctx; hmac_sha256_vector() local 192 struct hmac_sha384_ctx ctx; hmac_sha384_vector() local 221 struct hmac_sha512_ctx ctx; hmac_sha512_vector() local 247 struct aes_ctx *ctx; aes_encrypt_init() local 261 aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) aes_encrypt() argument 269 aes_encrypt_deinit(void *ctx) aes_encrypt_deinit() argument 278 struct aes_ctx *ctx; aes_decrypt_init() local 292 aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) aes_decrypt() argument 300 aes_decrypt_deinit(void *ctx) aes_decrypt_deinit() argument 415 struct crypto_cipher *ctx; crypto_cipher_init() local 436 crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, u8 *crypt, size_t len) crypto_cipher_encrypt() argument 451 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) crypto_cipher_decrypt() argument 466 crypto_cipher_deinit(struct crypto_cipher *ctx) crypto_cipher_deinit() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | crypto_nettle.c | 31 struct des_ctx ctx; in des_encrypt() local 44 nettle_des_set_key(&ctx, pkey); in des_encrypt() 45 nettle_des_encrypt(&ctx, DES_BLOCK_SIZE, cypher, clear); in des_encrypt() 46 os_memset(&ctx, 0, sizeof(ctx)); in des_encrypt() 54 void *ctx; in nettle_digest_vector() local 60 ctx = os_malloc(alg->context_size); in nettle_digest_vector() 61 if (!ctx) in nettle_digest_vector() 63 alg->init(ctx); in nettle_digest_vector() 65 alg->update(ctx, le in nettle_digest_vector() 111 struct hmac_md5_ctx ctx; hmac_md5_vector() local 136 struct hmac_sha1_ctx ctx; hmac_sha1_vector() local 163 struct hmac_sha256_ctx ctx; hmac_sha256_vector() local 192 struct hmac_sha384_ctx ctx; hmac_sha384_vector() local 221 struct hmac_sha512_ctx ctx; hmac_sha512_vector() local 247 struct aes_ctx *ctx; aes_encrypt_init() local 261 aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) aes_encrypt() argument 269 aes_encrypt_deinit(void *ctx) aes_encrypt_deinit() argument 278 struct aes_ctx *ctx; aes_decrypt_init() local 292 aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) aes_decrypt() argument 300 aes_decrypt_deinit(void *ctx) aes_decrypt_deinit() argument 415 struct crypto_cipher *ctx; crypto_cipher_init() local 436 crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, u8 *crypt, size_t len) crypto_cipher_encrypt() argument 451 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) crypto_cipher_decrypt() argument 466 crypto_cipher_deinit(struct crypto_cipher *ctx) crypto_cipher_deinit() argument [all...] |
/kernel/linux/linux-6.6/arch/riscv/net/ |
H A D | bpf_jit_core.c | 18 static int build_body(struct rv_jit_context *ctx, bool extra_pass, int *offset) in build_body() argument 20 const struct bpf_prog *prog = ctx->prog; in build_body() 27 ret = bpf_jit_emit_insn(insn, ctx, extra_pass); in build_body() 32 offset[i] = ctx->ninsns; in build_body() 51 struct rv_jit_context *ctx; in bpf_int_jit_compile() local 74 ctx = &jit_data->ctx; in bpf_int_jit_compile() 76 if (ctx->offset) { in bpf_int_jit_compile() 78 prog_size = sizeof(*ctx->insns) * ctx in bpf_int_jit_compile() [all...] |
/kernel/linux/linux-5.10/drivers/mmc/core/ |
H A D | slot-gpio.c | 32 struct mmc_gpio *ctx = host->slot.handler_priv; in mmc_gpio_cd_irqt() local 35 mmc_detect_change(host, msecs_to_jiffies(ctx->cd_debounce_delay_ms)); in mmc_gpio_cd_irqt() 42 struct mmc_gpio *ctx = devm_kzalloc(host->parent, in mmc_gpio_alloc() local 43 sizeof(*ctx), GFP_KERNEL); in mmc_gpio_alloc() 45 if (ctx) { in mmc_gpio_alloc() 46 ctx->cd_debounce_delay_ms = 200; in mmc_gpio_alloc() 47 ctx->cd_label = devm_kasprintf(host->parent, GFP_KERNEL, in mmc_gpio_alloc() 49 if (!ctx->cd_label) in mmc_gpio_alloc() 51 ctx->ro_label = devm_kasprintf(host->parent, GFP_KERNEL, in mmc_gpio_alloc() 53 if (!ctx in mmc_gpio_alloc() 64 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_gpio_get_ro() local 79 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_gpio_get_cd() local 94 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_gpiod_request_cd_irq() local 153 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_gpio_set_cd_isr() local 177 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_gpiod_request_cd() local 207 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_can_gpio_cd() local 225 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_gpiod_request_ro() local 250 struct mmc_gpio *ctx = host->slot.handler_priv; mmc_can_gpio_ro() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/ |
H A D | dm_services.h | 46 struct dc_context *ctx, 56 uint32_t dm_read_reg_func(const struct dc_context *ctx, uint32_t address, 62 void dm_write_reg_func(const struct dc_context *ctx, uint32_t address, 65 #define dm_read_reg(ctx, address) \ 66 dm_read_reg_func(ctx, address, __func__) 68 #define dm_write_reg(ctx, address, value) \ 69 dm_write_reg_func(ctx, address, value, __func__) 72 const struct dc_context *ctx, in dm_read_index_reg() 76 return cgs_read_ind_register(ctx->cgs_device, addr_space, index); in dm_read_index_reg() 80 const struct dc_context *ctx, in dm_write_index_reg() 71 dm_read_index_reg( const struct dc_context *ctx, enum cgs_ind_reg addr_space, uint32_t index) dm_read_index_reg() argument 79 dm_write_index_reg( const struct dc_context *ctx, enum cgs_ind_reg addr_space, uint32_t index, uint32_t value) dm_write_index_reg() argument 260 dm_get_timestamp(struct dc_context *ctx) dm_get_timestamp() argument [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_atom_blend.c | 116 colormask_per_rt(const struct gl_context *ctx, unsigned num_cb) in colormask_per_rt() argument 120 _mesa_replicate_colormask(GET_COLORMASK(ctx->Color.ColorMask, 0), in colormask_per_rt() 123 return (ctx->Color.ColorMask & full_mask) != repl_mask0; in colormask_per_rt() 132 const struct gl_context *ctx = st->ctx; in blend_per_rt() local 134 GLbitfield blend_enabled = ctx->Color.BlendEnabled & cb_mask; in blend_per_rt() 140 if (ctx->Color._BlendFuncPerBuffer || ctx->Color._BlendEquationPerBuffer) { in blend_per_rt() 144 if (ctx->DrawBuffer->_IntegerBuffers && in blend_per_rt() 145 (ctx in blend_per_rt() 197 const struct gl_context *ctx = st->ctx; st_update_blend() local [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fNegativeShaderFramebufferFetchTests.cpp | 59 static void checkExtensionSupport (NegativeTestContext& ctx, const char* extName) in checkExtensionSupport() argument 61 if (!ctx.getContextInfo().isExtensionSupported(extName)) in checkExtensionSupport() 65 static void checkFramebufferFetchSupport (NegativeTestContext& ctx) in checkFramebufferFetchSupport() argument 67 checkExtensionSupport(ctx, "GL_EXT_shader_framebuffer_fetch"); in checkFramebufferFetchSupport() 77 void verifyProgramError (NegativeTestContext& ctx, const glu::ShaderProgram& program, ProgramError error, glu::ShaderType shaderType) in verifyProgramError() argument 82 ctx.getLog() << program; in verifyProgramError() 113 ctx.getLog() << tcu::TestLog::Message << message << tcu::TestLog::EndMessage; in verifyProgramError() 114 ctx.fail(message); in verifyProgramError() 118 void last_frag_data_not_defined (NegativeTestContext& ctx) in last_frag_data_not_defined() argument 121 if (!glu::isContextTypeES(ctx in last_frag_data_not_defined() 148 last_frag_data_readonly(NegativeTestContext& ctx) last_frag_data_readonly() argument 175 invalid_inout_version(NegativeTestContext& ctx) invalid_inout_version() argument 201 invalid_redeclaration_inout(NegativeTestContext& ctx) invalid_redeclaration_inout() argument 233 invalid_vertex_inout(NegativeTestContext& ctx) invalid_vertex_inout() argument [all...] |
/third_party/curl/lib/vquic/ |
H A D | curl_ngtcp2.c | 140 ((struct cf_ngtcp2_ctx *)(cf)->ctx)->call_data 173 struct cf_ngtcp2_ctx *ctx = cf->ctx; in h3_data_setup() local 190 Curl_bufq_initp(&stream->sendbuf, &ctx->stream_bufcp, in h3_data_setup() 195 Curl_bufq_initp(&stream->recvbuf, &ctx->stream_bufcp, in h3_data_setup() 206 struct cf_ngtcp2_ctx *ctx = cf->ctx; in h3_data_done() local 212 if(ctx->h3conn && !stream->closed) { in h3_data_done() 213 nghttp3_conn_shutdown_stream_read(ctx->h3conn, stream->id); in h3_data_done() 214 nghttp3_conn_close_stream(ctx in h3_data_done() 281 struct cf_ngtcp2_ctx *ctx = cf->ctx; pktx_update_time() local 312 struct cf_ngtcp2_ctx *ctx = cf->ctx; get_conn() local 320 struct cf_ngtcp2_ctx *ctx = cf->ctx; quic_printf() local 335 struct cf_ngtcp2_ctx *ctx = cf->ctx; qlog_callback() local 348 quic_settings(struct cf_ngtcp2_ctx *ctx, struct Curl_easy *data, struct pkt_io_ctx *pktx) quic_settings() argument 395 struct cf_ngtcp2_ctx *ctx = cf->ctx; report_consumed_data() local 426 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_recv_stream_data() local 465 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_acked_stream_data_offset() local 487 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_stream_close() local 516 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_stream_reset() local 538 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_stream_stop_sending() local 568 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_extend_max_stream_data() local 696 struct cf_ngtcp2_ctx *ctx = cf->ctx; check_and_set_expiry() local 744 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_adjust_pollset() local 865 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_h3_deferred_consume() local 972 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_h3_stop_sending() local 990 struct cf_ngtcp2_ctx *ctx = cf->ctx; cb_h3_reset_stream() local 1026 struct cf_ngtcp2_ctx *ctx = cf->ctx; init_ngh3_conn() local 1117 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_recv() local 1305 struct cf_ngtcp2_ctx *ctx = cf->ctx; h3_stream_open() local 1430 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_send() local 1537 struct cf_ngtcp2_ctx *ctx = cf->ctx; qng_verify_peer() local 1552 struct cf_ngtcp2_ctx *ctx = pktx->cf->ctx; recv_pkt() local 1593 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_progress_ingress() local 1636 struct cf_ngtcp2_ctx *ctx = x->cf->ctx; read_pkt_to_send() local 1745 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_progress_egress() local 1882 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_data_event() local 1927 cf_ngtcp2_ctx_clear(struct cf_ngtcp2_ctx *ctx) cf_ngtcp2_ctx_clear() argument 1950 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_close() local 1979 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_destroy() local 1993 tls_ctx_setup(struct quic_tls_ctx *ctx, struct Curl_cfilter *cf, struct Curl_easy *data) tls_ctx_setup() argument 2031 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_connect_start() local 2115 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_connect() local 2211 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_query() local 2262 struct cf_ngtcp2_ctx *ctx = cf->ctx; cf_ngtcp2_conn_is_alive() local 2333 struct cf_ngtcp2_ctx *ctx = NULL; Curl_cf_ngtcp2_create() local [all...] |
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/ |
H A D | scheduler.c | 397 static void ASSERTED verify_ready_list(sched_ctx *ctx) in verify_ready_list() argument 399 list_for_each_entry(gpir_node, node, &ctx->ready_list, list) { in verify_ready_list() 421 static void schedule_insert_ready_list(sched_ctx *ctx, in schedule_insert_ready_list() argument 450 struct list_head *insert_pos = &ctx->ready_list; in schedule_insert_ready_list() 451 list_for_each_entry(gpir_node, node, &ctx->ready_list, list) { in schedule_insert_ready_list() 462 ctx->ready_list_slots += gpir_get_slots_required(insert_node); in schedule_insert_ready_list() 524 static bool _try_place_node(sched_ctx *ctx, gpir_instr *instr, gpir_node *node) in _try_place_node() argument 570 if (ctx->instr->non_cplx_slot_difference || in _try_place_node() 571 ctx->instr->slot_difference) { in _try_place_node() 578 if (ctx in _try_place_node() 604 schedule_try_place_node(sched_ctx *ctx, gpir_node *node, bool speculative) schedule_try_place_node() argument 655 create_replacement(sched_ctx *ctx, gpir_node *node, gpir_op op) create_replacement() argument 685 create_move(sched_ctx *ctx, gpir_node *node) create_move() argument 692 create_postlog2(sched_ctx *ctx, gpir_node *node) create_postlog2() argument 722 _schedule_try_node(sched_ctx *ctx, gpir_node *node, bool speculative) _schedule_try_node() argument 779 schedule_undo_node(sched_ctx *ctx, gpir_node *node) schedule_undo_node() argument 796 schedule_try_node(sched_ctx *ctx, gpir_node *node, bool speculative) schedule_try_node() argument 824 get_available_regs(sched_ctx *ctx, gpir_node *node, int *min_index) get_available_regs() argument 884 get_killed_regs(sched_ctx *ctx, int min_index) get_killed_regs() argument 913 spill_node(sched_ctx *ctx, gpir_node *node, gpir_store_node *store) spill_node() argument 995 try_spill_node(sched_ctx *ctx, gpir_node *node) try_spill_node() argument 1074 try_spill_nodes(sched_ctx *ctx, gpir_node *orig_node) try_spill_nodes() argument 1126 gpir_get_curr_ready_list_slots(sched_ctx *ctx) gpir_get_curr_ready_list_slots() argument 1226 sched_find_max_nodes(sched_ctx *ctx) sched_find_max_nodes() argument 1251 verify_max_nodes(sched_ctx *ctx) verify_max_nodes() argument 1288 try_node(sched_ctx *ctx) try_node() argument 1343 place_move(sched_ctx *ctx, gpir_node *node) place_move() argument 1376 can_place_move(sched_ctx *ctx, gpir_node *node) can_place_move() argument 1390 sched_move(sched_ctx *ctx) sched_move() argument 1502 gpir_sched_instr_pass(sched_ctx *ctx) gpir_sched_instr_pass() argument 1513 schedule_print_pre_one_instr(sched_ctx *ctx) schedule_print_pre_one_instr() argument 1552 schedule_one_instr(sched_ctx *ctx) schedule_one_instr() argument 1583 sched_ctx ctx; schedule_block() local [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/imx/ |
H A D | imx-media-csc-scaler.c | 69 static struct ipu_csc_scaler_q_data *get_q_data(struct ipu_csc_scaler_ctx *ctx, in get_q_data() argument 73 return &ctx->q_data[V4L2_M2M_SRC]; in get_q_data() 75 return &ctx->q_data[V4L2_M2M_DST]; in get_q_data() 84 struct ipu_csc_scaler_ctx *ctx = _ctx; in job_abort() local 86 if (ctx->icc) in job_abort() 87 ipu_image_convert_abort(ctx->icc); in job_abort() 92 struct ipu_csc_scaler_ctx *ctx = _ctx; in ipu_ic_pp_complete() local 93 struct ipu_csc_scaler_priv *priv = ctx->priv; in ipu_ic_pp_complete() 96 src_buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx); in ipu_ic_pp_complete() 97 dst_buf = v4l2_m2m_dst_buf_remove(ctx in ipu_ic_pp_complete() 115 struct ipu_csc_scaler_ctx *ctx = _ctx; device_run() local 182 struct ipu_csc_scaler_ctx *ctx = fh_to_ctx(priv); ipu_csc_scaler_g_fmt() local 195 struct ipu_csc_scaler_ctx *ctx = fh_to_ctx(priv); ipu_csc_scaler_try_fmt() local 244 struct ipu_csc_scaler_ctx *ctx = fh_to_ctx(priv); ipu_csc_scaler_s_fmt() local 299 struct ipu_csc_scaler_ctx *ctx = fh_to_ctx(priv); ipu_csc_scaler_g_selection() local 337 struct ipu_csc_scaler_ctx *ctx = fh_to_ctx(priv); ipu_csc_scaler_s_selection() local 424 struct ipu_csc_scaler_ctx *ctx = vb2_get_drv_priv(vq); ipu_csc_scaler_queue_setup() local 450 struct ipu_csc_scaler_ctx *ctx = vb2_get_drv_priv(vq); ipu_csc_scaler_buf_prepare() local 483 struct ipu_csc_scaler_ctx *ctx = vb2_get_drv_priv(vb->vb2_queue); ipu_csc_scaler_buf_queue() local 505 struct ipu_csc_scaler_ctx *ctx = vb2_get_drv_priv(q); ipu_csc_scaler_start_streaming() local 552 struct ipu_csc_scaler_ctx *ctx = vb2_get_drv_priv(q); ipu_csc_scaler_stop_streaming() local 584 struct ipu_csc_scaler_ctx *ctx = priv; ipu_csc_scaler_queue_init() local 618 struct ipu_csc_scaler_ctx *ctx = container_of(ctrl->handler, ipu_csc_scaler_s_ctrl() local 709 ipu_csc_scaler_init_controls(struct ipu_csc_scaler_ctx *ctx) ipu_csc_scaler_init_controls() argument 755 struct ipu_csc_scaler_ctx *ctx = NULL; ipu_csc_scaler_open() local 802 struct ipu_csc_scaler_ctx *ctx = fh_to_ctx(file->private_data); ipu_csc_scaler_release() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec2_smpl.c | 103 const BIGNUM *b, BN_CTX *ctx) in ossl_ec_GF2m_simple_group_set_curve() 142 BIGNUM *a, BIGNUM *b, BN_CTX *ctx) in ossl_ec_GF2m_simple_group_get_curve() 181 BN_CTX *ctx) in ossl_ec_GF2m_simple_group_check_discriminant() 188 if (ctx == NULL) { in ossl_ec_GF2m_simple_group_check_discriminant() 189 ctx = new_ctx = BN_CTX_new(); in ossl_ec_GF2m_simple_group_check_discriminant() 190 if (ctx == NULL) { in ossl_ec_GF2m_simple_group_check_discriminant() 196 BN_CTX_start(ctx); in ossl_ec_GF2m_simple_group_check_discriminant() 197 b = BN_CTX_get(ctx); in ossl_ec_GF2m_simple_group_check_discriminant() 214 BN_CTX_end(ctx); in ossl_ec_GF2m_simple_group_check_discriminant() 292 BN_CTX *ctx) in ossl_ec_GF2m_simple_point_set_affine_coordinates() 101 ossl_ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_group_set_curve() argument 141 ossl_ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_group_get_curve() argument 180 ossl_ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) ossl_ec_GF2m_simple_group_check_discriminant() argument 288 ossl_ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) ossl_ec_GF2m_simple_point_set_affine_coordinates() argument 320 ossl_ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) ossl_ec_GF2m_simple_point_get_affine_coordinates() argument 356 ossl_ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) ossl_ec_GF2m_simple_add() argument 477 ossl_ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) ossl_ec_GF2m_simple_dbl() argument 483 ossl_ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) ossl_ec_GF2m_simple_invert() argument 508 ossl_ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) ossl_ec_GF2m_simple_is_on_curve() argument 581 ossl_ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) ossl_ec_GF2m_simple_cmp() argument 632 ossl_ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) ossl_ec_GF2m_simple_make_affine() argument 681 ossl_ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) ossl_ec_GF2m_simple_points_make_affine() argument 695 ossl_ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_field_mul() argument 702 ossl_ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) ossl_ec_GF2m_simple_field_sqr() argument 709 ossl_ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_field_div() argument 722 ec_GF2m_simple_ladder_pre(const EC_GROUP *group, EC_POINT *r, EC_POINT *s, EC_POINT *p, BN_CTX *ctx) ec_GF2m_simple_ladder_pre() argument 775 ec_GF2m_simple_ladder_step(const EC_GROUP *group, EC_POINT *r, EC_POINT *s, EC_POINT *p, BN_CTX *ctx) ec_GF2m_simple_ladder_step() argument 805 ec_GF2m_simple_ladder_post(const EC_GROUP *group, EC_POINT *r, EC_POINT *s, EC_POINT *p, BN_CTX *ctx) ec_GF2m_simple_ladder_post() argument 868 ec_GF2m_simple_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ec_GF2m_simple_points_mul() argument 929 ec_GF2m_simple_field_inv(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) ec_GF2m_simple_field_inv() argument [all...] |
/third_party/openssl/crypto/ec/ |
H A D | ec2_smpl.c | 103 const BIGNUM *b, BN_CTX *ctx) in ossl_ec_GF2m_simple_group_set_curve() 142 BIGNUM *a, BIGNUM *b, BN_CTX *ctx) in ossl_ec_GF2m_simple_group_get_curve() 181 BN_CTX *ctx) in ossl_ec_GF2m_simple_group_check_discriminant() 188 if (ctx == NULL) { in ossl_ec_GF2m_simple_group_check_discriminant() 189 ctx = new_ctx = BN_CTX_new(); in ossl_ec_GF2m_simple_group_check_discriminant() 190 if (ctx == NULL) { in ossl_ec_GF2m_simple_group_check_discriminant() 196 BN_CTX_start(ctx); in ossl_ec_GF2m_simple_group_check_discriminant() 197 b = BN_CTX_get(ctx); in ossl_ec_GF2m_simple_group_check_discriminant() 214 BN_CTX_end(ctx); in ossl_ec_GF2m_simple_group_check_discriminant() 292 BN_CTX *ctx) in ossl_ec_GF2m_simple_point_set_affine_coordinates() 101 ossl_ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_group_set_curve() argument 141 ossl_ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_group_get_curve() argument 180 ossl_ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) ossl_ec_GF2m_simple_group_check_discriminant() argument 288 ossl_ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) ossl_ec_GF2m_simple_point_set_affine_coordinates() argument 320 ossl_ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) ossl_ec_GF2m_simple_point_get_affine_coordinates() argument 356 ossl_ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) ossl_ec_GF2m_simple_add() argument 477 ossl_ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) ossl_ec_GF2m_simple_dbl() argument 483 ossl_ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) ossl_ec_GF2m_simple_invert() argument 508 ossl_ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) ossl_ec_GF2m_simple_is_on_curve() argument 581 ossl_ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) ossl_ec_GF2m_simple_cmp() argument 632 ossl_ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) ossl_ec_GF2m_simple_make_affine() argument 681 ossl_ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) ossl_ec_GF2m_simple_points_make_affine() argument 695 ossl_ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_field_mul() argument 702 ossl_ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) ossl_ec_GF2m_simple_field_sqr() argument 709 ossl_ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) ossl_ec_GF2m_simple_field_div() argument 722 ec_GF2m_simple_ladder_pre(const EC_GROUP *group, EC_POINT *r, EC_POINT *s, EC_POINT *p, BN_CTX *ctx) ec_GF2m_simple_ladder_pre() argument 775 ec_GF2m_simple_ladder_step(const EC_GROUP *group, EC_POINT *r, EC_POINT *s, EC_POINT *p, BN_CTX *ctx) ec_GF2m_simple_ladder_step() argument 805 ec_GF2m_simple_ladder_post(const EC_GROUP *group, EC_POINT *r, EC_POINT *s, EC_POINT *p, BN_CTX *ctx) ec_GF2m_simple_ladder_post() argument 868 ec_GF2m_simple_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ec_GF2m_simple_points_mul() argument 929 ec_GF2m_simple_field_inv(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) ec_GF2m_simple_field_inv() argument [all...] |
/kernel/linux/linux-5.10/drivers/media/platform/s5p-mfc/ |
H A D | s5p_mfc.c | 49 void clear_work_bit(struct s5p_mfc_ctx *ctx) in clear_work_bit() argument 51 struct s5p_mfc_dev *dev = ctx->dev; in clear_work_bit() 54 __clear_bit(ctx->num, &dev->ctx_work_bits); in clear_work_bit() 59 void set_work_bit(struct s5p_mfc_ctx *ctx) in set_work_bit() argument 61 struct s5p_mfc_dev *dev = ctx->dev; in set_work_bit() 64 __set_bit(ctx->num, &dev->ctx_work_bits); in set_work_bit() 69 void clear_work_bit_irqsave(struct s5p_mfc_ctx *ctx) in clear_work_bit_irqsave() argument 71 struct s5p_mfc_dev *dev = ctx->dev; in clear_work_bit_irqsave() 75 __clear_bit(ctx->num, &dev->ctx_work_bits); in clear_work_bit_irqsave() 80 void set_work_bit_irqsave(struct s5p_mfc_ctx *ctx) in set_work_bit_irqsave() argument 93 int ctx; s5p_mfc_get_new_ctx() local 111 wake_up_ctx(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) wake_up_ctx() argument 167 struct s5p_mfc_ctx *ctx; s5p_mfc_watchdog_worker() local 219 s5p_mfc_handle_frame_all_extracted(struct s5p_mfc_ctx *ctx) s5p_mfc_handle_frame_all_extracted() argument 250 s5p_mfc_handle_frame_copy_time(struct s5p_mfc_ctx *ctx) s5p_mfc_handle_frame_copy_time() argument 302 s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err) s5p_mfc_handle_frame_new() argument 359 s5p_mfc_handle_frame(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_frame() argument 465 s5p_mfc_handle_error(struct s5p_mfc_dev *dev, struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_error() argument 503 s5p_mfc_handle_seq_done(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_seq_done() argument 559 s5p_mfc_handle_init_buffers(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_init_buffers() argument 602 s5p_mfc_handle_stream_complete(struct s5p_mfc_ctx *ctx) s5p_mfc_handle_stream_complete() argument 633 struct s5p_mfc_ctx *ctx; s5p_mfc_irq() local 755 struct s5p_mfc_ctx *ctx = NULL; s5p_mfc_open() local 937 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data); s5p_mfc_release() local 994 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data); s5p_mfc_poll() local 1045 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data); s5p_mfc_mmap() local 1429 struct s5p_mfc_ctx *ctx; s5p_mfc_remove() local [all...] |
/kernel/linux/linux-6.6/drivers/media/platform/samsung/s5p-mfc/ |
H A D | s5p_mfc.c | 49 void clear_work_bit(struct s5p_mfc_ctx *ctx) in clear_work_bit() argument 51 struct s5p_mfc_dev *dev = ctx->dev; in clear_work_bit() 54 __clear_bit(ctx->num, &dev->ctx_work_bits); in clear_work_bit() 59 void set_work_bit(struct s5p_mfc_ctx *ctx) in set_work_bit() argument 61 struct s5p_mfc_dev *dev = ctx->dev; in set_work_bit() 64 __set_bit(ctx->num, &dev->ctx_work_bits); in set_work_bit() 69 void clear_work_bit_irqsave(struct s5p_mfc_ctx *ctx) in clear_work_bit_irqsave() argument 71 struct s5p_mfc_dev *dev = ctx->dev; in clear_work_bit_irqsave() 75 __clear_bit(ctx->num, &dev->ctx_work_bits); in clear_work_bit_irqsave() 80 void set_work_bit_irqsave(struct s5p_mfc_ctx *ctx) in set_work_bit_irqsave() argument 93 int ctx; s5p_mfc_get_new_ctx() local 111 wake_up_ctx(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) wake_up_ctx() argument 169 struct s5p_mfc_ctx *ctx; s5p_mfc_watchdog_worker() local 225 s5p_mfc_handle_frame_all_extracted(struct s5p_mfc_ctx *ctx) s5p_mfc_handle_frame_all_extracted() argument 256 s5p_mfc_handle_frame_copy_time(struct s5p_mfc_ctx *ctx) s5p_mfc_handle_frame_copy_time() argument 312 s5p_mfc_handle_frame_new(struct s5p_mfc_ctx *ctx, unsigned int err) s5p_mfc_handle_frame_new() argument 371 s5p_mfc_handle_frame(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_frame() argument 477 s5p_mfc_handle_error(struct s5p_mfc_dev *dev, struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_error() argument 517 s5p_mfc_handle_seq_done(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_seq_done() argument 574 s5p_mfc_handle_init_buffers(struct s5p_mfc_ctx *ctx, unsigned int reason, unsigned int err) s5p_mfc_handle_init_buffers() argument 617 s5p_mfc_handle_stream_complete(struct s5p_mfc_ctx *ctx) s5p_mfc_handle_stream_complete() argument 648 struct s5p_mfc_ctx *ctx; s5p_mfc_irq() local 770 struct s5p_mfc_ctx *ctx = NULL; s5p_mfc_open() local 952 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data); s5p_mfc_release() local 1009 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data); s5p_mfc_poll() local 1060 struct s5p_mfc_ctx *ctx = fh_to_ctx(file->private_data); s5p_mfc_mmap() local 1437 struct s5p_mfc_ctx *ctx; s5p_mfc_remove() local [all...] |
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | item.rs | 43 fn canonical_name(&self, ctx: &BindgenContext) -> String; in canonical_name() 64 ctx: &BindgenContext, in namespace_aware_canonical_path() 68 fn canonical_path(&self, ctx: &BindgenContext) -> Vec<String>; in canonical_path() 78 /// May only be called when `ctx` is in the codegen phase. 79 fn is_opaque(&self, ctx: &BindgenContext, extra: &Self::Extra) -> bool; in is_opaque() 85 fn has_type_param_in_array(&self, ctx: &BindgenContext) -> bool; in has_type_param_in_array() 91 fn has_float(&self, ctx: &BindgenContext) -> bool; in has_float() 98 fn ancestors<'a>(&self, ctx: &'a BindgenContext) -> ItemAncestorsIter<'a>; in ancestors() 123 ctx: &'a BindgenContext, 128 fn new<Id: Into<ItemId>>(ctx [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | sockopt_multi.c | 11 int _getsockopt_child(struct bpf_sockopt *ctx) in _getsockopt_child() argument 13 __u8 *optval_end = ctx->optval_end; in _getsockopt_child() 14 __u8 *optval = ctx->optval; in _getsockopt_child() 16 if (ctx->level != SOL_IP || ctx->optname != IP_TOS) in _getsockopt_child() 25 ctx->retval = 0; /* Reset system call return value to zero */ in _getsockopt_child() 28 ctx->optlen = 1; in _getsockopt_child() 34 if (ctx->optlen > page_size) in _getsockopt_child() 35 ctx->optlen = 0; in _getsockopt_child() 40 int _getsockopt_parent(struct bpf_sockopt *ctx) in _getsockopt_parent() argument 69 _setsockopt(struct bpf_sockopt *ctx) _setsockopt() argument [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | get.c | 709 * \param ctx the current context 714 find_custom_value(struct gl_context *ctx, const struct value_desc *d, union value *v) in find_custom_value() argument 722 v->value_int = ctx->Version / 10; in find_custom_value() 725 v->value_int = ctx->Version % 10; in find_custom_value() 740 v->value_int = ctx->Line.StipplePattern; in find_custom_value() 744 unit = ctx->Texture.CurrentUnit; in find_custom_value() 745 v->value_float_4[0] = ctx->Current.RasterTexCoords[unit][0]; in find_custom_value() 746 v->value_float_4[1] = ctx->Current.RasterTexCoords[unit][1]; in find_custom_value() 747 v->value_float_4[2] = ctx->Current.RasterTexCoords[unit][2]; in find_custom_value() 748 v->value_float_4[3] = ctx in find_custom_value() 1390 check_extra(struct gl_context *ctx, const char *func, const struct value_desc *d) check_extra() argument 2459 tex_binding_to_index(const struct gl_context *ctx, GLenum binding) tex_binding_to_index() argument [all...] |
/third_party/node/deps/openssl/openssl/engines/ |
H A D | e_loader_attic.c | 307 STACK_OF(OSSL_STORE_INFO) *ctx = *pctx; in try_decode_PKCS12() 309 if (ctx == NULL) { in try_decode_PKCS12() 349 if ((ctx = sk_OSSL_STORE_INFO_new_null()) != NULL) { in try_decode_PKCS12() 354 && sk_OSSL_STORE_INFO_push(ctx, osi_pkey) != 0) in try_decode_PKCS12() 363 && sk_OSSL_STORE_INFO_push(ctx, osi_cert) != 0) in try_decode_PKCS12() 373 && sk_OSSL_STORE_INFO_push(ctx, osi_ca) != 0) in try_decode_PKCS12() 386 sk_OSSL_STORE_INFO_pop_free(ctx, store_info_free); in try_decode_PKCS12() 387 ctx = NULL; in try_decode_PKCS12() 389 *pctx = ctx; in try_decode_PKCS12() 394 if (ctx in try_decode_PKCS12() 885 OPENSSL_DIR_CTX *ctx; global() member 912 OSSL_STORE_LOADER_CTX_free(OSSL_STORE_LOADER_CTX *ctx) OSSL_STORE_LOADER_CTX_free() argument 929 file_find_type(OSSL_STORE_LOADER_CTX *ctx) file_find_type() argument 951 OSSL_STORE_LOADER_CTX *ctx = NULL; file_open_ex() local 1083 OSSL_STORE_LOADER_CTX *ctx = NULL; file_attach() local 1105 file_ctrl(OSSL_STORE_LOADER_CTX *ctx, int cmd, va_list args) file_ctrl() argument 1135 file_expect(OSSL_STORE_LOADER_CTX *ctx, int expected) file_expect() argument 1141 file_find(OSSL_STORE_LOADER_CTX *ctx, const OSSL_STORE_SEARCH *search) file_find() argument 1172 file_load_try_decode(OSSL_STORE_LOADER_CTX *ctx, const char *pem_name, const char *pem_header, unsigned char *data, size_t len, const UI_METHOD *ui_method, void *ui_data, int *matchcount) file_load_try_decode() argument 1277 file_load_try_repeat(OSSL_STORE_LOADER_CTX *ctx, const UI_METHOD *ui_method, void *ui_data) file_load_try_repeat() argument 1426 file_name_to_uri(OSSL_STORE_LOADER_CTX *ctx, const char *name, char **data) file_name_to_uri() argument 1449 file_name_check(OSSL_STORE_LOADER_CTX *ctx, const char *name) file_name_check() argument 1513 file_load(OSSL_STORE_LOADER_CTX *ctx, const UI_METHOD *ui_method, void *ui_data) file_load() argument 1650 file_error(OSSL_STORE_LOADER_CTX *ctx) file_error() argument 1655 file_eof(OSSL_STORE_LOADER_CTX *ctx) file_eof() argument 1666 file_close(OSSL_STORE_LOADER_CTX *ctx) file_close() argument [all...] |
/third_party/openssl/engines/ |
H A D | e_loader_attic.c | 307 STACK_OF(OSSL_STORE_INFO) *ctx = *pctx; in try_decode_PKCS12() 309 if (ctx == NULL) { in try_decode_PKCS12() 349 if ((ctx = sk_OSSL_STORE_INFO_new_null()) != NULL) { in try_decode_PKCS12() 354 && sk_OSSL_STORE_INFO_push(ctx, osi_pkey) != 0) in try_decode_PKCS12() 363 && sk_OSSL_STORE_INFO_push(ctx, osi_cert) != 0) in try_decode_PKCS12() 373 && sk_OSSL_STORE_INFO_push(ctx, osi_ca) != 0) in try_decode_PKCS12() 386 sk_OSSL_STORE_INFO_pop_free(ctx, store_info_free); in try_decode_PKCS12() 387 ctx = NULL; in try_decode_PKCS12() 389 *pctx = ctx; in try_decode_PKCS12() 394 if (ctx in try_decode_PKCS12() 885 OPENSSL_DIR_CTX *ctx; global() member 912 OSSL_STORE_LOADER_CTX_free(OSSL_STORE_LOADER_CTX *ctx) OSSL_STORE_LOADER_CTX_free() argument 929 file_find_type(OSSL_STORE_LOADER_CTX *ctx) file_find_type() argument 951 OSSL_STORE_LOADER_CTX *ctx = NULL; file_open_ex() local 1083 OSSL_STORE_LOADER_CTX *ctx = NULL; file_attach() local 1105 file_ctrl(OSSL_STORE_LOADER_CTX *ctx, int cmd, va_list args) file_ctrl() argument 1135 file_expect(OSSL_STORE_LOADER_CTX *ctx, int expected) file_expect() argument 1141 file_find(OSSL_STORE_LOADER_CTX *ctx, const OSSL_STORE_SEARCH *search) file_find() argument 1172 file_load_try_decode(OSSL_STORE_LOADER_CTX *ctx, const char *pem_name, const char *pem_header, unsigned char *data, size_t len, const UI_METHOD *ui_method, void *ui_data, int *matchcount) file_load_try_decode() argument 1277 file_load_try_repeat(OSSL_STORE_LOADER_CTX *ctx, const UI_METHOD *ui_method, void *ui_data) file_load_try_repeat() argument 1426 file_name_to_uri(OSSL_STORE_LOADER_CTX *ctx, const char *name, char **data) file_name_to_uri() argument 1449 file_name_check(OSSL_STORE_LOADER_CTX *ctx, const char *name) file_name_check() argument 1513 file_load(OSSL_STORE_LOADER_CTX *ctx, const UI_METHOD *ui_method, void *ui_data) file_load() argument 1650 file_error(OSSL_STORE_LOADER_CTX *ctx) file_error() argument 1655 file_eof(OSSL_STORE_LOADER_CTX *ctx) file_eof() argument 1666 file_close(OSSL_STORE_LOADER_CTX *ctx) file_close() argument [all...] |
/third_party/ffmpeg/libavdevice/ |
H A D | decklink_common.cpp | 125 struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx; in decklink_select_input() local 127 int64_t bmd_input = (cfg_id == bmdDeckLinkConfigAudioInputConnection) ? (int64_t)ctx->audio_input : (int64_t)ctx->video_input; in decklink_select_input() 133 res = ctx->attr->GetInt(attr_id, &supported_connections); in decklink_select_input() 142 res = ctx->cfg->SetInt(cfg_id, bmd_input); in decklink_select_input() 167 struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx; in ff_decklink_set_configs() local 170 if (ctx->duplex_mode) { in ff_decklink_set_configs() 175 if (ctx in ff_decklink_set_configs() 264 struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx; ff_decklink_set_format() local 490 struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx; ff_decklink_list_formats() local 541 struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx; ff_decklink_cleanup() local 558 struct decklink_ctx *ctx = (struct decklink_ctx *)cctx->ctx; ff_decklink_init_device() local [all...] |