| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| H A D | tsearch.c | 42 rk_tsearch(const void *vkey, void **vrootp, in rk_tsearch() argument 54 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ in rk_tsearch() 66 q->key = __DECONST(void *, vkey); /* initialize new node */ in rk_tsearch() 118 rk_tdelete(const void * vkey, void ** vrootp, in rk_tdelete() argument 128 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) { in rk_tdelete() 163 rk_tfind(const void *vkey, void * const *vrootp, in rk_tfind() argument 174 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ in rk_tfind()
|
| /netbsd-src/lib/libc/stdlib/ |
| H A D | tsearch.c | 26 tsearch(const void *vkey, void **vrootp, in tsearch() argument 32 _DIAGASSERT(vkey != NULL); in tsearch() 41 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ in tsearch() 52 q->key = __UNCONST(vkey); /* initialize new node */ in tsearch()
|
| H A D | tfind.c | 26 tfind(const void *vkey, void * const *vrootp, in tfind() argument 31 _DIAGASSERT(vkey != NULL); in tfind() 40 if ((r = (*compar)(vkey, (*rootp)->key)) == 0) /* T2: */ in tfind()
|
| H A D | tdelete.c | 27 tdelete(const void *vkey, void **vrootp, in tdelete() argument 34 _DIAGASSERT(vkey != NULL); in tdelete() 40 while ((cmp = (*compar)(vkey, (*rootp)->key)) != 0) { in tdelete()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/ |
| H A D | tls-provider.c | 248 static int xor_init(void *vpxorctx, void *vkey, in xor_init() argument 253 if (pxorctx == NULL || vkey == NULL) in xor_init() 255 pxorctx->key = vkey; in xor_init() 470 static int xor_has(const void *vkey, int selection) in xor_has() argument 472 const XORKEY *key = vkey; in xor_has() 519 static ossl_inline int xor_get_params(void *vkey, OSSL_PARAM params[]) in xor_get_params() argument 521 XORKEY *key = vkey; in xor_get_params() 556 static int xor_set_params(void *vkey, const OSSL_PARAM params[]) in xor_set_params() argument 558 XORKEY *key = vkey; in xor_set_params() 664 static int xor_import(void *vkey, int select, const OSSL_PARAM params[]) in xor_import() argument [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/signature/ |
| H A D | mac_legacy_sig.c | 98 static int mac_digest_sign_init(void *vpmacctx, const char *mdname, void *vkey, in mac_digest_sign_init() argument 108 if (pmacctx->key == NULL && vkey == NULL) { in mac_digest_sign_init() 113 if (vkey != NULL) { in mac_digest_sign_init() 114 if (!ossl_mac_key_up_ref(vkey)) in mac_digest_sign_init() 117 pmacctx->key = vkey; in mac_digest_sign_init()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/exchange/ |
| H A D | ecx_exch.c | 72 static int ecx_init(void *vecxctx, void *vkey, in ecx_init() argument 76 ECX_KEY *key = vkey; in ecx_init() 95 static int ecx_set_peer(void *vecxctx, void *vkey) in ecx_set_peer() argument 98 ECX_KEY *key = vkey; in ecx_set_peer()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/asymciphers/ |
| H A D | sm2_enc.c | 59 static int sm2_init(void *vpsm2ctx, void *vkey, const OSSL_PARAM params[]) in sm2_init() argument 63 if (psm2ctx == NULL || vkey == NULL || !EC_KEY_up_ref(vkey)) in sm2_init() 66 psm2ctx->key = vkey; in sm2_init()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libbacktrace/ |
| H A D | xcoff.c | 445 xcoff_symbol_search (const void *vkey, const void *ventry) in xcoff_symbol_search() argument 447 const uintptr_t *key = (const uintptr_t *) vkey; in xcoff_symbol_search() 670 xcoff_func_search (const void *vkey, const void *ventry) in xcoff_func_search() argument 672 const uintptr_t *key = (const uintptr_t *) vkey; in xcoff_func_search() 705 xcoff_incl_search (const void *vkey, const void *ventry) in xcoff_incl_search() argument 707 const uintptr_t *key = (const uintptr_t *) vkey; in xcoff_incl_search()
|
| H A D | pecoff.c | 508 coff_symbol_search (const void *vkey, const void *ventry) in coff_symbol_search() argument 510 const uintptr_t *key = (const uintptr_t *) vkey; in coff_symbol_search()
|
| H A D | dwarf.c | 1122 units_search (const void *vkey, const void *ventry) in units_search() argument 1124 const size_t *key = (const size_t *) vkey; in units_search() 1172 function_addrs_search (const void *vkey, const void *ventry) in function_addrs_search() argument 1174 const uintptr_t *key = (const uintptr_t *) vkey; in function_addrs_search() 1257 unit_addrs_search (const void *vkey, const void *ventry) in unit_addrs_search() argument 1259 const uintptr_t *key = (const uintptr_t *) vkey; in unit_addrs_search() 1301 line_search (const void *vkey, const void *ventry) in line_search() argument 1303 const uintptr_t *key = (const uintptr_t *) vkey; in line_search()
|
| H A D | elf.c | 548 elf_symbol_search (const void *vkey, const void *ventry) in elf_symbol_search() argument 550 const uintptr_t *key = (const uintptr_t *) vkey; in elf_symbol_search()
|
| /netbsd-src/external/gpl3/gcc/dist/libbacktrace/ |
| H A D | xcoff.c | 446 xcoff_symbol_search (const void *vkey, const void *ventry) in xcoff_symbol_search() argument 448 const uintptr_t *key = (const uintptr_t *) vkey; in xcoff_symbol_search() 669 xcoff_func_search (const void *vkey, const void *ventry) in xcoff_func_search() argument 671 const uintptr_t *key = (const uintptr_t *) vkey; in xcoff_func_search() 704 xcoff_incl_search (const void *vkey, const void *ventry) in xcoff_incl_search() argument 706 const uintptr_t *key = (const uintptr_t *) vkey; in xcoff_incl_search()
|
| H A D | pecoff.c | 511 coff_symbol_search (const void *vkey, const void *ventry) in coff_symbol_search() argument 513 const uintptr_t *key = (const uintptr_t *) vkey; in coff_symbol_search()
|
| H A D | dwarf.c | 1125 units_search (const void *vkey, const void *ventry) in units_search() argument 1127 const size_t *key = (const size_t *) vkey; in units_search() 1177 function_addrs_search (const void *vkey, const void *ventry) in function_addrs_search() argument 1179 const uintptr_t *key = (const uintptr_t *) vkey; in function_addrs_search() 1264 unit_addrs_search (const void *vkey, const void *ventry) in unit_addrs_search() argument 1266 const uintptr_t *key = (const uintptr_t *) vkey; in unit_addrs_search() 1308 line_search (const void *vkey, const void *ventry) in line_search() argument 1310 const uintptr_t *key = (const uintptr_t *) vkey; in line_search()
|
| H A D | macho.c | 466 macho_symbol_search (const void *vkey, const void *ventry) in macho_symbol_search() argument 468 const uintptr_t *key = (const uintptr_t *) vkey; in macho_symbol_search()
|
| H A D | elf.c | 610 elf_symbol_search (const void *vkey, const void *ventry) in elf_symbol_search() argument 612 const uintptr_t *key = (const uintptr_t *) vkey; in elf_symbol_search()
|
| /netbsd-src/sys/uvm/ |
| H A D | uvm_map.c | 351 uvm_map_compare_key(void *ctx, const void *nparent, const void *vkey) 354 const vaddr_t va = *(const vaddr_t *) vkey; 339 uvm_map_compare_key(void * ctx,const void * nparent,const void * vkey) uvm_map_compare_key() argument
|