Home
last modified time | relevance | path

Searched refs:ctx (Results 6276 - 6300 of 13500) sorted by relevance

1...<<251252253254255256257258259260>>...540

/third_party/node/deps/openssl/openssl/crypto/pkcs12/
H A Dp12_crpt.c23 int PKCS12_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen_ex() argument
72 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, piv, en_de); in PKCS12_PBE_keyivgen_ex()
78 int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen() argument
82 return PKCS12_PBE_keyivgen_ex(ctx, pass, passlen, param, cipher, md, en_de, in PKCS12_PBE_keyivgen()
/third_party/node/deps/openssl/openssl/crypto/rsa/
H A Drsa_mp.c65 BN_CTX *ctx = NULL; in ossl_rsa_multip_calc_product() local
73 if ((ctx = BN_CTX_new()) == NULL) in ossl_rsa_multip_calc_product()
87 if (!BN_mul(pinfo->pp, p1, p2, ctx)) in ossl_rsa_multip_calc_product()
96 BN_CTX_free(ctx); in ossl_rsa_multip_calc_product()
/third_party/rust/crates/bindgen/bindgen/ir/analysis/
H A Dhas_type_param_in_array.rs25 pub struct HasTypeParameterInArray<'ctx> {
26 ctx: &'ctx BindgenContext,
42 impl<'ctx> HasTypeParameterInArray<'ctx> {
86 impl<'ctx> MonotoneFramework for HasTypeParameterInArray<'ctx> {
88 type Extra = &'ctx BindgenContext;
91 fn new(ctx: &'ctx BindgenContex
[all...]
H A Dhas_float.rs25 pub struct HasFloat<'ctx> {
26 ctx: &'ctx BindgenContext,
42 impl<'ctx> HasFloat<'ctx> {
80 impl<'ctx> MonotoneFramework for HasFloat<'ctx> {
82 type Extra = &'ctx BindgenContext;
85 fn new(ctx: &'ctx BindgenContex
[all...]
/third_party/openssl/crypto/ec/
H A Dec_print.c19 point_conversion_form_t form, BN_CTX *ctx) in EC_POINT_point2hex()
25 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx); in EC_POINT_point2hex()
50 const char *hex, EC_POINT *point, BN_CTX *ctx) in EC_POINT_hex2point()
74 || !EC_POINT_oct2point(group, pt, oct_buf, oct_buf_len, ctx)) in EC_POINT_hex2point()
17 EC_POINT_point2hex(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, BN_CTX *ctx) EC_POINT_point2hex() argument
49 EC_POINT_hex2point(const EC_GROUP *group, const char *hex, EC_POINT *point, BN_CTX *ctx) EC_POINT_hex2point() argument
/third_party/openssl/crypto/pkcs12/
H A Dp12_crpt.c23 int PKCS12_PBE_keyivgen_ex(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen_ex() argument
72 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, piv, en_de); in PKCS12_PBE_keyivgen_ex()
78 int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen, in PKCS12_PBE_keyivgen() argument
82 return PKCS12_PBE_keyivgen_ex(ctx, pass, passlen, param, cipher, md, en_de, in PKCS12_PBE_keyivgen()
/third_party/openssl/providers/implementations/digests/
H A Dsha2_prov.c36 static const OSSL_PARAM *sha1_settable_ctx_params(ossl_unused void *ctx, in sha1_settable_ctx_params() argument
46 SHA_CTX *ctx = (SHA_CTX *)vctx; in sha1_set_ctx_params() local
48 if (ctx == NULL) in sha1_set_ctx_params()
55 return ossl_sha1_ctrl(ctx, EVP_CTRL_SSL3_MASTER_SECRET, in sha1_set_ctx_params()
/third_party/openssl/demos/bio/
H A Dclient-arg.c19 SSL_CTX *ctx; in main() local
26 ctx = SSL_CTX_new(TLS_client_method()); in main()
29 SSL_CONF_CTX_set_ssl_ctx(cctx, ctx); in main()
74 sbio = BIO_new_ssl_connect(ctx); in main()
/third_party/openssl/crypto/rsa/
H A Drsa_mp.c65 BN_CTX *ctx = NULL; in ossl_rsa_multip_calc_product() local
73 if ((ctx = BN_CTX_new()) == NULL) in ossl_rsa_multip_calc_product()
87 if (!BN_mul(pinfo->pp, p1, p2, ctx)) in ossl_rsa_multip_calc_product()
96 BN_CTX_free(ctx); in ossl_rsa_multip_calc_product()
/third_party/skia/third_party/externals/spirv-cross/tests-other/
H A Dhlsl_resource_bindings.cpp48 spvc_context ctx; in main()
52 SPVC_CHECKED_CALL(spvc_context_create(&ctx)); in main()
53 SPVC_CHECKED_CALL(spvc_context_parse_spirv(ctx, buffer.data(), buffer.size(), &parsed_ir)); in main()
54 SPVC_CHECKED_CALL(spvc_context_create_compiler(ctx, SPVC_BACKEND_HLSL, parsed_ir, SPVC_CAPTURE_MODE_TAKE_OWNERSHIP, &compiler)); in main()
H A Dmsl_resource_bindings.cpp48 spvc_context ctx; in main()
52 SPVC_CHECKED_CALL(spvc_context_create(&ctx)); in main()
53 SPVC_CHECKED_CALL(spvc_context_parse_spirv(ctx, buffer.data(), buffer.size(), &parsed_ir)); in main()
54 SPVC_CHECKED_CALL(spvc_context_create_compiler(ctx, SPVC_BACKEND_MSL, parsed_ir, SPVC_CAPTURE_MODE_TAKE_OWNERSHIP, &compiler)); in main()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dcost.c328 // bit_cost(1, p0) is already incorporated in t[] tables, but only if ctx != 0 in GetResidualCost_C()
338 const int ctx = (v >= 2) ? 2 : v; in GetResidualCost_C() local
340 t = costs[n + 1][ctx]; in GetResidualCost_C()
349 const int ctx = (v == 1) ? 1 : 2; in GetResidualCost_C() local
350 const int last_p0 = res->prob[b][ctx][0]; in GetResidualCost_C()
/third_party/skia/modules/svg/src/
H A DSkSVGRect.cpp69 SkPath SkSVGRect::onAsPath(const SkSVGRenderContext& ctx) const { in onAsPath()
70 SkPath path = SkPath::RRect(this->resolve(ctx.lengthContext())); in onAsPath()
77 SkRect SkSVGRect::onObjectBoundingBox(const SkSVGRenderContext& ctx) const { in onObjectBoundingBox()
78 return ctx.lengthContext().resolveRect(fX, fY, fWidth, fHeight); in onObjectBoundingBox()
H A DSkSVGFilter.cpp28 sk_sp<SkImageFilter> SkSVGFilter::buildFilterDAG(const SkSVGRenderContext& ctx) const { in buildFilterDAG()
30 SkSVGFilterContext fctx(ctx.resolveOBBRect(fX, fY, fWidth, fHeight, fFilterUnits), in buildFilterDAG()
45 SkSVGRenderContext localCtx(ctx); in buildFilterDAG()
49 cs = feNode.resolveColorspace(ctx, fctx); in buildFilterDAG()
H A DSkSVGCircle.cpp40 SkPath SkSVGCircle::onAsPath(const SkSVGRenderContext& ctx) const { in onAsPath()
43 std::tie(pos, r) = this->resolve(ctx.lengthContext()); in onAsPath()
51 SkRect SkSVGCircle::onObjectBoundingBox(const SkSVGRenderContext& ctx) const { in onObjectBoundingBox()
52 const auto [pos, r] = this->resolve(ctx.lengthContext()); in onObjectBoundingBox()
/third_party/selinux/libselinux/src/
H A Dcallbacks.c37 default_selinux_validate(char **ctx) in default_selinux_validate() argument
40 return security_check_context(*ctx); in default_selinux_validate()
42 (void) ctx; in default_selinux_validate()
69 (*selinux_validate)(char **ctx) =
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dtlsv1_server.h42 (void *ctx, const u8 *ticket, size_t len, const u8 *client_random,
47 void *ctx);
50 void (*cb)(void *ctx, const char *msg), void *ctx);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dtlsv1_server.h42 (void *ctx, const u8 *ticket, size_t len, const u8 *client_random,
47 void *ctx);
50 void (*cb)(void *ctx, const char *msg), void *ctx);
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_cs.c115 p->ctx = amdgpu_ctx_get(fpriv, cs->in.ctx_id); in amdgpu_cs_parser_init()
116 if (!p->ctx) { in amdgpu_cs_parser_init()
121 mutex_lock(&p->ctx->lock); in amdgpu_cs_parser_init()
124 if (atomic_read(&p->ctx->guilty) == 1) { in amdgpu_cs_parser_init()
225 if (p->ctx->vram_lost_counter != p->job->vram_lost_counter) { in amdgpu_cs_parser_init()
394 struct ttm_operation_ctx ctx = { in amdgpu_cs_bo_validate() local
431 r = ttm_bo_validate(&bo->tbo, &bo->placement, &ctx); in amdgpu_cs_bo_validate()
433 p->bytes_moved += ctx.bytes_moved; in amdgpu_cs_bo_validate()
436 p->bytes_moved_vis += ctx.bytes_moved; in amdgpu_cs_bo_validate()
464 struct ttm_operation_ctx ctx in amdgpu_cs_list_validate() local
952 struct amdgpu_ctx *ctx; amdgpu_cs_process_fence_dep() local
1353 struct amdgpu_ctx *ctx; amdgpu_cs_wait_ioctl() local
1401 struct amdgpu_ctx *ctx; amdgpu_cs_get_fence() local
1649 struct ttm_operation_ctx ctx = { false, false }; amdgpu_cs_find_mapping() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dwavpack.c136 static int update_error_limit(WavpackFrameContext *ctx) in update_error_limit() argument
140 for (i = 0; i <= ctx->stereo_in; i++) { in update_error_limit()
141 if (ctx->ch[i].bitrate_acc > UINT_MAX - ctx->ch[i].bitrate_delta) in update_error_limit()
143 ctx->ch[i].bitrate_acc += ctx->ch[i].bitrate_delta; in update_error_limit()
144 br[i] = ctx->ch[i].bitrate_acc >> 16; in update_error_limit()
145 sl[i] = LEVEL_DECAY(ctx->ch[i].slow_level); in update_error_limit()
147 if (ctx->stereo_in && ctx in update_error_limit()
174 wv_get_value(WavpackFrameContext *ctx, GetBitContext *gb, int channel, int *last) wv_get_value() argument
[all...]
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_pipeline.c1462 struct rogue_build_ctx *ctx; in pvr_graphics_pipeline_compile() local
1466 ctx = rogue_create_build_context(compiler); in pvr_graphics_pipeline_compile()
1467 if (!ctx) in pvr_graphics_pipeline_compile()
1490 ctx->nir[stage] = pvr_spirv_to_nir(ctx, stage, create_info); in pvr_graphics_pipeline_compile()
1491 if (!ctx->nir[stage]) { in pvr_graphics_pipeline_compile()
1492 ralloc_free(ctx); in pvr_graphics_pipeline_compile()
1529 &ctx->binary[stage]); in pvr_graphics_pipeline_compile()
1534 &ctx->common_data[stage], in pvr_graphics_pipeline_compile()
1535 &ctx in pvr_graphics_pipeline_compile()
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/ohos/
H A Dgeocoding_data.pb.cc256 const char* GeocodingInfo::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) { in _InternalParse() argument
260 while (!ctx->Done(&ptr)) { in _InternalParse()
271 ptr = ctx->ParseMessage(_internal_add_prefixes_info(), ptr); in _InternalParse()
273 if (!ctx->DataAvailable(ptr)) break; in _InternalParse()
284 ptr = ::PROTOBUF_NAMESPACE_ID::internal::InlineGreedyStringParser(str, ptr, ctx); in _InternalParse()
286 if (!ctx->DataAvailable(ptr)) break; in _InternalParse()
293 ptr = ctx->ParseMessage(_internal_mutable_language_code_info(), ptr); in _InternalParse()
303 ptr = ctx->ParseMessage(_internal_add_countries_info(), ptr); in _InternalParse()
305 if (!ctx->DataAvailable(ptr)) break; in _InternalParse()
317 if (!ctx in _InternalParse()
654 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument
999 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument
1226 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument
1452 _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) _InternalParse() argument
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dwire_format.cc659 const char* _InternalParse(const char* ptr, internal::ParseContext* ctx) { in _InternalParse()
665 while (!ctx->Done(&ptr)) { in _InternalParse()
676 if (ctx->data().pool == nullptr) { in _InternalParse()
680 ctx->data().pool->FindExtensionByNumber(descriptor, type_id); in _InternalParse()
689 ? reflection->AddMessage(msg, field, ctx->data().factory) in _InternalParse()
691 ctx->data().factory); in _InternalParse()
695 ParseContext tmp_ctx(ctx->depth(), false, &p, payload); in _InternalParse()
696 tmp_ctx.data().pool = ctx->data().pool; in _InternalParse()
697 tmp_ctx.data().factory = ctx->data().factory; in _InternalParse()
708 ptr = ctx in _InternalParse()
780 _InternalParse(Message* msg, const char* ptr, internal::ParseContext* ctx) _InternalParse() argument
819 _InternalParseAndMergeField( Message* msg, const char* ptr, internal::ParseContext* ctx, uint64 tag, const Reflection* reflection, const FieldDescriptor* field) _InternalParseAndMergeField() argument
[all...]
/kernel/linux/linux-5.10/drivers/bluetooth/
H A Dbtintel.c533 struct regmap_ibt_context *ctx = context; in regmap_ibt_read() local
560 bt_dev_dbg(ctx->hdev, "Register (0x%x) read", le32_to_cpu(cp.addr)); in regmap_ibt_read()
562 skb = hci_cmd_sync(ctx->hdev, ctx->op_read, sizeof(cp), &cp, in regmap_ibt_read()
566 bt_dev_err(ctx->hdev, "regmap: Register (0x%x) read error (%d)", in regmap_ibt_read()
572 bt_dev_err(ctx->hdev, "regmap: Register (0x%x) read error, bad len", in regmap_ibt_read()
581 bt_dev_err(ctx->hdev, "regmap: Register (0x%x) read error, bad addr", in regmap_ibt_read()
598 struct regmap_ibt_context *ctx = context; in regmap_ibt_gather_write() local
632 bt_dev_dbg(ctx->hdev, "Register (0x%x) write", le32_to_cpu(cp->addr)); in regmap_ibt_gather_write()
634 skb = hci_cmd_sync(ctx in regmap_ibt_gather_write()
683 struct regmap_ibt_context *ctx; btintel_regmap_init() local
[all...]
/kernel/linux/linux-5.10/drivers/clk/rockchip/
H A Dclk-rk3188.c759 struct rockchip_clk_provider *ctx; in rk3188_common_clk_init() local
768 ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS); in rk3188_common_clk_init()
769 if (IS_ERR(ctx)) { in rk3188_common_clk_init()
775 rockchip_clk_register_branches(ctx, common_clk_branches, in rk3188_common_clk_init()
781 rockchip_register_restart_notifier(ctx, RK2928_GLB_SRST_FST, NULL); in rk3188_common_clk_init()
783 return ctx; in rk3188_common_clk_init()
788 struct rockchip_clk_provider *ctx; in rk3066a_clk_init() local
790 ctx = rk3188_common_clk_init(np); in rk3066a_clk_init()
791 if (IS_ERR(ctx)) in rk3066a_clk_init()
794 rockchip_clk_register_plls(ctx, rk3066_pll_clk in rk3066a_clk_init()
811 struct rockchip_clk_provider *ctx; rk3188a_clk_init() local
[all...]

Completed in 19 milliseconds

1...<<251252253254255256257258259260>>...540