Searched refs:vtable (Results 76 - 100 of 160) sorted by relevance

1234567

/freebsd-13-stable/contrib/bearssl/src/symcipher/
H A Daes_ct64_ctr.c32 ctx->vtable = &br_aes_ct64_ctr_vtable;
H A Daes_ct_cbcenc.c32 ctx->vtable = &br_aes_ct_cbcenc_vtable;
H A Daes_ct_ctr.c32 ctx->vtable = &br_aes_ct_ctr_vtable;
H A Daes_x86ni_cbcenc.c42 ctx->vtable = &br_aes_x86ni_cbcenc_vtable;
H A Daes_big_ctrcbc.c32 ctx->vtable = &br_aes_big_ctrcbc_vtable;
H A Daes_ct_cbcdec.c32 ctx->vtable = &br_aes_ct_cbcdec_vtable;
H A Daes_small_ctrcbc.c32 ctx->vtable = &br_aes_small_ctrcbc_vtable;
/freebsd-13-stable/usr.bin/tip/tip/
H A Dtip.h155 #define value(v) vtable[v].v_value
156 #define lvalue(v) (long)vtable[v].v_value
189 extern value_t vtable[]; /* variable table */
/freebsd-13-stable/contrib/subversion/subversion/libsvn_ra/
H A Ddeprecated.c54 about the big changeover from a vtable-style to function-style
142 reporter returned from session->vtable->do_foo. But the code would
284 return session->vtable->do_diff(session,
404 return session->vtable->do_update(session,
455 return session->vtable->do_switch(session,
481 return session->vtable->do_status(session,
497 return session->vtable->get_dir(session, dirents, fetched_rev, props,
H A Dra_loader.h54 /* The RA layer vtable. */
56 /* This field should always remain first in the vtable. */
388 const svn_ra__vtable_t *vtable;
413 const svn_ra__vtable_t **vtable,
418 const svn_ra__vtable_t **vtable,
421 const svn_ra__vtable_t **vtable,
424 const svn_ra__vtable_t **vtable,
387 const svn_ra__vtable_t *vtable; member in struct:svn_ra_session_t
H A Dwrapper_template.h81 sess->vtable = &VTBL;
494 const svn_ra__vtable_t *vtable; local
506 SVN_ERR(INITFUNC(VTBL.get_version(), &vtable, pool));
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs/
H A Dfs-loader.h57 through vtable calls defined by the FSAP.
69 /*** Top-level library vtable type ***/
73 /* This field should always remain first in the vtable.
142 in an object vtable, so that they are all kept together. */
151 into the FS vtable. */
175 library vtable. The LOADER_VERSION parameter must remain first in
186 fs_library_vtable_t **vtable,
204 /*** vtable types for the abstract FS objects ***/
271 /* info_fsap_dup is in the library vtable. */
308 roots may not all have the same vtable, w
501 const fs_vtable_t *vtable; member in struct:svn_fs_t
523 const txn_vtable_t *vtable; member in struct:svn_fs_txn_t
551 const root_vtable_t *vtable; member in struct:svn_fs_root_t
558 const changes_iterator_vtable_t *vtable; member in struct:svn_fs_path_change_iterator_t
565 const history_vtable_t *vtable; member in struct:svn_fs_history_t
573 const id_vtable_t *vtable; member in struct:svn_fs_id_t
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_diff/
H A Ddiff.h139 const svn_diff_fns2_t *vtable,
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs.c78 to the FS vtable. That's more machinery than it's worth.
339 /* The vtable associated with a specific open filesystem. */
371 /* Set up vtable and fsap_data fields in FS. */
380 fs->vtable = &fs_vtable;
385 /* Reset vtable and fsap_data fields in FS such that the FS is basically
390 fs->vtable = NULL;
425 correct vtable for the filesystem. Use POOL for any temporary
511 /* Now open the filesystem properly by calling the vtable method directly. */
678 /* Base FS library vtable, used by the FS loader library. */
701 fs_library_vtable_t **vtable, apr_pool_
689 svn_fs_fs__init(const svn_version_t *loader_version, fs_library_vtable_t **vtable, apr_pool_t* common_pool) argument
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dfs.c81 to the FS vtable. That's more machinery than it's worth.
292 /* The vtable associated with a specific open filesystem. */
324 /* Set up vtable and fsap_data fields in FS. */
332 fs->vtable = &fs_vtable;
337 /* Reset vtable and fsap_data fields in FS such that the FS is basically
342 fs->vtable = NULL;
379 correct vtable for the filesystem. Use SCRATCH_POOL for any temporary
465 /* Now open the filesystem properly by calling the vtable method directly. */
639 /* Base FS library vtable, used by the FS loader library. */
662 fs_library_vtable_t **vtable,
650 svn_fs_x__init(const svn_version_t *loader_version, fs_library_vtable_t **vtable, apr_pool_t* common_pool) argument
[all...]
H A Dfs_id.c319 id->generic_id.vtable = &id_vtable;
/freebsd-13-stable/contrib/bearssl/src/hash/
H A Dmd5sha1.c31 cc->vtable = &br_md5sha1_vtable;
/freebsd-13-stable/contrib/bearssl/test/
H A Dtest_crypto.c125 br_ ## cname ## _vtable.init(&mc.vtable); \
126 mc.vtable->update(&mc.vtable, data, n); \
127 mc.vtable->out(&mc.vtable, res); \
130 mc.vtable->init(&mc.vtable); \
131 mc.vtable->update(&mc.vtable, data, n); \
132 mc.vtable
5952 const br_prng_class *vtable; member in struct:__anon293
[all...]
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_private.h103 struct archive_vtable *vtable; member in struct:archive
/freebsd-13-stable/lib/libsecureboot/
H A Dvectx.c173 ctx->vec_md->init(&ctx->vec_ctx.vtable);
245 ctx->vec_md->update(&ctx->vec_ctx.vtable, &bp[off], d);
/freebsd-13-stable/contrib/bearssl/inc/
H A Dbearssl_x509.h378 * This method shall set the vtable (first field) of the context
474 * except for the first field (the vtable).
480 /** \brief Reference to the context vtable. */
481 const br_x509_class *vtable; member in struct:__anon256
632 * except for the first field (the vtable).
638 const br_x509_class *vtable; member in struct:__anon258
/freebsd-13-stable/contrib/bearssl/tools/
H A Dserver.c278 const br_ssl_server_policy_class *vtable; member in struct:__anon318
536 hc->init(&zc.vtable);
537 hc->update(&zc.vtable, data, hv_len);
538 hc->out(&zc.vtable, hv);
1106 br_ssl_server_set_cache(&cc, &lru.vtable);
1119 pc.vtable = &policy_vtable;
1126 br_ssl_server_set_policy(&cc, &pc.vtable);
1152 br_ssl_engine_set_x509(&cc.eng, &xc.vtable);
H A Dskey.c391 if (!seeder(&rng.vtable)) {
397 r = kg(&rng.vtable, &sk, kbuf_priv, NULL, NULL, size, pubexp);
449 if (!seeder(&rng.vtable)) {
454 len = br_ec_keygen(&rng.vtable, impl, &sk, kbuf_priv, curve);
/freebsd-13-stable/contrib/bearssl/samples/
H A Dcustom_profile.c445 br_ssl_engine_set_x509(&cc->eng, &xc->vtable);
/freebsd-13-stable/contrib/bearssl/src/rand/
H A Dhmac_drbg.c34 ctx->vtable = &br_hmac_drbg_vtable;

Completed in 111 milliseconds

1234567