Home
last modified time | relevance | path

Searched refs:wctx (Results 1 - 15 of 15) sorted by relevance

/third_party/ffmpeg/fftools/
H A Dffprobe.c464 int (*init) (WriterContext *wctx);
465 void (*uninit)(WriterContext *wctx);
467 void (*print_section_header)(WriterContext *wctx);
468 void (*print_section_footer)(WriterContext *wctx);
469 void (*print_integer) (WriterContext *wctx, const char *, long long int);
470 void (*print_rational) (WriterContext *wctx, AVRational *q, char *sep);
471 void (*print_string) (WriterContext *wctx, const char *, const char *);
482 void (* writer_w8)(WriterContext *wctx, int b);
483 void (* writer_put_str)(WriterContext *wctx, const char *str);
484 void (* writer_printf)(WriterContext *wctx, cons
513 WriterContext *wctx = p; writer_get_name() local
548 writer_close(WriterContext **wctx) writer_close() argument
580 writer_w8_avio(WriterContext *wctx, int b) writer_w8_avio() argument
585 writer_put_str_avio(WriterContext *wctx, const char *str) writer_put_str_avio() argument
590 writer_printf_avio(WriterContext *wctx, const char *fmt, ...) writer_printf_avio() argument
599 writer_w8_printf(WriterContext *wctx, int b) writer_w8_printf() argument
604 writer_put_str_printf(WriterContext *wctx, const char *str) writer_put_str_printf() argument
609 writer_printf_printf(WriterContext *wctx, const char *fmt, ...) writer_printf_printf() argument
618 writer_open(WriterContext **wctx, const Writer *writer, const char *args, const struct section *sections, int nb_sections, const char *output) writer_open() argument
720 writer_print_section_header(WriterContext *wctx, int section_id) writer_print_section_header() argument
744 writer_print_section_footer(WriterContext *wctx) writer_print_section_footer() argument
761 writer_print_integer(WriterContext *wctx, const char *key, long long int val) writer_print_integer() argument
772 validate_string(WriterContext *wctx, char **dstp, const char *src) validate_string() argument
830 writer_print_string(WriterContext *wctx, const char *key, const char *val, int flags) writer_print_string() argument
868 writer_print_rational(WriterContext *wctx, const char *key, AVRational q, char sep) writer_print_rational() argument
877 writer_print_time(WriterContext *wctx, const char *key, int64_t ts, const AVRational *time_base, int is_duration) writer_print_time() argument
894 writer_print_ts(WriterContext *wctx, const char *key, int64_t ts, int is_duration) writer_print_ts() argument
903 writer_print_data(WriterContext *wctx, const char *name, const uint8_t *data, int size) writer_print_data() argument
931 writer_print_data_hash(WriterContext *wctx, const char *name, const uint8_t *data, int size) writer_print_data_hash() argument
946 writer_print_integers(WriterContext *wctx, const char *name, uint8_t *data, int size, const char *format, int columns, int bytes, int offset_add) writer_print_integers() argument
1048 default_print_section_header(WriterContext *wctx) default_print_section_header() argument
1073 default_print_section_footer(WriterContext *wctx) default_print_section_footer() argument
1086 default_print_str(WriterContext *wctx, const char *key, const char *value) default_print_str() argument
1095 default_print_int(WriterContext *wctx, const char *key, long long int value) default_print_int() argument
1196 compact_init(WriterContext *wctx) compact_init() argument
1218 compact_print_section_header(WriterContext *wctx) compact_print_section_header() argument
1250 compact_print_section_footer(WriterContext *wctx) compact_print_section_footer() argument
1260 compact_print_str(WriterContext *wctx, const char *key, const char *value) compact_print_str() argument
1273 compact_print_int(WriterContext *wctx, const char *key, long long int value) compact_print_int() argument
1348 flat_init(WriterContext *wctx) flat_init() argument
1395 flat_print_section_header(WriterContext *wctx) flat_print_section_header() argument
1421 flat_print_int(WriterContext *wctx, const char *key, long long int value) flat_print_int() argument
1426 flat_print_str(WriterContext *wctx, const char *key, const char *value) flat_print_str() argument
1495 ini_print_section_header(WriterContext *wctx) ini_print_section_header() argument
1528 ini_print_str(WriterContext *wctx, const char *key, const char *value) ini_print_str() argument
1539 ini_print_int(WriterContext *wctx, const char *key, long long int value) ini_print_int() argument
1574 json_init(WriterContext *wctx) json_init() argument
1606 json_print_section_header(WriterContext *wctx) json_print_section_header() argument
1645 json_print_section_footer(WriterContext *wctx) json_print_section_footer() argument
1667 json_print_item_str(WriterContext *wctx, const char *key, const char *value) json_print_item_str() argument
1679 json_print_str(WriterContext *wctx, const char *key, const char *value) json_print_str() argument
1692 json_print_int(WriterContext *wctx, const char *key, long long int value) json_print_int() argument
1744 xml_init(WriterContext *wctx) xml_init() argument
1767 xml_print_section_header(WriterContext *wctx) xml_print_section_header() argument
1807 xml_print_section_footer(WriterContext *wctx) xml_print_section_footer() argument
1826 xml_print_str(WriterContext *wctx, const char *key, const char *value) xml_print_str() argument
1857 xml_print_int(WriterContext *wctx, const char *key, long long int value) xml_print_int() argument
3410 probe_file(WriterContext *wctx, const char *filename, const char *print_filename) probe_file() argument
4026 WriterContext *wctx; main() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dwtvenc.c138 WtvContext *wctx = s->priv_data; in write_chunk_header() local
141 wctx->last_chunk_pos = avio_tell(pb) - wctx->timeline_start_pos; in write_chunk_header()
145 avio_wl64(pb, wctx->serial); in write_chunk_header()
148 WtvChunkEntry *t = wctx->index + wctx->nb_index; in write_chunk_header()
149 av_assert0(wctx->nb_index < MAX_NB_INDEX); in write_chunk_header()
150 t->pos = wctx->last_chunk_pos; in write_chunk_header()
151 t->serial = wctx->serial; in write_chunk_header()
154 wctx in write_chunk_header()
160 WtvContext *wctx = s->priv_data; write_chunk_header2() local
170 WtvContext *wctx = s->priv_data; finish_chunk_noindex() local
186 WtvContext *wctx = s->priv_data; write_index() local
210 WtvContext *wctx = s->priv_data; finish_chunk() local
340 WtvContext *wctx = s->priv_data; write_sync() local
380 WtvContext *wctx = s->priv_data; write_header() local
445 WtvContext *wctx = s->priv_data; write_timestamp() local
463 WtvContext *wctx = s->priv_data; write_packet() local
541 WtvContext *wctx = s->priv_data; write_root_table() local
618 WtvContext *wctx = s->priv_data; write_table_entries_events() local
629 WtvContext *wctx = s->priv_data; write_table_entries_time() local
671 WtvContext *wctx = s->priv_data; write_table_entries_attrib() local
699 WtvContext *wctx = s->priv_data; write_table_redirector_legacy_attrib() local
727 WtvContext *wctx = s->priv_data; finish_file() local
784 WtvContext *wctx = s->priv_data; write_trailer() local
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_aes_wrp.c53 PROV_AES_WRAP_CTX *wctx; in aes_wrap_newctx() local
59 wctx = OPENSSL_zalloc(sizeof(*wctx)); in aes_wrap_newctx()
60 ctx = (PROV_CIPHER_CTX *)wctx; in aes_wrap_newctx()
66 return wctx; in aes_wrap_newctx()
69 static void *aes_wrap_dupctx(void *wctx) in aes_wrap_dupctx() argument
71 PROV_AES_WRAP_CTX *ctx = wctx; in aes_wrap_dupctx()
72 PROV_AES_WRAP_CTX *dctx = wctx; in aes_wrap_dupctx()
91 PROV_AES_WRAP_CTX *wctx = (PROV_AES_WRAP_CTX *)vctx; in aes_wrap_freectx() local
94 OPENSSL_clear_free(wctx, sizeo in aes_wrap_freectx()
102 PROV_AES_WRAP_CTX *wctx = (PROV_AES_WRAP_CTX *)vctx; aes_wrap_init() local
166 PROV_AES_WRAP_CTX *wctx = (PROV_AES_WRAP_CTX *)vctx; aes_wrap_cipher_internal() local
[all...]
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_aes_wrp.c53 PROV_AES_WRAP_CTX *wctx; in aes_wrap_newctx() local
59 wctx = OPENSSL_zalloc(sizeof(*wctx)); in aes_wrap_newctx()
60 ctx = (PROV_CIPHER_CTX *)wctx; in aes_wrap_newctx()
66 return wctx; in aes_wrap_newctx()
71 PROV_AES_WRAP_CTX *wctx = (PROV_AES_WRAP_CTX *)vctx; in aes_wrap_freectx() local
74 OPENSSL_clear_free(wctx, sizeof(*wctx)); in aes_wrap_freectx()
82 PROV_AES_WRAP_CTX *wctx = (PROV_AES_WRAP_CTX *)vctx; in aes_wrap_init() local
89 wctx in aes_wrap_init()
146 PROV_AES_WRAP_CTX *wctx = (PROV_AES_WRAP_CTX *)vctx; aes_wrap_cipher_internal() local
[all...]
/third_party/mesa3d/src/amd/llvm/
H A Dac_nir_to_llvm.c486 * - wctx is a temporary struct containing some loop info. Can be left uninitialized.
491 static LLVMValueRef enter_waterfall(struct ac_nir_context *ctx, struct waterfall_context *wctx, in enter_waterfall() argument
499 wctx->use_waterfall = divergent; in enter_waterfall()
515 wctx->phi_bb[0] = LLVMGetInsertBlock(ctx->ac.builder); in enter_waterfall()
521 static LLVMValueRef exit_waterfall(struct ac_nir_context *ctx, struct waterfall_context *wctx, in exit_waterfall() argument
531 if (!wctx->use_waterfall) in exit_waterfall()
534 wctx->phi_bb[1] = LLVMGetInsertBlock(ctx->ac.builder); in exit_waterfall()
542 ret = ac_build_phi(&ctx->ac, LLVMTypeOf(value), 2, phi_src, wctx->phi_bb); in exit_waterfall()
550 LLVMValueRef cc = ac_build_phi(&ctx->ac, ctx->ac.i32, 2, cc_phi_src, wctx->phi_bb); in exit_waterfall()
1822 static LLVMValueRef enter_waterfall_ssbo(struct ac_nir_context *ctx, struct waterfall_context *wctx, in enter_waterfall_ssbo() argument
1843 struct waterfall_context wctx; visit_store_ssbo() local
2000 struct waterfall_context wctx; visit_atomic_ssbo() local
2085 struct waterfall_context wctx; visit_load_buffer() local
2146 enter_waterfall_ubo(struct ac_nir_context *ctx, struct waterfall_context *wctx, const nir_intrinsic_instr *instr) enter_waterfall_ubo() argument
2321 struct waterfall_context wctx; visit_load_ubo_buffer() local
2567 enter_waterfall_image(struct ac_nir_context *ctx, struct waterfall_context *wctx, const nir_intrinsic_instr *instr) enter_waterfall_image() argument
2600 struct waterfall_context wctx; visit_image_load() local
2691 struct waterfall_context wctx; visit_image_store() local
2770 struct waterfall_context wctx; visit_image_atomic() local
2899 struct waterfall_context wctx; visit_image_samples() local
2936 struct waterfall_context wctx; visit_image_size() local
4067 struct waterfall_context wctx; visit_intrinsic() local
4522 tex_fetch_ptrs(struct ac_nir_context *ctx, nir_tex_instr *instr, struct waterfall_context *wctx, LLVMValueRef *res_ptr, LLVMValueRef *samp_ptr, LLVMValueRef *fmask_ptr) tex_fetch_ptrs() argument
4662 struct waterfall_context wctx[2] = {{{0}}}; visit_tex() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Deapol_test.c583 struct wpa_sm_ctx *wctx; in test_eapol() local
618 wctx = os_zalloc(sizeof(*wctx)); in test_eapol()
619 if (wctx == NULL) { in test_eapol()
623 wctx->ctx = e; in test_eapol()
624 wctx->msg_ctx = wpa_s; in test_eapol()
625 wctx->get_state = eapol_test_get_state; in test_eapol()
626 wpa_s->wpa = wpa_sm_init(wctx); in test_eapol()
629 os_free(wctx); in test_eapol()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Deapol_test.c583 struct wpa_sm_ctx *wctx; in test_eapol() local
618 wctx = os_zalloc(sizeof(*wctx)); in test_eapol()
619 if (wctx == NULL) { in test_eapol()
623 wctx->ctx = e; in test_eapol()
624 wctx->msg_ctx = wpa_s; in test_eapol()
625 wctx->get_state = eapol_test_get_state; in test_eapol()
626 wpa_s->wpa = wpa_sm_init(wctx); in test_eapol()
629 os_free(wctx); in test_eapol()
/third_party/skia/modules/androidkit/src/
H A DSurface.cpp24 WindowSurface::WindowSurface(ANativeWindow* win, std::unique_ptr<sk_app::WindowContext> wctx) in WindowSurface() argument
26 , fWindowContext(std::move(wctx)) in WindowSurface()
H A DSurface.h48 WindowSurface(ANativeWindow* win, std::unique_ptr<sk_app::WindowContext> wctx);
/third_party/node/deps/openssl/openssl/crypto/async/
H A Dasync.c177 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, in ASYNC_start_job() argument
270 ctx->currjob->waitctx = wctx; in ASYNC_start_job()
/third_party/openssl/crypto/async/
H A Dasync.c177 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, in ASYNC_start_job() argument
270 ctx->currjob->waitctx = wctx; in ASYNC_start_job()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A De_aes.c3565 EVP_AES_WRAP_CTX *wctx = EVP_C_DATA(EVP_AES_WRAP_CTX,ctx); in aes_wrap_init_key() local
3572 &wctx->ks.ks); in aes_wrap_init_key()
3575 &wctx->ks.ks); in aes_wrap_init_key()
3577 wctx->iv = NULL; in aes_wrap_init_key()
3583 wctx->iv = ctx->iv; in aes_wrap_init_key()
3591 EVP_AES_WRAP_CTX *wctx = EVP_C_DATA(EVP_AES_WRAP_CTX,ctx); in aes_wrap_cipher() local
3629 rv = CRYPTO_128_wrap_pad(&wctx->ks.ks, wctx->iv, in aes_wrap_cipher()
3633 rv = CRYPTO_128_unwrap_pad(&wctx->ks.ks, wctx in aes_wrap_cipher()
[all...]
/third_party/openssl/crypto/evp/
H A De_aes.c3571 EVP_AES_WRAP_CTX *wctx = EVP_C_DATA(EVP_AES_WRAP_CTX,ctx); in aes_wrap_init_key() local
3578 &wctx->ks.ks); in aes_wrap_init_key()
3581 &wctx->ks.ks); in aes_wrap_init_key()
3583 wctx->iv = NULL; in aes_wrap_init_key()
3589 wctx->iv = ctx->iv; in aes_wrap_init_key()
3597 EVP_AES_WRAP_CTX *wctx = EVP_C_DATA(EVP_AES_WRAP_CTX,ctx); in aes_wrap_cipher() local
3635 rv = CRYPTO_128_wrap_pad(&wctx->ks.ks, wctx->iv, in aes_wrap_cipher()
3639 rv = CRYPTO_128_unwrap_pad(&wctx->ks.ks, wctx in aes_wrap_cipher()
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Dcms.c990 EVP_CIPHER_CTX *wctx; in cms_main() local
991 wctx = CMS_RecipientInfo_kari_get0_ctx(ri); in cms_main()
992 EVP_EncryptInit_ex(wctx, wrap_cipher, NULL, NULL, NULL); in cms_main()
/third_party/openssl/apps/
H A Dcms.c991 EVP_CIPHER_CTX *wctx; in cms_main() local
992 wctx = CMS_RecipientInfo_kari_get0_ctx(ri); in cms_main()
993 EVP_EncryptInit_ex(wctx, wrap_cipher, NULL, NULL, NULL); in cms_main()

Completed in 30 milliseconds