/freebsd/contrib/libfido2/fuzz/ |
H A D | wrap.c | 36 #define WRAP(type, name, args, retval, param, prob) \ macro 47 WRAP(void *, 55 WRAP(void *, 63 WRAP(void *, 71 WRAP(char *, 79 WRAP(ssize_t, 87 WRAP(int, 96 WRAP(int, 104 WRAP(EVP_CIPHER_CTX *, 112 WRAP(int, [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_malloc_linux.cpp | 189 WRAP(malloc), WRAP(free), WRAP(calloc), 190 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 193 WRAP(calloc), WRAP(free), WRAP(mallinfo), 194 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign), 195 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc), 196 WRAP(valloc)};
|
H A D | asan_win.cpp | 196 (uptr)WRAP(RaiseException), in InitializePlatformInterceptors() 199 (uptr)WRAP(RtlRaiseException), in InitializePlatformInterceptors()
|
H A D | asan_interceptors.cpp | 498 ALIAS(WRAP(strchr));
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evpciph_aes_wrap.txt | 38 Cipher = aes256-WRAP 43 Cipher = ID-aes256-WRAP 75 Cipher = AES-128-WRAP-INV 81 Cipher = AES-128-WRAP-INV 87 Cipher = AES-128-WRAP-INV 93 Cipher = AES-128-WRAP-INV 100 Cipher = AES-192-WRAP-INV 107 Cipher = AES-256-WRAP-INV 114 Cipher = AES-128-WRAP-INV 120 Cipher = AES-192-WRAP-INV [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/interception/ |
H A D | interception.h | 133 { reinterpret_cast<const uptr>(WRAP(func_name)), \ 147 # define WRAP(x) wrap_##x macro 148 # define TRAMPOLINE(x) WRAP(x) 153 # define WRAP(x) __asan_wrap_##x macro 154 # define TRAMPOLINE(x) WRAP(x) 178 # define WRAP(x) ___interceptor_ ## x macro 198 INTERCEPTOR_ATTRIBUTE __attribute__((weak)) ALIAS(WRAP(func)); \ 222 # define WRAP(x) __interceptor_ ## x macro 223 # define TRAMPOLINE(x) WRAP(x) 231 INTERCEPTOR_ATTRIBUTE __ATTRIBUTE_WEAK_WRAPPER ALIAS(WRAP(func)); [all …]
|
H A D | interception_win.h | 71 (::__interception::uptr)WRAP(func), \ 76 (::__interception::uptr)WRAP(func), \ 84 user_dll, provider_dll, #func, (::__interception::uptr)WRAP(func), \
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | EVP_CIPHER-AES.pod | 38 =item "AES-128-WRAP", "AES-192-WRAP", "AES-256-WRAP", 39 "AES-128-WRAP-PAD", "AES-192-WRAP-PAD", "AES-256-WRAP-PAD", 40 "AES-128-WRAP-INV", "AES-192-WRAP-INV", "AES-256-WRAP-INV", 41 "AES-128-WRAP-PAD-INV", "AES-192-WRAP-PAD-INV" and "AES-256-WRAP-PAD-INV" 66 The AES-SIV and AES-WRAP mode implementations do not support streaming. That
|
H A D | EVP_KDF-X942-ASN1.pod | 78 Valid values are "AES-128-WRAP", "AES-192-WRAP", "AES-256-WRAP" and "DES3-WRAP". 118 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_KDF_PARAM_CEK_ALG, "AES-256-WRAP, 0);
|
H A D | EVP_CIPHER-DES.pod | 39 =item "DES3-WRAP"
|
H A D | migration_guide.pod | 248 unwrapping. The algorithms are: "AES-128-WRAP-INV", "AES-192-WRAP-INV", 249 "AES-256-WRAP-INV", "AES-128-WRAP-PAD-INV", "AES-192-WRAP-PAD-INV" and 250 "AES-256-WRAP-PAD-INV".
|
/freebsd/crypto/openssl/providers/implementations/ciphers/ |
H A D | cipher_aes_wrp.c | 320 IMPLEMENT_cipher(wrap, wrap, WRAP, WRAP_FLAGS, 256, 64, AES_WRAP_NOPAD_IVLEN * 8); 321 IMPLEMENT_cipher(wrap, wrap, WRAP, WRAP_FLAGS, 192, 64, AES_WRAP_NOPAD_IVLEN * 8); 322 IMPLEMENT_cipher(wrap, wrap, WRAP, WRAP_FLAGS, 128, 64, AES_WRAP_NOPAD_IVLEN * 8); 323 IMPLEMENT_cipher(wrap, wrappad, WRAP, WRAP_FLAGS, 256, 64, AES_WRAP_PAD_IVLEN * 8); 324 IMPLEMENT_cipher(wrap, wrappad, WRAP, WRAP_FLAGS, 192, 64, AES_WRAP_PAD_IVLEN * 8); 325 IMPLEMENT_cipher(wrap, wrappad, WRAP, WRAP_FLAGS, 128, 64, AES_WRAP_PAD_IVLEN * 8); 327 IMPLEMENT_cipher(wrap, wrapinv, WRAP, WRAP_FLAGS_INV, 256, 64, AES_WRAP_NOPAD_IVLEN * 8); 328 IMPLEMENT_cipher(wrap, wrapinv, WRAP, WRAP_FLAGS_INV, 192, 64, AES_WRAP_NOPAD_IVLEN * 8); 329 IMPLEMENT_cipher(wrap, wrapinv, WRAP, WRAP_FLAGS_INV, 128, 64, AES_WRAP_NOPAD_IVLEN * 8); 330 IMPLEMENT_cipher(wrap, wrappadinv, WRAP, WRAP_FLAGS_INV, 256, 64, AES_WRAP_PAD_IVLEN * 8); [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors.h | 90 ALIAS(WRAP(pthread_##func)); 98 ALIAS(WRAP(pthread_##func)); 101 ALIAS(WRAP(pthread_##func)); 104 ALIAS(WRAP(pthread_##func2));
|
H A D | tsan_interceptors_libdispatch.cpp | 271 WRAP(dispatch_after)(when, queue, ^(void) { in TSAN_INTERCEPTOR() 315 WRAP(dispatch_once)(predicate, ^(void) { in TSAN_INTERCEPTOR() 360 WRAP(dispatch_async)(queue, ^(void) { in TSAN_INTERCEPTOR() 363 WRAP(dispatch_group_leave)(group); in TSAN_INTERCEPTOR() 374 WRAP(dispatch_async)(queue, ^(void) { in TSAN_INTERCEPTOR() 376 WRAP(dispatch_group_leave)(group); in TSAN_INTERCEPTOR() 412 WRAP(dispatch_group_notify)(group, q, ^(void) { work(context); }); in TSAN_INTERCEPTOR() 441 WRAP(dispatch_source_set_event_handler)(source, block); in TSAN_INTERCEPTOR() 471 WRAP(dispatch_source_set_cancel_handler)(source, block); in TSAN_INTERCEPTOR() 502 WRAP(dispatch_source_set_registration_handler)(source, block); in TSAN_INTERCEPTOR() [all …]
|
H A D | tsan_interceptors_posix.cpp | 1182 void *newcond = WRAP(malloc)(pthread_cond_t_sz); in init_cond() 1187 WRAP(free)(newcond); in init_cond() 1320 WRAP(free)(cond); in INTERCEPTOR() 2331 return WRAP(fork)(fake); in TSAN_INTERCEPTOR()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_win_dll_thunk.h | 87 INTERCEPT_OR_DIE(STRINGIFY(WRAP(name)), name)
|
H A D | sanitizer_malloc_mac.inc | 228 malloc_zone_t *zone_ptr = WRAP(malloc_zone_from_ptr)(ptr); \
|
H A D | sanitizer_common_interceptors.inc | 314 char *new_mem = (char *)WRAP(malloc)(copy_length + 1); \ 1464 int res = WRAP(vname)(__VA_ARGS__, ap); \ 3838 allocated_path = resolved_path = (char *)WRAP(malloc)(path_max + 1); 3842 WRAP(free)(allocated_path); 4417 ALIAS(WRAP(pthread_setcancelstate)); 5448 INTERCEPTOR(void *, __tls_get_addr_opt, void *arg) ALIAS(WRAP(__tls_get_addr)); 5485 void *arg) ALIAS(WRAP(__tls_get_addr_internal)); 5488 extern "C" uptr WRAP(__tls_get_offset)(void *arg); 7476 return WRAP(strlcpy)(dst + len, src, size - len) + len; 9878 WRAP(qsort_r)(base, nmemb, size, compar, nullptr);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_allocation_functions.cpp | 165 extern "C" SANITIZER_INTERFACE_ATTRIBUTE RET WRAP(FN)(ARGS) \
|
/freebsd/crypto/openssl/providers/common/der/ |
H A D | build.info | 74 #----- KEY WRAP
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_interceptors.cpp | 172 ALIAS(WRAP(strchr));
|
/freebsd/contrib/tcsh/ |
H A D | ed.term.c | 192 # ifdef WRAP 193 { "wrap", WRAP, M_OUTPUT },
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_interceptors.cpp | 202 INTERCEPTOR(void, cfree, void *p) ALIAS(WRAP(free));
|
/freebsd/contrib/libedit/ |
H A D | tty.c | 260 #ifdef WRAP 261 {"wrap", WRAP, MD_OUT},
|
/freebsd/contrib/less/ |
H A D | less.hlp | 58 ^W WRAP search if no match found.
|