Home
last modified time | relevance | path

Searched refs:ctx (Results 3826 - 3850 of 13041) sorted by relevance

1...<<151152153154155156157158159160>>...522

/third_party/mbedtls/include/mbedtls/
H A Dsha1.h75 * \param ctx The SHA-1 context to initialize.
79 void mbedtls_sha1_init(mbedtls_sha1_context *ctx);
88 * \param ctx The SHA-1 context to clear. This may be \c NULL,
94 void mbedtls_sha1_free(mbedtls_sha1_context *ctx);
117 * \param ctx The SHA-1 context to initialize. This must be initialized.
123 int mbedtls_sha1_starts(mbedtls_sha1_context *ctx);
133 * \param ctx The SHA-1 context. This must be initialized
142 int mbedtls_sha1_update(mbedtls_sha1_context *ctx,
154 * \param ctx The SHA-1 context to use. This must be initialized and
162 int mbedtls_sha1_finish(mbedtls_sha1_context *ctx,
[all...]
H A Dripemd160.h56 * \param ctx RIPEMD-160 context to be initialized
58 void mbedtls_ripemd160_init(mbedtls_ripemd160_context *ctx);
63 * \param ctx RIPEMD-160 context to be cleared
65 void mbedtls_ripemd160_free(mbedtls_ripemd160_context *ctx);
79 * \param ctx context to be initialized
83 int mbedtls_ripemd160_starts(mbedtls_ripemd160_context *ctx);
88 * \param ctx RIPEMD-160 context
94 int mbedtls_ripemd160_update(mbedtls_ripemd160_context *ctx,
101 * \param ctx RIPEMD-160 context
106 int mbedtls_ripemd160_finish(mbedtls_ripemd160_context *ctx,
[all...]
H A Dmd5.h65 * \param ctx MD5 context to be initialized
72 void mbedtls_md5_init(mbedtls_md5_context *ctx);
77 * \param ctx MD5 context to be cleared
84 void mbedtls_md5_free(mbedtls_md5_context *ctx);
103 * \param ctx context to be initialized
112 int mbedtls_md5_starts(mbedtls_md5_context *ctx);
117 * \param ctx MD5 context
128 int mbedtls_md5_update(mbedtls_md5_context *ctx,
135 * \param ctx MD5 context
145 int mbedtls_md5_finish(mbedtls_md5_context *ctx,
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dversion.h43 _mesa_compute_version(struct gl_context *ctx);
50 _mesa_override_gl_version(struct gl_context *ctx);
56 _mesa_get_driver_uuid(struct gl_context *ctx, GLint *uuid);
59 _mesa_get_device_uuid(struct gl_context *ctx, GLint *uuid);
62 _mesa_get_device_luid(struct gl_context *ctx, GLint *luid);
65 _mesa_get_shading_language_version(const struct gl_context *ctx,
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_atom_clip.c47 const struct gl_context *ctx = st->ctx; in st_update_clip() local
50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane)); in st_update_clip()
54 if (ctx->_Shader->CurrentProgram[MESA_SHADER_VERTEX]) in st_update_clip()
61 use_eye ? ctx->Transform.EyeUserPlane in st_update_clip()
62 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp)); in st_update_clip()
/third_party/libwebsockets/minimal-examples/embedded/esp32/esp-c3dev/main/
H A Di2c.h21 int (*start)(struct lws_i2c_ops *ctx);
22 void (*stop)(struct lws_i2c_ops *ctx);
23 int (*write)(struct lws_i2c_ops *ctx, uint8_t data);
24 int (*read)(struct lws_i2c_ops *ctx);
29 lws_i2c_command(lws_i2c_ops_t *ctx, uint8_t ads, uint8_t c);
32 lws_i2c_command_list(lws_i2c_ops_t *ctx, uint8_t ads, const uint8_t *buf, size_t len);
/third_party/mesa3d/src/util/
H A Dmesa-sha1.h39 _mesa_sha1_init(struct mesa_sha1 *ctx) in _mesa_sha1_init() argument
41 SHA1Init(ctx); in _mesa_sha1_init()
45 _mesa_sha1_update(struct mesa_sha1 *ctx, const void *data, size_t size) in _mesa_sha1_update() argument
47 SHA1Update(ctx, (const unsigned char *)data, size); in _mesa_sha1_update()
51 _mesa_sha1_final(struct mesa_sha1 *ctx, unsigned char result[20]) in _mesa_sha1_final() argument
53 SHA1Final(result, ctx); in _mesa_sha1_final()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_cast.c26 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
33 # define data(ctx) EVP_C_DATA(EVP_CAST_KEY,ctx)
40 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, in cast_init_key() argument
43 int keylen = EVP_CIPHER_CTX_get_key_length(ctx); in cast_init_key()
47 CAST_set_key(&data(ctx)->ks, keylen, key); in cast_init_key()
H A De_bf.c25 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
32 # define data(ctx) EVP_C_DATA(EVP_BF_KEY,ctx)
38 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, in bf_init_key() argument
41 int len = EVP_CIPHER_CTX_get_key_length(ctx); in bf_init_key()
45 BF_set_key(&data(ctx)->ks, len, key); in bf_init_key()
/third_party/openssl/crypto/evp/
H A De_cast.c26 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
33 # define data(ctx) EVP_C_DATA(EVP_CAST_KEY,ctx)
40 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, in cast_init_key() argument
43 int keylen = EVP_CIPHER_CTX_get_key_length(ctx); in cast_init_key()
47 CAST_set_key(&data(ctx)->ks, keylen, key); in cast_init_key()
H A De_bf.c25 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
32 # define data(ctx) EVP_C_DATA(EVP_BF_KEY,ctx)
38 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, in bf_init_key() argument
41 int len = EVP_CIPHER_CTX_get_key_length(ctx); in bf_init_key()
45 BF_set_key(&data(ctx)->ks, len, key); in bf_init_key()
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_sm4_gcm_hw.c16 static int sm4_gcm_initkey(PROV_GCM_CTX *ctx, const unsigned char *key, in sm4_gcm_initkey() argument
19 PROV_SM4_GCM_CTX *actx = (PROV_SM4_GCM_CTX *)ctx; in sm4_gcm_initkey()
22 ctx->ks = ks; in sm4_gcm_initkey()
24 CRYPTO_gcm128_init(&ctx->gcm, ks, (block128_f)ossl_sm4_encrypt); in sm4_gcm_initkey()
25 ctx->ctr = (ctr128_f)NULL; in sm4_gcm_initkey()
26 ctx->key_set = 1; in sm4_gcm_initkey()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dhmac.rs9 pub fn HMAC_CTX_free(ctx: *mut HMAC_CTX); in HMAC_CTX_free()
13 pub fn HMAC_CTX_init(ctx: *mut HMAC_CTX); in HMAC_CTX_init()
14 pub fn HMAC_CTX_cleanup(ctx: *mut HMAC_CTX); in HMAC_CTX_cleanup()
21 ctx: *mut HMAC_CTX, in HMAC_Init_ex()
27 pub fn HMAC_Update(ctx: *mut HMAC_CTX, data: *const c_uchar, len: size_t) -> c_int; in HMAC_Update()
28 pub fn HMAC_Final(ctx: *mut HMAC_CTX, md: *mut c_uchar, len: *mut c_uint) -> c_int; in HMAC_Final()
/third_party/node/deps/openssl/openssl/crypto/cms/
H A Dcms_env.c192 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); in ossl_cms_RecipientInfos_set_cmsctx() local
200 ri->d.kari->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
203 ri->d.ktri->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
205 ossl_cms_ctx_get0_libctx(ctx), in ossl_cms_RecipientInfos_set_cmsctx()
206 ossl_cms_ctx_get0_propq(ctx)); in ossl_cms_RecipientInfos_set_cmsctx()
209 ri->d.kekri->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
212 ri->d.pwri->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
300 const CMS_CTX *ctx) in cms_RecipientInfo_ktri_init()
311 ktri->cms_ctx = ctx; in cms_RecipientInfo_ktri_init()
326 if (!ossl_cms_set1_SignerIdentifier(ktri->rid, recip, idtype, ctx)) in cms_RecipientInfo_ktri_init()
298 cms_RecipientInfo_ktri_init(CMS_RecipientInfo *ri, X509 *recip, EVP_PKEY *pk, unsigned int flags, const CMS_CTX *ctx) cms_RecipientInfo_ktri_init() argument
359 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); CMS_add1_recipient() local
481 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); cms_RecipientInfo_ktri_encrypt() local
547 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); cms_RecipientInfo_ktri_decrypt() local
813 cms_get_key_wrap_cipher(size_t keylen, const CMS_CTX *ctx) cms_get_key_wrap_cipher() argument
847 EVP_CIPHER_CTX *ctx = NULL; cms_RecipientInfo_kekri_encrypt() local
918 EVP_CIPHER_CTX *ctx = NULL; cms_RecipientInfo_kekri_decrypt() local
1117 EVP_CIPHER_CTX *ctx = NULL; cms_EnvelopedData_Decryption_init_bio() local
1233 EVP_CIPHER_CTX *ctx = NULL; ossl_cms_EnvelopedData_final() local
1274 EVP_CIPHER_CTX *ctx; ossl_cms_AuthEnvelopedData_final() local
[all...]
/third_party/openssl/crypto/cms/
H A Dcms_env.c173 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); in ossl_cms_RecipientInfos_set_cmsctx() local
181 ri->d.kari->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
184 ri->d.ktri->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
186 ossl_cms_ctx_get0_libctx(ctx), in ossl_cms_RecipientInfos_set_cmsctx()
187 ossl_cms_ctx_get0_propq(ctx)); in ossl_cms_RecipientInfos_set_cmsctx()
190 ri->d.kekri->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
193 ri->d.pwri->cms_ctx = ctx; in ossl_cms_RecipientInfos_set_cmsctx()
281 const CMS_CTX *ctx) in cms_RecipientInfo_ktri_init()
292 ktri->cms_ctx = ctx; in cms_RecipientInfo_ktri_init()
307 if (!ossl_cms_set1_SignerIdentifier(ktri->rid, recip, idtype, ctx)) in cms_RecipientInfo_ktri_init()
279 cms_RecipientInfo_ktri_init(CMS_RecipientInfo *ri, X509 *recip, EVP_PKEY *pk, unsigned int flags, const CMS_CTX *ctx) cms_RecipientInfo_ktri_init() argument
340 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); CMS_add1_recipient() local
462 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); cms_RecipientInfo_ktri_encrypt() local
528 const CMS_CTX *ctx = ossl_cms_get0_cmsctx(cms); cms_RecipientInfo_ktri_decrypt() local
794 cms_get_key_wrap_cipher(size_t keylen, const CMS_CTX *ctx) cms_get_key_wrap_cipher() argument
828 EVP_CIPHER_CTX *ctx = NULL; cms_RecipientInfo_kekri_encrypt() local
899 EVP_CIPHER_CTX *ctx = NULL; cms_RecipientInfo_kekri_decrypt() local
1098 EVP_CIPHER_CTX *ctx = NULL; cms_EnvelopedData_Decryption_init_bio() local
1214 EVP_CIPHER_CTX *ctx = NULL; ossl_cms_EnvelopedData_final() local
1255 EVP_CIPHER_CTX *ctx; ossl_cms_AuthEnvelopedData_final() local
[all...]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath9k/
H A Dchannel.c105 struct ath_chanctx *ctx; in ath_chanctx_init() local
117 ctx = &sc->chanctx[i]; in ath_chanctx_init()
118 cfg80211_chandef_create(&ctx->chandef, chan, NL80211_CHAN_HT20); in ath_chanctx_init()
119 INIT_LIST_HEAD(&ctx->vifs); in ath_chanctx_init()
120 ctx->txpower = ATH_TXPOWER_MAX; in ath_chanctx_init()
121 ctx->flush_timeout = HZ / 5; /* 200ms */ in ath_chanctx_init()
122 for (j = 0; j < ARRAY_SIZE(ctx->acq); j++) { in ath_chanctx_init()
123 INIT_LIST_HEAD(&ctx->acq[j].acq_new); in ath_chanctx_init()
124 INIT_LIST_HEAD(&ctx->acq[j].acq_old); in ath_chanctx_init()
125 spin_lock_init(&ctx in ath_chanctx_init()
130 ath_chanctx_set_channel(struct ath_softc *sc, struct ath_chanctx *ctx, struct cfg80211_chan_def *chandef) ath_chanctx_set_channel() argument
159 struct ath_chanctx *ctx; ath_is_go_chanctx_present() local
247 ath_chanctx_check_active(struct ath_softc *sc, struct ath_chanctx *ctx) ath_chanctx_check_active() argument
327 ath_chanctx_get_next(struct ath_softc *sc, struct ath_chanctx *ctx) ath_chanctx_get_next() argument
389 ath_chanctx_handle_bmiss(struct ath_softc *sc, struct ath_chanctx *ctx, struct ath_vif *avp) ath_chanctx_handle_bmiss() argument
414 ath_chanctx_offchannel_noa(struct ath_softc *sc, struct ath_chanctx *ctx, struct ath_vif *avp, u32 tsf_time) ath_chanctx_offchannel_noa() argument
501 struct ath_chanctx *ctx; ath_chanctx_event() local
801 ath_chanctx_switch(struct ath_softc *sc, struct ath_chanctx *ctx, struct cfg80211_chan_def *chandef) ath_chanctx_switch() argument
864 struct ath_chanctx *ctx; ath_chanctx_get_oper_chan() local
1060 struct ath_chanctx *ctx; ath_offchannel_timer() local
1335 struct ath_chanctx *ctx; ath9k_offchannel_init() local
1385 ath9k_chanctx_stop_queues(struct ath_softc *sc, struct ath_chanctx *ctx) ath9k_chanctx_stop_queues() argument
1404 ath9k_chanctx_wake_queues(struct ath_softc *sc, struct ath_chanctx *ctx) ath9k_chanctx_wake_queues() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath9k/
H A Dchannel.c105 struct ath_chanctx *ctx; in ath_chanctx_init() local
117 ctx = &sc->chanctx[i]; in ath_chanctx_init()
118 cfg80211_chandef_create(&ctx->chandef, chan, NL80211_CHAN_HT20); in ath_chanctx_init()
119 INIT_LIST_HEAD(&ctx->vifs); in ath_chanctx_init()
120 ctx->txpower = ATH_TXPOWER_MAX; in ath_chanctx_init()
121 ctx->flush_timeout = HZ / 5; /* 200ms */ in ath_chanctx_init()
122 for (j = 0; j < ARRAY_SIZE(ctx->acq); j++) { in ath_chanctx_init()
123 INIT_LIST_HEAD(&ctx->acq[j].acq_new); in ath_chanctx_init()
124 INIT_LIST_HEAD(&ctx->acq[j].acq_old); in ath_chanctx_init()
125 spin_lock_init(&ctx in ath_chanctx_init()
130 ath_chanctx_set_channel(struct ath_softc *sc, struct ath_chanctx *ctx, struct cfg80211_chan_def *chandef) ath_chanctx_set_channel() argument
159 struct ath_chanctx *ctx; ath_is_go_chanctx_present() local
247 ath_chanctx_check_active(struct ath_softc *sc, struct ath_chanctx *ctx) ath_chanctx_check_active() argument
327 ath_chanctx_get_next(struct ath_softc *sc, struct ath_chanctx *ctx) ath_chanctx_get_next() argument
389 ath_chanctx_handle_bmiss(struct ath_softc *sc, struct ath_chanctx *ctx, struct ath_vif *avp) ath_chanctx_handle_bmiss() argument
414 ath_chanctx_offchannel_noa(struct ath_softc *sc, struct ath_chanctx *ctx, struct ath_vif *avp, u32 tsf_time) ath_chanctx_offchannel_noa() argument
501 struct ath_chanctx *ctx; ath_chanctx_event() local
801 ath_chanctx_switch(struct ath_softc *sc, struct ath_chanctx *ctx, struct cfg80211_chan_def *chandef) ath_chanctx_switch() argument
864 struct ath_chanctx *ctx; ath_chanctx_get_oper_chan() local
1060 struct ath_chanctx *ctx; ath_offchannel_timer() local
1335 struct ath_chanctx *ctx; ath9k_offchannel_init() local
1385 ath9k_chanctx_stop_queues(struct ath_softc *sc, struct ath_chanctx *ctx) ath9k_chanctx_stop_queues() argument
1404 ath9k_chanctx_wake_queues(struct ath_softc *sc, struct ath_chanctx *ctx) ath9k_chanctx_wake_queues() argument
[all...]
/third_party/python/Objects/
H A Dobmalloc.c19 static void* _PyMem_DebugRawMalloc(void *ctx, size_t size);
20 static void* _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize);
21 static void* _PyMem_DebugRawRealloc(void *ctx, void *ptr, size_t size);
22 static void _PyMem_DebugRawFree(void *ctx, void *ptr);
24 static void* _PyMem_DebugMalloc(void *ctx, size_t size);
25 static void* _PyMem_DebugCalloc(void *ctx, size_t nelem, size_t elsize);
26 static void* _PyMem_DebugRealloc(void *ctx, void *ptr, size_t size);
27 static void _PyMem_DebugFree(void *ctx, void *p);
79 static void* _PyObject_Malloc(void *ctx, size_t size);
80 static void* _PyObject_Calloc(void *ctx, size_
93 _PyMem_RawMalloc(void *ctx, size_t size) _PyMem_RawMalloc() argument
105 _PyMem_RawCalloc(void *ctx, size_t nelem, size_t elsize) _PyMem_RawCalloc() argument
119 _PyMem_RawRealloc(void *ctx, void *ptr, size_t size) _PyMem_RawRealloc() argument
127 _PyMem_RawFree(void *ctx, void *ptr) _PyMem_RawFree() argument
135 _PyObject_ArenaVirtualAlloc(void *ctx, size_t size) _PyObject_ArenaVirtualAlloc() argument
142 _PyObject_ArenaVirtualFree(void *ctx, void *ptr, size_t size) _PyObject_ArenaVirtualFree() argument
149 _PyObject_ArenaMmap(void *ctx, size_t size) _PyObject_ArenaMmap() argument
161 _PyObject_ArenaMunmap(void *ctx, void *ptr, size_t size) _PyObject_ArenaMunmap() argument
168 _PyObject_ArenaMalloc(void *ctx, size_t size) _PyObject_ArenaMalloc() argument
174 _PyObject_ArenaFree(void *ctx, void *ptr, size_t size) _PyObject_ArenaFree() argument
1948 pymalloc_alloc(void *ctx, size_t nbytes) pymalloc_alloc() argument
1996 _PyObject_Malloc(void *ctx, size_t nbytes) _PyObject_Malloc() argument
2012 _PyObject_Calloc(void *ctx, size_t nelem, size_t elsize) _PyObject_Calloc() argument
2218 pymalloc_free(void *ctx, void *p) pymalloc_free() argument
2276 _PyObject_Free(void *ctx, void *p) _PyObject_Free() argument
2301 pymalloc_realloc(void *ctx, void **newptr_p, void *p, size_t nbytes) pymalloc_realloc() argument
2362 _PyObject_Realloc(void *ctx, void *ptr, size_t nbytes) _PyObject_Realloc() argument
2479 _PyMem_DebugRawAlloc(int use_calloc, void *ctx, size_t nbytes) _PyMem_DebugRawAlloc() argument
2539 _PyMem_DebugRawMalloc(void *ctx, size_t nbytes) _PyMem_DebugRawMalloc() argument
2545 _PyMem_DebugRawCalloc(void *ctx, size_t nelem, size_t elsize) _PyMem_DebugRawCalloc() argument
2560 _PyMem_DebugRawFree(void *ctx, void *p) _PyMem_DebugRawFree() argument
2580 _PyMem_DebugRawRealloc(void *ctx, void *p, size_t nbytes) _PyMem_DebugRawRealloc() argument
2690 _PyMem_DebugMalloc(void *ctx, size_t nbytes) _PyMem_DebugMalloc() argument
2697 _PyMem_DebugCalloc(void *ctx, size_t nelem, size_t elsize) _PyMem_DebugCalloc() argument
2705 _PyMem_DebugFree(void *ctx, void *ptr) _PyMem_DebugFree() argument
2713 _PyMem_DebugRealloc(void *ctx, void *ptr, size_t nbytes) _PyMem_DebugRealloc() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvsrc_testsrc.c68 void (* fill_picture_fn)(AVFilterContext *ctx, AVFrame *frame);
118 static av_cold int init(AVFilterContext *ctx) in init() argument
120 TestSourceContext *test = ctx->priv; in init()
126 av_log(ctx, AV_LOG_VERBOSE, "size:%dx%d rate:%d/%d duration:%f sar:%d/%d\n", in init()
133 static av_cold void uninit(AVFilterContext *ctx) in uninit() argument
135 TestSourceContext *test = ctx->priv; in uninit()
153 static int activate(AVFilterContext *ctx) in activate() argument
155 AVFilterLink *outlink = ctx->outputs[0]; in activate()
156 TestSourceContext *test = ctx->priv; in activate()
210 static void color_fill_picture(AVFilterContext *ctx, AVFram argument
218 color_init(AVFilterContext *ctx) color_init() argument
226 color_query_formats(AVFilterContext *ctx) color_query_formats() argument
233 AVFilterContext *ctx = inlink->src; color_config_props() local
251 color_process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) color_process_command() argument
300 haldclutsrc_fill_picture(AVFilterContext *ctx, AVFrame *frame) haldclutsrc_fill_picture() argument
377 haldclutsrc_init(AVFilterContext *ctx) haldclutsrc_init() argument
404 AVFilterContext *ctx = outlink->src; haldclutsrc_config_props() local
437 nullsrc_fill_picture(AVFilterContext *ctx, AVFrame *picref) nullsrc_fill_picture() argument
439 nullsrc_init(AVFilterContext *ctx) nullsrc_init() argument
552 test_fill_picture(AVFilterContext *ctx, AVFrame *frame) test_fill_picture() argument
662 test_init(AVFilterContext *ctx) test_init() argument
744 test2_fill_picture(AVFilterContext *ctx, AVFrame *frame) test2_fill_picture() argument
916 test2_init(AVFilterContext *ctx) test2_init() argument
924 test2_query_formats(AVFilterContext *ctx) test2_query_formats() argument
931 AVFilterContext *ctx = inlink->src; test2_config_props() local
1035 rgbtest_fill_picture_complement(AVFilterContext *ctx, AVFrame *frame) rgbtest_fill_picture_complement() argument
1058 rgbtest_fill_picture(AVFilterContext *ctx, AVFrame *frame) rgbtest_fill_picture() argument
1078 rgbtest_init(AVFilterContext *ctx) rgbtest_init() argument
1133 yuvtest_fill_picture8(AVFilterContext *ctx, AVFrame *frame) yuvtest_fill_picture8() argument
1190 yuvtest_fill_picture16(AVFilterContext *ctx, AVFrame *frame) yuvtest_fill_picture16() argument
1247 yuvtest_init(AVFilterContext *ctx) yuvtest_init() argument
1418 pal75bars_fill_picture(AVFilterContext *ctx, AVFrame *picref) pal75bars_fill_picture() argument
1438 pal75bars_init(AVFilterContext *ctx) pal75bars_init() argument
1464 pal100bars_fill_picture(AVFilterContext *ctx, AVFrame *picref) pal100bars_fill_picture() argument
1482 pal100bars_init(AVFilterContext *ctx) pal100bars_init() argument
1510 smptebars_fill_picture(AVFilterContext *ctx, AVFrame *picref) smptebars_fill_picture() argument
1549 smptebars_init(AVFilterContext *ctx) smptebars_init() argument
1575 smptehdbars_fill_picture(AVFilterContext *ctx, AVFrame *picref) smptehdbars_fill_picture() argument
1652 smptehdbars_init(AVFilterContext *ctx) smptehdbars_init() argument
1682 allyuv_fill_picture(AVFilterContext *ctx, AVFrame *frame) allyuv_fill_picture() argument
1707 allyuv_init(AVFilterContext *ctx) allyuv_init() argument
1742 allrgb_fill_picture(AVFilterContext *ctx, AVFrame *frame) allrgb_fill_picture() argument
1760 allrgb_init(AVFilterContext *ctx) allrgb_init() argument
1829 colorspectrum_fill_picture(AVFilterContext *ctx, AVFrame *frame) colorspectrum_fill_picture() argument
1858 colorspectrum_init(AVFilterContext *ctx) colorspectrum_init() argument
1975 AVFilterContext *ctx = inlink->src; colorchart_config_props() local
1984 colorchart_fill_picture(AVFilterContext *ctx, AVFrame *frame) colorchart_fill_picture() argument
2005 colorchart_init(AVFilterContext *ctx) colorchart_init() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha256-mb-x86_64.pl92 # unsigned int H[8]; } *ctx,
96 $ctx="%rdi"; # 1st arg
293 lea 0x80($ctx),$ctx # size optimization
317 movdqu 0x00-0x80($ctx),$A # load context
319 movdqu 0x20-0x80($ctx),$B
320 movdqu 0x40-0x80($ctx),$C
321 movdqu 0x60-0x80($ctx),$D
322 movdqu 0x80-0x80($ctx),$E
323 movdqu 0xa0-0x80($ctx),
[all...]
/third_party/openssl/crypto/sha/asm/
H A Dsha256-mb-x86_64.pl92 # unsigned int H[8]; } *ctx,
96 $ctx="%rdi"; # 1st arg
293 lea 0x80($ctx),$ctx # size optimization
317 movdqu 0x00-0x80($ctx),$A # load context
319 movdqu 0x20-0x80($ctx),$B
320 movdqu 0x40-0x80($ctx),$C
321 movdqu 0x60-0x80($ctx),$D
322 movdqu 0x80-0x80($ctx),$E
323 movdqu 0xa0-0x80($ctx),
[all...]
/kernel/linux/linux-6.6/drivers/scsi/elx/libefc/
H A Defc_domain.c171 __efc_domain_common(const char *funcname, struct efc_sm_ctx *ctx, in __efc_domain_common() argument
174 struct efc_domain *domain = ctx->app; in __efc_domain_common()
193 __efc_domain_common_shutdown(const char *funcname, struct efc_sm_ctx *ctx, in __efc_domain_common_shutdown() argument
196 struct efc_domain *domain = ctx->app; in __efc_domain_common_shutdown()
224 WARN_ON(!ctx || !ctx->app);\
225 domain = ctx->app;\
230 __efc_domain_init(struct efc_sm_ctx *ctx, enum efc_sm_event evt, in __efc_domain_init() argument
300 efc_sm_transition(ctx, __efc_domain_wait_alloc, arg); in __efc_domain_init()
348 efc_sm_transition(ctx, __efc_domain_wait_allo in __efc_domain_init()
357 __efc_domain_wait_alloc(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_wait_alloc() argument
459 __efc_domain_allocated(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_allocated() argument
544 __efc_domain_wait_attach(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_wait_attach() argument
625 __efc_domain_ready(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_ready() argument
695 __efc_domain_wait_nports_free(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_wait_nports_free() argument
724 __efc_domain_wait_shutdown(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_wait_shutdown() argument
774 __efc_domain_wait_domain_lost(struct efc_sm_ctx *ctx, enum efc_sm_event evt, void *arg) __efc_domain_wait_domain_lost() argument
[all...]
/kernel/linux/linux-6.6/net/bridge/
H A Dbr_switchdev.c128 const void *ctx) in br_switchdev_fdb_populate()
139 item->info.ctx = ctx; in br_switchdev_fdb_populate()
302 unsigned long action, const void *ctx) in br_switchdev_fdb_replay_one()
307 br_switchdev_fdb_populate(br, &item, fdb, ctx); in br_switchdev_fdb_replay_one()
314 br_switchdev_fdb_replay(const struct net_device *br_dev, const void *ctx, in br_switchdev_fdb_replay() argument
338 err = br_switchdev_fdb_replay_one(br, nb, fdb, action, ctx); in br_switchdev_fdb_replay()
349 const void *ctx, in br_switchdev_vlan_attr_replay()
357 .ctx = ctx, in br_switchdev_vlan_attr_replay()
125 br_switchdev_fdb_populate(struct net_bridge *br, struct switchdev_notifier_fdb_info *item, const struct net_bridge_fdb_entry *fdb, const void *ctx) br_switchdev_fdb_populate() argument
300 br_switchdev_fdb_replay_one(struct net_bridge *br, struct notifier_block *nb, const struct net_bridge_fdb_entry *fdb, unsigned long action, const void *ctx) br_switchdev_fdb_replay_one() argument
348 br_switchdev_vlan_attr_replay(struct net_device *br_dev, const void *ctx, struct notifier_block *nb, struct netlink_ext_ack *extack) br_switchdev_vlan_attr_replay() argument
391 br_switchdev_vlan_replay_one(struct notifier_block *nb, struct net_device *dev, struct switchdev_obj_port_vlan *vlan, const void *ctx, unsigned long action, struct netlink_ext_ack *extack) br_switchdev_vlan_replay_one() argument
411 br_switchdev_vlan_replay_group(struct notifier_block *nb, struct net_device *dev, struct net_bridge_vlan_group *vg, const void *ctx, unsigned long action, struct netlink_ext_ack *extack) br_switchdev_vlan_replay_group() argument
446 br_switchdev_vlan_replay(struct net_device *br_dev, const void *ctx, bool adding, struct notifier_block *nb, struct netlink_ext_ack *extack) br_switchdev_vlan_replay() argument
578 br_switchdev_mdb_replay_one(struct notifier_block *nb, struct net_device *dev, const struct switchdev_obj_port_mdb *mdb, unsigned long action, const void *ctx, struct netlink_ext_ack *extack) br_switchdev_mdb_replay_one() argument
674 br_switchdev_mdb_replay(struct net_device *br_dev, struct net_device *dev, const void *ctx, bool adding, struct notifier_block *nb, struct netlink_ext_ack *extack) br_switchdev_mdb_replay() argument
767 nbp_switchdev_sync_objs(struct net_bridge_port *p, const void *ctx, struct notifier_block *atomic_nb, struct notifier_block *blocking_nb, struct netlink_ext_ack *extack) nbp_switchdev_sync_objs() argument
794 nbp_switchdev_unsync_objs(struct net_bridge_port *p, const void *ctx, struct notifier_block *atomic_nb, struct notifier_block *blocking_nb) nbp_switchdev_unsync_objs() argument
822 br_switchdev_port_offload(struct net_bridge_port *p, struct net_device *dev, const void *ctx, struct notifier_block *atomic_nb, struct notifier_block *blocking_nb, bool tx_fwd_offload, struct netlink_ext_ack *extack) br_switchdev_port_offload() argument
852 br_switchdev_port_unoffload(struct net_bridge_port *p, const void *ctx, struct notifier_block *atomic_nb, struct notifier_block *blocking_nb) br_switchdev_port_unoffload() argument
861 br_switchdev_port_replay(struct net_bridge_port *p, struct net_device *dev, const void *ctx, struct notifier_block *atomic_nb, struct notifier_block *blocking_nb, struct netlink_ext_ack *extack) br_switchdev_port_replay() argument
[all...]
/third_party/ffmpeg/libavdevice/
H A Dpulse_audio_enc.c49 pa_context *ctx; member
57 static void pulse_audio_sink_device_cb(pa_context *ctx, const pa_sink_info *dev, in pulse_audio_sink_device_cb() argument
62 if (s->ctx != ctx) in pulse_audio_sink_device_cb()
81 if (!(op = pa_context_get_sink_info_by_name(s->ctx, s->device, in pulse_update_sink_info()
92 static void pulse_audio_sink_input_cb(pa_context *ctx, const pa_sink_input_info *i, in pulse_audio_sink_input_cb() argument
98 if (s->ctx != ctx) in pulse_audio_sink_input_cb()
126 pa_context *ctx = NULL; in pulse_update_sink_input_info() local
129 if ((ret = ff_pulse_audio_connect_context(&ml, &ctx, in pulse_update_sink_input_info()
153 pulse_event(pa_context *ctx, pa_subscription_event_type_t t, uint32_t idx, void *userdata) pulse_event() argument
223 pulse_context_state(pa_context *ctx, void *userdata) pulse_context_state() argument
296 pulse_context_result(pa_context *ctx, int success, void *userdata) pulse_context_result() argument
[all...]
/foundation/distributeddatamgr/data_share/frameworks/js/napi/dataShare/src/
H A Dasync_call.cpp42 context_->ctx = std::move(context); in AsyncCall()
58 if ((context_ == nullptr) || (context_->ctx == nullptr)) { in Call()
59 LOG_DEBUG("context_ or context_->ctx is null"); in Call()
62 context_->ctx->exec_ = std::move(exec); in Call()
81 if ((context_ == nullptr) || (context_->ctx == nullptr)) { in SyncCall()
82 LOG_DEBUG("context_ or context_->ctx is null"); in SyncCall()
85 context_->ctx->exec_ = std::move(exec); in SyncCall()
100 context->ctx->Exec(); in OnExecute()
120 napi_status runStatus = (*context->ctx)(env, &output); in OnComplete()
131 SetBusinessError(env, &businessError, context->ctx in OnComplete()
[all...]

Completed in 17 milliseconds

1...<<151152153154155156157158159160>>...522