Home
last modified time | relevance | path

Searched refs:ctx (Results 2901 - 2925 of 12817) sorted by relevance

1...<<111112113114115116117118119120>>...513

/third_party/openssl/crypto/ec/
H A Dec_key.c39 EC_KEY *EC_KEY_new_ex(OSSL_LIB_CTX *ctx, const char *propq) in EC_KEY_new_ex() argument
41 return ossl_ec_key_new_method_int(ctx, propq, NULL); in EC_KEY_new_ex()
44 EC_KEY *EC_KEY_new_by_curve_name_ex(OSSL_LIB_CTX *ctx, const char *propq, in EC_KEY_new_by_curve_name_ex() argument
47 EC_KEY *ret = EC_KEY_new_ex(ctx, propq); in EC_KEY_new_by_curve_name_ex()
50 ret->group = EC_GROUP_new_by_curve_name_ex(ctx, propq, nid); in EC_KEY_new_by_curve_name_ex()
259 BN_CTX *ctx = BN_CTX_secure_new_ex(eckey->libctx); in ec_generate_key() local
262 if (ctx == NULL) in ec_generate_key()
303 if (!BN_priv_rand_range_ex(priv_key, order, 0, ctx)) in ec_generate_key()
315 if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, ctx)) in ec_generate_key()
348 BN_CTX_free(ctx); in ec_generate_key()
361 BN_CTX *ctx = BN_CTX_new_ex(eckey->libctx); ossl_ec_key_simple_generate_public_key() local
404 ec_key_public_range_check(BN_CTX *ctx, const EC_KEY *key) ec_key_public_range_check() argument
441 ossl_ec_key_public_check_quick(const EC_KEY *eckey, BN_CTX *ctx) ossl_ec_key_public_check_quick() argument
472 ossl_ec_key_public_check(const EC_KEY *eckey, BN_CTX *ctx) ossl_ec_key_public_check() argument
529 ossl_ec_key_pairwise_check(const EC_KEY *eckey, BN_CTX *ctx) ossl_ec_key_pairwise_check() argument
575 BN_CTX *ctx = NULL; ossl_ec_key_simple_check_key() local
601 BN_CTX *ctx = NULL; EC_KEY_set_public_key_affine_coordinates() local
835 EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx) EC_KEY_precompute_mult() argument
867 EC_KEY_key2buf(const EC_KEY *key, point_conversion_form_t form, unsigned char **pbuf, BN_CTX *ctx) EC_KEY_key2buf() argument
875 EC_KEY_oct2key(EC_KEY *key, const unsigned char *buf, size_t len, BN_CTX *ctx) EC_KEY_oct2key() argument
[all...]
H A Dec_lib.c317 BN_CTX *ctx = NULL; in ec_guess_cofactor() local
331 if ((ctx = BN_CTX_new_ex(group->libctx)) == NULL) in ec_guess_cofactor()
334 BN_CTX_start(ctx); in ec_guess_cofactor()
335 if ((q = BN_CTX_get(ctx)) == NULL) in ec_guess_cofactor()
354 || !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx)) in ec_guess_cofactor()
358 BN_CTX_end(ctx); in ec_guess_cofactor()
359 BN_CTX_free(ctx); in ec_guess_cofactor()
443 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) in EC_GROUP_get_order() argument
464 BN_CTX *ctx) in EC_GROUP_get_cofactor()
556 const BIGNUM *b, BN_CTX *ctx) in EC_GROUP_set_curve()
463 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) EC_GROUP_get_cofactor() argument
555 EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) EC_GROUP_set_curve() argument
565 EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) EC_GROUP_get_curve() argument
576 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) EC_GROUP_set_curve_GFp() argument
582 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) EC_GROUP_get_curve_GFp() argument
589 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) EC_GROUP_set_curve_GF2m() argument
595 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) EC_GROUP_get_curve_GF2m() argument
612 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) EC_GROUP_check_discriminant() argument
621 EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx) EC_GROUP_cmp() argument
825 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) EC_POINT_set_Jprojective_coordinates_GFp() argument
842 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) EC_POINT_get_Jprojective_coordinates_GFp() argument
860 EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) EC_POINT_set_affine_coordinates() argument
883 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) EC_POINT_set_affine_coordinates_GFp() argument
891 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) EC_POINT_set_affine_coordinates_GF2m() argument
900 EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) EC_POINT_get_affine_coordinates() argument
920 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) EC_POINT_get_affine_coordinates_GFp() argument
928 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) EC_POINT_get_affine_coordinates_GF2m() argument
937 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) EC_POINT_add() argument
952 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) EC_POINT_dbl() argument
966 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) EC_POINT_invert() argument
999 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) EC_POINT_is_on_curve() argument
1013 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) EC_POINT_cmp() argument
1028 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) EC_POINT_make_affine() argument
1041 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) EC_POINTs_make_affine() argument
1067 EC_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_POINTs_mul() argument
1114 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) EC_POINT_mul() argument
1155 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) EC_GROUP_precompute_mult() argument
1187 BN_CTX *ctx = BN_CTX_new_ex(group->libctx); ec_precompute_mont_data() local
1233 ec_field_inverse_mod_ord(const EC_GROUP *group, BIGNUM *r, const BIGNUM *x, BN_CTX *ctx) ec_field_inverse_mod_ord() argument
1294 ossl_ec_group_do_inverse_ord(const EC_GROUP *group, BIGNUM *res, const BIGNUM *x, BN_CTX *ctx) ossl_ec_group_do_inverse_ord() argument
1313 ossl_ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx) ossl_ec_point_blind_coordinates() argument
1401 ec_group_explicit_to_named(const EC_GROUP *group, OSSL_LIB_CTX *libctx, const char *propq, BN_CTX *ctx) ec_group_explicit_to_named() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/
H A Dlangsvr.go85 s.ctx, s.conn, s.client = lsp.NewServer(context.Background(), stream, &s)
86 if err := s.conn.Run(s.ctx); err != nil {
95 ctx context.Context
123 func (s *server) DidChangeWorkspaceFolders(ctx context.Context, p *lsp.DidChangeWorkspaceFoldersParams) error {
127 func (s *server) Initialized(ctx context.Context, p *lsp.InitializedParams) error {
131 func (s *server) Exit(ctx context.Context) error {
135 func (s *server) DidChangeConfiguration(ctx context.Context, p *lsp.DidChangeConfigurationParams) error {
139 func (s *server) DidOpen(ctx context.Context, p *lsp.DidOpenTextDocumentParams) error {
141 return s.processFile(ctx, p.TextDocument.URI, p.TextDocument.Text)
143 func (s *server) DidChange(ctx contex
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/
H A Dlangsvr.go85 s.ctx, s.conn, s.client = lsp.NewServer(context.Background(), stream, &s)
86 if err := s.conn.Run(s.ctx); err != nil {
95 ctx context.Context
123 func (s *server) DidChangeWorkspaceFolders(ctx context.Context, p *lsp.DidChangeWorkspaceFoldersParams) error {
127 func (s *server) Initialized(ctx context.Context, p *lsp.InitializedParams) error {
131 func (s *server) Exit(ctx context.Context) error {
135 func (s *server) DidChangeConfiguration(ctx context.Context, p *lsp.DidChangeConfigurationParams) error {
139 func (s *server) DidOpen(ctx context.Context, p *lsp.DidOpenTextDocumentParams) error {
141 return s.processFile(ctx, p.TextDocument.URI, p.TextDocument.Text)
143 func (s *server) DidChange(ctx contex
[all...]
/third_party/openssl/crypto/asn1/
H A Dtasn_dec.c30 int tag, int aclass, char opt, ASN1_TLC *ctx,
45 int exptag, int expclass, char opt, ASN1_TLC *ctx);
50 ASN1_TLC *ctx, int depth, OSSL_LIB_CTX *libctx,
55 ASN1_TLC *ctx, int depth,
61 ASN1_TLC *ctx);
109 int aclass, char opt, ASN1_TLC *ctx, in asn1_item_ex_d2i_intern()
118 rv = asn1_item_embed_d2i(pval, in, len, it, tag, aclass, opt, ctx, 0, in asn1_item_ex_d2i_intern()
127 int tag, int aclass, char opt, ASN1_TLC *ctx) in ASN1_item_ex_d2i()
129 return asn1_item_ex_d2i_intern(pval, in, len, it, tag, aclass, opt, ctx, in ASN1_item_ex_d2i()
164 int tag, int aclass, char opt, ASN1_TLC *ctx, in asn1_item_embed_d2i()
107 asn1_item_ex_d2i_intern(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx, OSSL_LIB_CTX *libctx, const char *propq) asn1_item_ex_d2i_intern() argument
125 ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) ASN1_item_ex_d2i() argument
162 asn1_item_embed_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx, int depth, OSSL_LIB_CTX *libctx, const char *propq) asn1_item_embed_d2i() argument
496 asn1_template_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long inlen, const ASN1_TEMPLATE *tt, char opt, ASN1_TLC *ctx, int depth, OSSL_LIB_CTX *libctx, const char *propq) asn1_template_ex_d2i() argument
568 asn1_template_noexp_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_TEMPLATE *tt, char opt, ASN1_TLC *ctx, int depth, OSSL_LIB_CTX *libctx, const char *propq) asn1_template_noexp_d2i() argument
698 asn1_d2i_ex_primitive(ASN1_VALUE **pval, const unsigned char **in, long inlen, const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx) asn1_d2i_ex_primitive() argument
1135 asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, char *inf, char *cst, const unsigned char **in, long len, int exptag, int expclass, char opt, ASN1_TLC *ctx) asn1_check_tlen() argument
[all...]
/third_party/spirv-tools/utils/vscode/src/
H A Dlangsvr.go85 s.ctx, s.conn, s.client = lsp.NewServer(context.Background(), stream, &s)
86 if err := s.conn.Run(s.ctx); err != nil {
95 ctx context.Context
123 func (s *server) DidChangeWorkspaceFolders(ctx context.Context, p *lsp.DidChangeWorkspaceFoldersParams) error {
127 func (s *server) Initialized(ctx context.Context, p *lsp.InitializedParams) error {
131 func (s *server) Exit(ctx context.Context) error {
135 func (s *server) DidChangeConfiguration(ctx context.Context, p *lsp.DidChangeConfigurationParams) error {
139 func (s *server) DidOpen(ctx context.Context, p *lsp.DidOpenTextDocumentParams) error {
141 return s.processFile(ctx, p.TextDocument.URI, p.TextDocument.Text)
143 func (s *server) DidChange(ctx contex
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dibss_rsn.c48 static void supp_set_state(void *ctx, enum wpa_states state) in supp_set_state() argument
50 struct ibss_rsn_peer *peer = ctx; in supp_set_state()
55 static enum wpa_states supp_get_state(void *ctx) in supp_get_state() argument
57 struct ibss_rsn_peer *peer = ctx; in supp_get_state()
62 static int supp_ether_send(void *ctx, const u8 *dest, u16 proto, const u8 *buf, in supp_ether_send() argument
65 struct ibss_rsn_peer *peer = ctx; in supp_ether_send()
85 static u8 * supp_alloc_eapol(void *ctx, u8 type, const void *data, in supp_alloc_eapol() argument
114 static int supp_get_beacon_ie(void *ctx) in supp_get_beacon_ie() argument
116 struct ibss_rsn_peer *peer = ctx; in supp_get_beacon_ie()
145 static int supp_set_key(void *ctx, in supp_set_key() argument
188 supp_get_network_ctx(void *ctx) supp_get_network_ctx() argument
195 supp_mlme_setprotection(void *ctx, const u8 *addr, int protection_type, int key_type) supp_mlme_setprotection() argument
205 supp_cancel_auth_timeout(void *ctx) supp_cancel_auth_timeout() argument
211 supp_deauthenticate(void *ctx, u16 reason_code) supp_deauthenticate() argument
217 supp_reconnect(void *ctx) supp_reconnect() argument
226 struct wpa_sm_ctx *ctx = os_zalloc(sizeof(*ctx)); ibss_rsn_supp_init() local
272 auth_logger(void *ctx, const u8 *addr, logger_level level, const char *txt) auth_logger() argument
283 auth_get_psk(void *ctx, const u8 *addr, const u8 *p2p_dev_addr, const u8 *prev_psk, size_t *psk_len, int *vlan_id) auth_get_psk() argument
301 auth_send_eapol(void *ctx, const u8 *addr, const u8 *data, size_t data_len, int encrypt) auth_send_eapol() argument
323 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) auth_set_key() argument
372 ibss_rsn_disconnect(void *ctx, const u8 *addr, u16 reason) ibss_rsn_disconnect() argument
379 auth_for_each_sta(void *ctx, int (*cb)(struct wpa_state_machine *sm, void *ctx), void *cb_ctx) auth_for_each_sta() argument
423 auth_set_eapol(void *ctx, const u8 *addr, wpa_eapol_variable var, int value) auth_set_eapol() argument
[all...]
/base/security/device_auth/deps_adapter/key_management_adapter/impl/src/standard/
H A Dcrypto_hash_to_point.c94 static void HcBnCTXFree(BN_CTX *ctx) in HcBnCTXFree() argument
96 if (ctx == NULL) { in HcBnCTXFree()
99 BN_CTX_free(ctx); in HcBnCTXFree()
159 const struct CurveConstPara *curvePara, BIGNUM *b, BN_CTX *ctx) in CurveHashToPointCalcB()
171 if (BN_mul(b, swap, swap, ctx) <= 0) { in CurveHashToPointCalcB()
174 if (BN_mod(b, b, curvePara->p, ctx) <= 0) { in CurveHashToPointCalcB()
177 if (BN_mul(swap, b, curvePara->u, ctx) <= 0) { in CurveHashToPointCalcB()
180 if (BN_mod(swap, swap, curvePara->p, ctx) <= 0) { in CurveHashToPointCalcB()
186 if (BN_mod(b, b, curvePara->p, ctx) <= 0) { in CurveHashToPointCalcB()
189 if (BN_mod_inverse(swap, b, curvePara->p, ctx) < in CurveHashToPointCalcB()
158 CurveHashToPointCalcB(const struct HksBlob *hash, const struct CurveConstPara *curvePara, BIGNUM *b, BN_CTX *ctx) CurveHashToPointCalcB() argument
204 CurveHashToPointCalcA(const BIGNUM *b, const struct CurveConstPara *curvePara, BIGNUM *a, BN_CTX *ctx) CurveHashToPointCalcA() argument
258 CurveHashToPointCalcC(const BIGNUM *a, BIGNUM *b, const struct CurveConstPara *curvePara, BIGNUM *c, BN_CTX *ctx) CurveHashToPointCalcC() argument
340 BN_CTX *ctx = BN_CTX_new(); CurveHashToPoint() local
[all...]
/kernel/linux/linux-5.10/net/mac80211/
H A Dtkip.c82 static void tkip_mixing_phase1(const u8 *tk, struct tkip_ctx *ctx, in tkip_mixing_phase1() argument
86 u16 *p1k = ctx->p1k; in tkip_mixing_phase1()
102 ctx->state = TKIP_STATE_PHASE1_DONE; in tkip_mixing_phase1()
103 ctx->p1k_iv32 = tsc_IV32; in tkip_mixing_phase1()
106 static void tkip_mixing_phase2(const u8 *tk, struct tkip_ctx *ctx, in tkip_mixing_phase2() argument
110 const u16 *p1k = ctx->p1k; in tkip_mixing_phase2()
155 struct tkip_ctx *ctx = &key->u.tkip.tx; in ieee80211_compute_tkip_p1k() local
167 if (ctx->p1k_iv32 != iv32 || ctx->state == TKIP_STATE_NOT_INIT) in ieee80211_compute_tkip_p1k()
168 tkip_mixing_phase1(tk, ctx, sdat in ieee80211_compute_tkip_p1k()
176 struct tkip_ctx *ctx = &key->u.tkip.tx; ieee80211_get_tkip_p1k_iv() local
189 struct tkip_ctx ctx; ieee80211_get_tkip_rx_p1k() local
202 struct tkip_ctx *ctx = &key->u.tkip.tx; ieee80211_get_tkip_p2k() local
222 ieee80211_tkip_encrypt_data(struct arc4_ctx *ctx, struct ieee80211_key *key, struct sk_buff *skb, u8 *payload, size_t payload_len) ieee80211_tkip_encrypt_data() argument
239 ieee80211_tkip_decrypt_data(struct arc4_ctx *ctx, struct ieee80211_key *key, u8 *payload, size_t payload_len, u8 *ta, u8 *ra, int only_iv, int queue, u32 *out_iv32, u16 *out_iv16) ieee80211_tkip_decrypt_data() argument
[all...]
/kernel/linux/linux-6.6/fs/erofs/
H A Ddecompressor.c65 static int z_erofs_lz4_prepare_dstpages(struct z_erofs_lz4_decompress_ctx *ctx, in z_erofs_lz4_prepare_dstpages() argument
68 struct z_erofs_decompress_req *rq = ctx->rq; in z_erofs_lz4_prepare_dstpages()
78 for (i = j = 0; i < ctx->outpages; ++i, ++j) { in z_erofs_lz4_prepare_dstpages()
124 static void *z_erofs_lz4_handle_overlap(struct z_erofs_lz4_decompress_ctx *ctx, in z_erofs_lz4_handle_overlap() argument
128 struct z_erofs_decompress_req *rq = ctx->rq; in z_erofs_lz4_handle_overlap()
134 omargin = PAGE_ALIGN(ctx->oend) - ctx->oend; in z_erofs_lz4_handle_overlap()
139 for (i = 0; i < ctx->inpages; ++i) in z_erofs_lz4_handle_overlap()
140 if (rq->out[ctx->outpages - ctx in z_erofs_lz4_handle_overlap()
207 z_erofs_lz4_decompress_mem(struct z_erofs_lz4_decompress_ctx *ctx, u8 *dst) z_erofs_lz4_decompress_mem() argument
280 struct z_erofs_lz4_decompress_ctx ctx; z_erofs_lz4_decompress() local
[all...]
/kernel/linux/linux-6.6/net/mac80211/
H A Dtkip.c82 static void tkip_mixing_phase1(const u8 *tk, struct tkip_ctx *ctx, in tkip_mixing_phase1() argument
86 u16 *p1k = ctx->p1k; in tkip_mixing_phase1()
102 ctx->state = TKIP_STATE_PHASE1_DONE; in tkip_mixing_phase1()
103 ctx->p1k_iv32 = tsc_IV32; in tkip_mixing_phase1()
106 static void tkip_mixing_phase2(const u8 *tk, struct tkip_ctx *ctx, in tkip_mixing_phase2() argument
110 const u16 *p1k = ctx->p1k; in tkip_mixing_phase2()
155 struct tkip_ctx *ctx = &key->u.tkip.tx; in ieee80211_compute_tkip_p1k() local
167 if (ctx->p1k_iv32 != iv32 || ctx->state == TKIP_STATE_NOT_INIT) in ieee80211_compute_tkip_p1k()
168 tkip_mixing_phase1(tk, ctx, sdat in ieee80211_compute_tkip_p1k()
176 struct tkip_ctx *ctx = &key->u.tkip.tx; ieee80211_get_tkip_p1k_iv() local
189 struct tkip_ctx ctx; ieee80211_get_tkip_rx_p1k() local
202 struct tkip_ctx *ctx = &key->u.tkip.tx; ieee80211_get_tkip_p2k() local
222 ieee80211_tkip_encrypt_data(struct arc4_ctx *ctx, struct ieee80211_key *key, struct sk_buff *skb, u8 *payload, size_t payload_len) ieee80211_tkip_encrypt_data() argument
239 ieee80211_tkip_decrypt_data(struct arc4_ctx *ctx, struct ieee80211_key *key, u8 *payload, size_t payload_len, u8 *ta, u8 *ra, int only_iv, int queue, u32 *out_iv32, u16 *out_iv16) ieee80211_tkip_decrypt_data() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_limitdiff.c130 AVFilterContext *ctx = inlink->dst; in config_input() local
131 LimitDiffContext *s = ctx->priv; in config_input()
159 static int limitdiff_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) in limitdiff_slice() argument
161 LimitDiffContext *s = ctx->priv; in limitdiff_slice()
202 AVFilterContext *ctx = fs->parent; in process_frame() local
204 AVFilterLink *outlink = ctx->outputs[0]; in process_frame()
216 if (ctx->is_disabled) { in process_frame()
233 ff_filter_execute(ctx, limitdiff_slice, &td, NULL, in process_frame()
234 FFMIN(s->planeheight[0], ff_filter_get_nb_threads(ctx))); in process_frame()
243 AVFilterContext *ctx in config_output() local
305 activate(AVFilterContext *ctx) activate() argument
311 init(AVFilterContext *ctx) init() argument
339 uninit(AVFilterContext *ctx) uninit() argument
[all...]
H A Dvf_mergeplanes.c74 static av_cold int init(AVFilterContext *ctx) in init() argument
76 MergePlanesContext *s = ctx->priv; in init()
83 av_log(ctx, AV_LOG_ERROR, "Only planar formats with more than one component are supported.\n"); in init()
97 av_log(ctx, AV_LOG_ERROR, "Mapping with out of range input and/or plane number.\n"); in init()
114 if ((ret = ff_append_inpad_free_name(ctx, &pad)) < 0) in init()
121 static int query_formats(AVFilterContext *ctx) in query_formats() argument
123 MergePlanesContext *s = ctx->priv; in query_formats()
138 if ((ret = ff_formats_ref(formats, &ctx->inputs[i]->outcfg.formats)) < 0) in query_formats()
143 (ret = ff_formats_ref(formats, &ctx->outputs[0]->incfg.formats)) < 0) in query_formats()
151 AVFilterContext *ctx in process_frame() local
182 AVFilterContext *ctx = outlink->src; config_output() local
286 activate(AVFilterContext *ctx) activate() argument
292 uninit(AVFilterContext *ctx) uninit() argument
[all...]
/third_party/mesa3d/src/gallium/frontends/dri/
H A Ddri_drawable.c50 struct dri_context *ctx = (struct dri_context *)stctx->st_manager_private; in dri_st_framebuffer_validate() local
82 drawable->allocate_textures(ctx, drawable, statts, count); in dri_st_framebuffer_validate()
122 struct dri_context *ctx = (struct dri_context *)stctx->st_manager_private; in dri_st_framebuffer_flush_front() local
127 return drawable->flush_frontbuffer(ctx, drawable, statt); in dri_st_framebuffer_flush_front()
137 struct dri_context *ctx = (struct dri_context *)stctx->st_manager_private; in dri_st_framebuffer_flush_swapbuffers() local
142 drawable->flush_swapbuffers(ctx, drawable); in dri_st_framebuffer_flush_swapbuffers()
217 dri_drawable_validate_att(struct dri_context *ctx, in dri_drawable_validate_att() argument
238 drawable->base.validate(ctx->st, &drawable->base, statts, count, NULL); in dri_drawable_validate_att()
248 struct dri_context *ctx = dri_context(pDRICtx); in dri_set_tex_buffer2() local
249 struct st_context_iface *st = ctx in dri_set_tex_buffer2()
392 dri_postprocessing(struct dri_context *ctx, struct dri_drawable *drawable, enum st_attachment_type att) dri_postprocessing() argument
404 struct dri_context *ctx; global() member
467 struct dri_context *ctx = dri_context(cPriv); dri_flush() local
[all...]
/third_party/mesa3d/src/gallium/frontends/va/
H A Dcontext.c115 VA_DRIVER_INIT_FUNC(VADriverContextP ctx) in VA_DRIVER_INIT_FUNC() argument
119 if (!ctx) in VA_DRIVER_INIT_FUNC()
126 switch (ctx->display_type) { in VA_DRIVER_INIT_FUNC()
132 drv->vscreen = vl_dri3_screen_create(ctx->native_dpy, ctx->x11_screen); in VA_DRIVER_INIT_FUNC()
134 drv->vscreen = vl_dri2_screen_create(ctx->native_dpy, ctx->x11_screen); in VA_DRIVER_INIT_FUNC()
136 drv->vscreen = vl_xlib_swrast_screen_create(ctx->native_dpy, ctx->x11_screen); in VA_DRIVER_INIT_FUNC()
141 const struct drm_state *drm_info = (struct drm_state *) ctx in VA_DRIVER_INIT_FUNC()
225 vlVaCreateContext(VADriverContextP ctx, VAConfigID config_id, int picture_width, int picture_height, int flag, VASurfaceID *render_targets, int num_render_targets, VAContextID *context_id) vlVaCreateContext() argument
355 vlVaDestroyContext(VADriverContextP ctx, VAContextID context_id) vlVaDestroyContext() argument
411 vlVaTerminate(VADriverContextP ctx) vlVaTerminate() argument
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_atom_array.cpp89 struct gl_context *ctx = st->ctx; in setup_arrays() local
111 _mesa_get_bufferobj_reference(ctx, binding->BufferObj); in setup_arrays()
144 _mesa_get_bufferobj_reference(ctx, binding->BufferObj); in setup_arrays()
189 struct gl_context *ctx = st->ctx; in st_setup_arrays() local
192 (st, ctx->Array._DrawVAO, vp->Base.DualSlotInputs, in st_setup_arrays()
193 vp_variant->vert_attrib_mask, _mesa_draw_nonzero_divisor_bits(ctx), in st_setup_arrays()
194 _mesa_draw_array_bits(ctx), _mesa_draw_user_array_bits(ctx), in st_setup_arrays()
211 struct gl_context *ctx = st->ctx; st_setup_current() local
275 struct gl_context *ctx = st->ctx; st_setup_current_user() local
302 struct gl_context *ctx = st->ctx; st_update_array_templ() local
359 struct gl_context *ctx = st->ctx; st_update_array_impl() local
387 st_create_gallium_vertex_state(struct gl_context *ctx, const struct gl_vertex_array_object *vao, struct gl_buffer_object *indexbuf, uint32_t enabled_attribs) st_create_gallium_vertex_state() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_context.h180 typedef void (*pipe_draw_vertex_state_func)(struct pipe_context *ctx,
410 zink_fb_clear_enabled(const struct zink_context *ctx, unsigned idx) in zink_fb_clear_enabled() argument
413 return ctx->clears_enabled & PIPE_CLEAR_DEPTHSTENCIL; in zink_fb_clear_enabled()
414 return ctx->clears_enabled & (PIPE_CLEAR_COLOR0 << idx); in zink_fb_clear_enabled()
418 zink_fence_wait(struct pipe_context *ctx);
421 zink_wait_on_batch(struct zink_context *ctx, uint64_t batch_id);
424 zink_check_batch_completion(struct zink_context *ctx, uint64_t batch_id);
426 zink_get_cmdbuf(struct zink_context *ctx, struct zink_resource *src, struct zink_resource *dst);
428 zink_flush_queue(struct zink_context *ctx);
430 zink_update_fbfetch(struct zink_context *ctx);
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Dmd4-internal.c24 static void MD4Init(MD4_CTX *ctx);
25 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len);
26 static void MD4Final(unsigned char digest[MD4_DIGEST_LENGTH], MD4_CTX *ctx);
31 MD4_CTX ctx; in md4_vector() local
37 MD4Init(&ctx); in md4_vector()
39 MD4Update(&ctx, addr[i], len[i]); in md4_vector()
40 MD4Final(mac, &ctx); in md4_vector()
98 static void MD4Init(MD4_CTX *ctx) in MD4Init() argument
100 ctx->count = 0; in MD4Init()
101 ctx in MD4Init()
111 MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len) MD4Update() argument
148 MD4Pad(MD4_CTX *ctx) MD4Pad() argument
168 MD4Final(unsigned char digest[MD4_DIGEST_LENGTH], MD4_CTX *ctx) MD4Final() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/
H A Dwpa.h24 void *ctx; /* pointer to arbitrary upper level context */ member
27 void (*set_state)(void *ctx, enum wpa_states state);
28 enum wpa_states (*get_state)(void *ctx);
29 void (*deauthenticate)(void * ctx, u16 reason_code);
30 int (*set_key)(void *ctx, enum wpa_alg alg,
34 void * (*get_network_ctx)(void *ctx);
35 int (*get_bssid)(void *ctx, u8 *bssid);
36 int (*ether_send)(void *ctx, const u8 *dest, u16 proto, const u8 *buf,
38 int (*get_beacon_ie)(void *ctx);
39 void (*cancel_auth_timeout)(void *ctx);
185 wpa_sm_init(struct wpa_sm_ctx *ctx) wpa_sm_init() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dxml_libxml2.c20 void *ctx; member
53 int xml_validate(struct xml_node_ctx *ctx, xml_node_t *node, in xml_validate() argument
115 int xml_validate_dtd(struct xml_node_ctx *ctx, xml_node_t *node, in xml_validate_dtd() argument
167 void xml_node_free(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_free() argument
173 xml_node_t * xml_node_get_parent(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_get_parent() argument
179 xml_node_t * xml_node_from_buf(struct xml_node_ctx *ctx, const char *buf) in xml_node_from_buf() argument
195 const char * xml_node_get_localname(struct xml_node_ctx *ctx, in xml_node_get_localname() argument
202 char * xml_node_to_str(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_to_str() argument
245 void xml_node_detach(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_detach() argument
251 void xml_node_add_child(struct xml_node_ctx *ctx, xml_node_ argument
258 xml_node_create_root(struct xml_node_ctx *ctx, const char *ns_uri, const char *ns_prefix, xml_namespace_t **ret_ns, const char *name) xml_node_create_root() argument
281 xml_node_create(struct xml_node_ctx *ctx, xml_node_t *parent, xml_namespace_t *ns, const char *name) xml_node_create() argument
291 xml_node_create_text(struct xml_node_ctx *ctx, xml_node_t *parent, xml_namespace_t *ns, const char *name, const char *value) xml_node_create_text() argument
302 xml_node_create_text_ns(struct xml_node_ctx *ctx, xml_node_t *parent, const char *ns_uri, const char *name, const char *value) xml_node_create_text_ns() argument
317 xml_node_set_text(struct xml_node_ctx *ctx, xml_node_t *node, const char *value) xml_node_set_text() argument
325 xml_node_add_attr(struct xml_node_ctx *ctx, xml_node_t *node, xml_namespace_t *ns, const char *name, const char *value) xml_node_add_attr() argument
343 xml_node_get_attr_value(struct xml_node_ctx *ctx, xml_node_t *node, char *name) xml_node_get_attr_value() argument
351 xml_node_get_attr_value_ns(struct xml_node_ctx *ctx, xml_node_t *node, const char *ns_uri, char *name) xml_node_get_attr_value_ns() argument
359 xml_node_get_attr_value_free(struct xml_node_ctx *ctx, char *val) xml_node_get_attr_value_free() argument
366 xml_node_first_child(struct xml_node_ctx *ctx, xml_node_t *parent) xml_node_first_child() argument
373 xml_node_next_sibling(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_next_sibling() argument
380 xml_node_is_element(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_is_element() argument
386 xml_node_get_text(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_get_text() argument
394 xml_node_get_text_free(struct xml_node_ctx *ctx, char *val) xml_node_get_text_free() argument
401 xml_node_get_base64_text(struct xml_node_ctx *ctx, xml_node_t *node, int *ret_len) xml_node_get_base64_text() argument
429 xml_node_copy(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_copy() argument
453 xml_node_deinit_ctx(struct xml_node_ctx *ctx) xml_node_deinit_ctx() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dmd4-internal.c24 static void MD4Init(MD4_CTX *ctx);
25 static void MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len);
26 static void MD4Final(unsigned char digest[MD4_DIGEST_LENGTH], MD4_CTX *ctx);
31 MD4_CTX ctx; in md4_vector() local
37 MD4Init(&ctx); in md4_vector()
39 MD4Update(&ctx, addr[i], len[i]); in md4_vector()
40 MD4Final(mac, &ctx); in md4_vector()
98 static void MD4Init(MD4_CTX *ctx) in MD4Init() argument
100 ctx->count = 0; in MD4Init()
101 ctx in MD4Init()
111 MD4Update(MD4_CTX *ctx, const unsigned char *input, size_t len) MD4Update() argument
148 MD4Pad(MD4_CTX *ctx) MD4Pad() argument
168 MD4Final(unsigned char digest[MD4_DIGEST_LENGTH], MD4_CTX *ctx) MD4Final() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dxml_libxml2.c20 void *ctx; member
53 int xml_validate(struct xml_node_ctx *ctx, xml_node_t *node, in xml_validate() argument
115 int xml_validate_dtd(struct xml_node_ctx *ctx, xml_node_t *node, in xml_validate_dtd() argument
167 void xml_node_free(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_free() argument
173 xml_node_t * xml_node_get_parent(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_get_parent() argument
179 xml_node_t * xml_node_from_buf(struct xml_node_ctx *ctx, const char *buf) in xml_node_from_buf() argument
195 const char * xml_node_get_localname(struct xml_node_ctx *ctx, in xml_node_get_localname() argument
202 char * xml_node_to_str(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_to_str() argument
245 void xml_node_detach(struct xml_node_ctx *ctx, xml_node_t *node) in xml_node_detach() argument
251 void xml_node_add_child(struct xml_node_ctx *ctx, xml_node_ argument
258 xml_node_create_root(struct xml_node_ctx *ctx, const char *ns_uri, const char *ns_prefix, xml_namespace_t **ret_ns, const char *name) xml_node_create_root() argument
281 xml_node_create(struct xml_node_ctx *ctx, xml_node_t *parent, xml_namespace_t *ns, const char *name) xml_node_create() argument
291 xml_node_create_text(struct xml_node_ctx *ctx, xml_node_t *parent, xml_namespace_t *ns, const char *name, const char *value) xml_node_create_text() argument
302 xml_node_create_text_ns(struct xml_node_ctx *ctx, xml_node_t *parent, const char *ns_uri, const char *name, const char *value) xml_node_create_text_ns() argument
317 xml_node_set_text(struct xml_node_ctx *ctx, xml_node_t *node, const char *value) xml_node_set_text() argument
325 xml_node_add_attr(struct xml_node_ctx *ctx, xml_node_t *node, xml_namespace_t *ns, const char *name, const char *value) xml_node_add_attr() argument
343 xml_node_get_attr_value(struct xml_node_ctx *ctx, xml_node_t *node, char *name) xml_node_get_attr_value() argument
351 xml_node_get_attr_value_ns(struct xml_node_ctx *ctx, xml_node_t *node, const char *ns_uri, char *name) xml_node_get_attr_value_ns() argument
359 xml_node_get_attr_value_free(struct xml_node_ctx *ctx, char *val) xml_node_get_attr_value_free() argument
366 xml_node_first_child(struct xml_node_ctx *ctx, xml_node_t *parent) xml_node_first_child() argument
373 xml_node_next_sibling(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_next_sibling() argument
380 xml_node_is_element(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_is_element() argument
386 xml_node_get_text(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_get_text() argument
394 xml_node_get_text_free(struct xml_node_ctx *ctx, char *val) xml_node_get_text_free() argument
401 xml_node_get_base64_text(struct xml_node_ctx *ctx, xml_node_t *node, int *ret_len) xml_node_get_base64_text() argument
429 xml_node_copy(struct xml_node_ctx *ctx, xml_node_t *node) xml_node_copy() argument
453 xml_node_deinit_ctx(struct xml_node_ctx *ctx) xml_node_deinit_ctx() argument
[all...]
/third_party/node/lib/
H A Dfs.js252 const ctx = { path };
253 binding.access(pathModule.toNamespacedPath(path), mode, undefined, ctx);
254 handleErrorFromBinding(ctx);
301 const ctx = { path };
303 binding.access(nPath, F_OK, undefined, ctx);
308 if (isWindows && ctx.errno === undefined) {
309 binding.stat(nPath, false, undefined, ctx);
312 return ctx.errno === undefined;
416 const ctx = {};
417 const stats = binding.fstat(fd, false, undefined, ctx);
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn31/
H A Ddcn31_resource.c914 struct dc_context *ctx, in dcn31_dpp_create()
923 if (dpp3_construct(dpp, ctx, inst, in dcn31_dpp_create()
933 struct dc_context *ctx, uint32_t inst) in dcn31_opp_create()
943 dcn20_opp_construct(opp, ctx, inst, in dcn31_opp_create()
949 struct dc_context *ctx, in dcn31_aux_engine_create()
958 dce110_aux_engine_construct(aux_engine, ctx, inst, in dcn31_aux_engine_create()
963 ctx->dc->caps.extended_aux_timeout_support); in dcn31_aux_engine_create()
986 struct dc_context *ctx, in dcn31_i2c_hw_create()
995 dcn2_i2c_hw_construct(dce_i2c_hw, ctx, inst, in dcn31_i2c_hw_create()
1001 struct dc_context *ctx, in dcn31_mpc_create()
913 dcn31_dpp_create( struct dc_context *ctx, uint32_t inst) dcn31_dpp_create() argument
932 dcn31_opp_create( struct dc_context *ctx, uint32_t inst) dcn31_opp_create() argument
948 dcn31_aux_engine_create( struct dc_context *ctx, uint32_t inst) dcn31_aux_engine_create() argument
985 dcn31_i2c_hw_create( struct dc_context *ctx, uint32_t inst) dcn31_i2c_hw_create() argument
1000 dcn31_mpc_create( struct dc_context *ctx, int num_mpcc, int num_rmu) dcn31_mpc_create() argument
1021 dcn31_hubbub_create(struct dc_context *ctx) dcn31_hubbub_create() argument
1053 dcn31_timing_generator_create( struct dc_context *ctx, uint32_t instance) dcn31_timing_generator_create() argument
1087 dcn31_link_encoder_create( struct dc_context *ctx, const struct encoder_init_data *enc_init_data) dcn31_link_encoder_create() argument
1113 dcn31_link_enc_create_minimal( struct dc_context *ctx, enum engine_id eng_id) dcn31_link_enc_create_minimal() argument
1148 read_dce_straps( struct dc_context *ctx, struct resource_straps *straps) read_dce_straps() argument
1157 dcn31_create_audio( struct dc_context *ctx, unsigned int inst) dcn31_create_audio() argument
1164 dcn31_vpg_create( struct dc_context *ctx, uint32_t inst) dcn31_vpg_create() argument
1181 dcn31_afmt_create( struct dc_context *ctx, uint32_t inst) dcn31_afmt_create() argument
1200 dcn31_apg_create( struct dc_context *ctx, uint32_t inst) dcn31_apg_create() argument
1217 dcn31_stream_encoder_create( enum engine_id eng_id, struct dc_context *ctx) dcn31_stream_encoder_create() argument
1253 dcn31_hpo_dp_stream_encoder_create( enum engine_id eng_id, struct dc_context *ctx) dcn31_hpo_dp_stream_encoder_create() argument
1303 dcn31_hpo_dp_link_encoder_create( uint8_t inst, struct dc_context *ctx) dcn31_hpo_dp_link_encoder_create() argument
1319 dcn31_hwseq_create( struct dc_context *ctx) dcn31_hwseq_create() argument
1491 dcn31_hubp_create( struct dc_context *ctx, uint32_t inst) dcn31_hubp_create() argument
1510 dcn31_dwbc_create(struct dc_context *ctx, struct resource_pool *pool) dcn31_dwbc_create() argument
1535 dcn31_mmhubbub_create(struct dc_context *ctx, struct resource_pool *pool) dcn31_mmhubbub_create() argument
1560 dcn31_dsc_create( struct dc_context *ctx, uint32_t inst) dcn31_dsc_create() argument
1584 dcn31_clock_source_create( struct dc_context *ctx, struct dc_bios *bios, enum clock_source_id id, const struct dce110_clk_src_regs *regs, bool dp_clk_src) dcn31_clock_source_create() argument
1840 dcn30_clock_source_create( struct dc_context *ctx, struct dc_bios *bios, enum clock_source_id id, const struct dce110_clk_src_regs *regs, bool dp_clk_src) dcn30_clock_source_create() argument
1869 struct dc_context *ctx = dc->ctx; dcn31_resource_construct() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_lib.c317 BN_CTX *ctx = NULL; in ec_guess_cofactor() local
331 if ((ctx = BN_CTX_new_ex(group->libctx)) == NULL) in ec_guess_cofactor()
334 BN_CTX_start(ctx); in ec_guess_cofactor()
335 if ((q = BN_CTX_get(ctx)) == NULL) in ec_guess_cofactor()
354 || !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx)) in ec_guess_cofactor()
358 BN_CTX_end(ctx); in ec_guess_cofactor()
359 BN_CTX_free(ctx); in ec_guess_cofactor()
443 int EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) in EC_GROUP_get_order() argument
464 BN_CTX *ctx) in EC_GROUP_get_cofactor()
556 const BIGNUM *b, BN_CTX *ctx) in EC_GROUP_set_curve()
463 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) EC_GROUP_get_cofactor() argument
555 EC_GROUP_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) EC_GROUP_set_curve() argument
565 EC_GROUP_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) EC_GROUP_get_curve() argument
576 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) EC_GROUP_set_curve_GFp() argument
582 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) EC_GROUP_get_curve_GFp() argument
589 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) EC_GROUP_set_curve_GF2m() argument
595 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) EC_GROUP_get_curve_GF2m() argument
612 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) EC_GROUP_check_discriminant() argument
621 EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx) EC_GROUP_cmp() argument
825 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) EC_POINT_set_Jprojective_coordinates_GFp() argument
842 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) EC_POINT_get_Jprojective_coordinates_GFp() argument
860 EC_POINT_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) EC_POINT_set_affine_coordinates() argument
883 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) EC_POINT_set_affine_coordinates_GFp() argument
891 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) EC_POINT_set_affine_coordinates_GF2m() argument
900 EC_POINT_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) EC_POINT_get_affine_coordinates() argument
920 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) EC_POINT_get_affine_coordinates_GFp() argument
928 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) EC_POINT_get_affine_coordinates_GF2m() argument
937 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) EC_POINT_add() argument
952 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) EC_POINT_dbl() argument
966 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) EC_POINT_invert() argument
999 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) EC_POINT_is_on_curve() argument
1013 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) EC_POINT_cmp() argument
1028 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) EC_POINT_make_affine() argument
1041 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) EC_POINTs_make_affine() argument
1067 EC_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_POINTs_mul() argument
1114 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) EC_POINT_mul() argument
1155 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) EC_GROUP_precompute_mult() argument
1187 BN_CTX *ctx = BN_CTX_new_ex(group->libctx); ec_precompute_mont_data() local
1233 ec_field_inverse_mod_ord(const EC_GROUP *group, BIGNUM *r, const BIGNUM *x, BN_CTX *ctx) ec_field_inverse_mod_ord() argument
1294 ossl_ec_group_do_inverse_ord(const EC_GROUP *group, BIGNUM *res, const BIGNUM *x, BN_CTX *ctx) ossl_ec_group_do_inverse_ord() argument
1313 ossl_ec_point_blind_coordinates(const EC_GROUP *group, EC_POINT *p, BN_CTX *ctx) ossl_ec_point_blind_coordinates() argument
1401 ec_group_explicit_to_named(const EC_GROUP *group, OSSL_LIB_CTX *libctx, const char *propq, BN_CTX *ctx) ec_group_explicit_to_named() argument
[all...]

Completed in 22 milliseconds

1...<<111112113114115116117118119120>>...513