Home
last modified time | relevance | path

Searched refs:ctx (Results 2826 - 2850 of 7329) sorted by relevance

1...<<111112113114115116117118119120>>...294

/third_party/mbedtls/include/mbedtls/
H A Dsha3.h61 * \param ctx The SHA-3 context to initialize. This must not be \c NULL.
63 void mbedtls_sha3_init(mbedtls_sha3_context *ctx);
68 * \param ctx The SHA-3 context to clear. This may be \c NULL, in which
72 void mbedtls_sha3_free(mbedtls_sha3_context *ctx);
87 * \param ctx The context to use. This must be initialized.
93 int mbedtls_sha3_starts(mbedtls_sha3_context *ctx, mbedtls_sha3_id id);
99 * \param ctx The SHA-3 context. This must be initialized
108 int mbedtls_sha3_update(mbedtls_sha3_context *ctx,
116 * \param ctx The SHA-3 context. This must be initialized
127 int mbedtls_sha3_finish(mbedtls_sha3_context *ctx,
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dir_expression_flattening.cpp75 void *ctx = ralloc_parent(ir); in handle_rvalue() local
77 var = new(ctx) ir_variable(ir->type, "flattening_tmp", ir_var_temporary); in handle_rvalue()
80 assign = new(ctx) ir_assignment(new(ctx) ir_dereference_variable(var), ir); in handle_rvalue()
83 *rvalue = new(ctx) ir_dereference_variable(var); in handle_rvalue()
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_query.c42 i915_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) in i915_create_query() argument
50 i915_destroy_query(struct pipe_context *ctx, struct pipe_query *query) in i915_destroy_query() argument
56 i915_begin_query(struct pipe_context *ctx, struct pipe_query *query) in i915_begin_query() argument
62 i915_end_query(struct pipe_context *ctx, struct pipe_query *query) in i915_end_query() argument
68 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, in i915_get_query_result() argument
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_query.c43 lima_create_query(struct pipe_context *ctx, unsigned query_type, unsigned index) in lima_create_query() argument
52 lima_destroy_query(struct pipe_context *ctx, struct pipe_query *query) in lima_destroy_query() argument
58 lima_begin_query(struct pipe_context *ctx, struct pipe_query *query) in lima_begin_query() argument
64 lima_end_query(struct pipe_context *ctx, struct pipe_query *query) in lima_end_query() argument
70 lima_get_query_result(struct pipe_context *ctx, struct pipe_query *query, in lima_get_query_result() argument
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_blowfish.c29 PROV_BLOWFISH_CTX *ctx = (PROV_BLOWFISH_CTX *)vctx; in blowfish_freectx() local
32 OPENSSL_clear_free(ctx, sizeof(*ctx)); in blowfish_freectx()
35 static void *blowfish_dupctx(void *ctx) in blowfish_dupctx() argument
37 PROV_BLOWFISH_CTX *in = (PROV_BLOWFISH_CTX *)ctx; in blowfish_dupctx()
H A Dcipher_cast5.c30 PROV_CAST_CTX *ctx = (PROV_CAST_CTX *)vctx; in cast5_freectx() local
33 OPENSSL_clear_free(ctx, sizeof(*ctx)); in cast5_freectx()
36 static void *cast5_dupctx(void *ctx) in cast5_dupctx() argument
38 PROV_CAST_CTX *in = (PROV_CAST_CTX *)ctx; in cast5_dupctx()
H A Dcipher_sm4.c21 PROV_SM4_CTX *ctx = (PROV_SM4_CTX *)vctx; in sm4_freectx() local
24 OPENSSL_clear_free(ctx, sizeof(*ctx)); in sm4_freectx()
27 static void *sm4_dupctx(void *ctx) in sm4_dupctx() argument
29 PROV_SM4_CTX *in = (PROV_SM4_CTX *)ctx; in sm4_dupctx()
/third_party/node/deps/openssl/openssl/crypto/ocsp/
H A Docsp_http.c54 OSSL_HTTP_REQ_CTX *ctx; in OCSP_sendreq_bio() local
57 ctx = OCSP_sendreq_new(b, path, req, 0 /* default buf_size */); in OCSP_sendreq_bio()
58 if (ctx == NULL) in OCSP_sendreq_bio()
60 mem = OSSL_HTTP_REQ_CTX_exchange(ctx); in OCSP_sendreq_bio()
65 OSSL_HTTP_REQ_CTX_free(ctx); in OCSP_sendreq_bio()
/third_party/python/Include/cpython/
H A Dpymem.h49 void *ctx; member
52 void* (*malloc) (void *ctx, size_t size);
55 void* (*calloc) (void *ctx, size_t nelem, size_t elsize);
58 void* (*realloc) (void *ctx, void *ptr, size_t new_size);
61 void (*free) (void *ctx, void *ptr);
/third_party/openssl/crypto/ocsp/
H A Docsp_http.c54 OSSL_HTTP_REQ_CTX *ctx; in OCSP_sendreq_bio() local
57 ctx = OCSP_sendreq_new(b, path, req, 0 /* default buf_size */); in OCSP_sendreq_bio()
58 if (ctx == NULL) in OCSP_sendreq_bio()
60 mem = OSSL_HTTP_REQ_CTX_exchange(ctx); in OCSP_sendreq_bio()
65 OSSL_HTTP_REQ_CTX_free(ctx); in OCSP_sendreq_bio()
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_sm4.c21 PROV_SM4_CTX *ctx = (PROV_SM4_CTX *)vctx; in sm4_freectx() local
24 OPENSSL_clear_free(ctx, sizeof(*ctx)); in sm4_freectx()
27 static void *sm4_dupctx(void *ctx) in sm4_dupctx() argument
29 PROV_SM4_CTX *in = (PROV_SM4_CTX *)ctx; in sm4_dupctx()
H A Dcipher_cast5.c30 PROV_CAST_CTX *ctx = (PROV_CAST_CTX *)vctx; in cast5_freectx() local
33 OPENSSL_clear_free(ctx, sizeof(*ctx)); in cast5_freectx()
36 static void *cast5_dupctx(void *ctx) in cast5_dupctx() argument
38 PROV_CAST_CTX *in = (PROV_CAST_CTX *)ctx; in cast5_dupctx()
H A Dcipher_blowfish.c29 PROV_BLOWFISH_CTX *ctx = (PROV_BLOWFISH_CTX *)vctx; in blowfish_freectx() local
32 OPENSSL_clear_free(ctx, sizeof(*ctx)); in blowfish_freectx()
35 static void *blowfish_dupctx(void *ctx) in blowfish_dupctx() argument
37 PROV_BLOWFISH_CTX *in = (PROV_BLOWFISH_CTX *)ctx; in blowfish_dupctx()
/third_party/skia/third_party/externals/tint/src/ast/
H A Dassignment_statement.cc39 const AssignmentStatement* AssignmentStatement::Clone(CloneContext* ctx) const { in Clone()
41 auto src = ctx->Clone(source); in Clone()
42 auto* l = ctx->Clone(lhs); in Clone()
43 auto* r = ctx->Clone(rhs); in Clone()
44 return ctx->dst->create<AssignmentStatement>(src, l, r); in Clone()
H A Dbinary_expression.cc41 const BinaryExpression* BinaryExpression::Clone(CloneContext* ctx) const { in Clone()
43 auto src = ctx->Clone(source); in Clone()
44 auto* l = ctx->Clone(lhs); in Clone()
45 auto* r = ctx->Clone(rhs); in Clone()
46 return ctx->dst->create<BinaryExpression>(src, op, l, r); in Clone()
H A Dcase_statement.cc41 const CaseStatement* CaseStatement::Clone(CloneContext* ctx) const { in Clone()
43 auto src = ctx->Clone(source); in Clone()
44 auto sel = ctx->Clone(selectors); in Clone()
45 auto* b = ctx->Clone(body); in Clone()
46 return ctx->dst->create<CaseStatement>(src, sel, b); in Clone()
H A Dindex_accessor_expression.cc41 CloneContext* ctx) const { in Clone()
43 auto src = ctx->Clone(source); in Clone()
44 auto* obj = ctx->Clone(object); in Clone()
45 auto* idx = ctx->Clone(index); in Clone()
46 return ctx->dst->create<IndexAccessorExpression>(src, obj, idx); in Clone()
H A Dmember_accessor_expression.cc42 CloneContext* ctx) const { in Clone()
44 auto src = ctx->Clone(source); in Clone()
45 auto* str = ctx->Clone(structure); in Clone()
46 auto* mem = ctx->Clone(member); in Clone()
47 return ctx->dst->create<MemberAccessorExpression>(src, str, mem); in Clone()
H A Dswitch_statement.cc41 const SwitchStatement* SwitchStatement::Clone(CloneContext* ctx) const { in Clone()
43 auto src = ctx->Clone(source); in Clone()
44 auto* cond = ctx->Clone(condition); in Clone()
45 auto b = ctx->Clone(body); in Clone()
46 return ctx->dst->create<SwitchStatement>(src, cond, b); in Clone()
/third_party/skia/experimental/wasm-skp-debugger/
H A Dgpu.js49 var ctx = DebuggerView.GetWebGLContext(canvas);
51 if (!ctx || ctx < 0) {
52 throw 'failed to create webgl context: err ' + ctx;
55 var grcontext = this.MakeGrContext(ctx);
/third_party/skia/modules/svg/src/
H A DSkSVGFeGaussianBlur.cpp21 sk_sp<SkImageFilter> SkSVGFeGaussianBlur::onMakeImageFilter(const SkSVGRenderContext& ctx, in onMakeImageFilter() argument
24 * ctx.transformForCurrentOBB(fctx.primitiveUnits()).scale; in onMakeImageFilter()
28 fctx.resolveInput(ctx, this->getIn(), this->resolveColorspace(ctx, fctx)), in onMakeImageFilter()
29 this->resolveFilterSubregion(ctx, fctx)); in onMakeImageFilter()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
H A Daes-unwrap.c31 void *ctx; in aes_unwrap() local
39 ctx = aes_decrypt_init(kek, kek_len); in aes_unwrap()
40 if (ctx == NULL) in aes_unwrap()
61 aes_decrypt(ctx, b, b); in aes_unwrap()
67 aes_decrypt_deinit(ctx); in aes_unwrap()
H A Daes-wrap.c30 void *ctx; in aes_wrap() local
40 ctx = aes_encrypt_init(kek, kek_len); in aes_wrap()
41 if (ctx == NULL) in aes_wrap()
56 aes_encrypt(ctx, b, b); in aes_wrap()
67 aes_encrypt_deinit(ctx); in aes_wrap()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dgas_server.h17 struct gas_server * gas_server_init(void *ctx,
18 void (*tx)(void *ctx, int freq,
26 (*req_cb)(void *ctx, void *resp_ctx, const u8 *sa,
29 void (*status_cb)(void *ctx, struct wpabuf *resp,
31 void *ctx);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Daes-ctr.c28 void *ctx; in aes_ctr_encrypt() local
34 ctx = aes_encrypt_init(key, key_len); in aes_ctr_encrypt()
35 if (ctx == NULL) in aes_ctr_encrypt()
40 aes_encrypt(ctx, counter, buf); in aes_ctr_encrypt()
54 aes_encrypt_deinit(ctx); in aes_ctr_encrypt()

Completed in 7 milliseconds

1...<<111112113114115116117118119120>>...294