Home
last modified time | relevance | path

Searched refs:WRAP (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/libfido2/fuzz/
H A Dwrap.c36 #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 Dasan_malloc_linux.cpp189 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 Dasan_win.cpp196 (uptr)WRAP(RaiseException), in InitializePlatformInterceptors()
199 (uptr)WRAP(RtlRaiseException), in InitializePlatformInterceptors()
H A Dasan_interceptors.cpp498 ALIAS(WRAP(strchr));
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpciph_aes_wrap.txt38 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 Dinterception.h133 { 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 Dinterception_win.h71 (::__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 DEVP_CIPHER-AES.pod38 =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 DEVP_KDF-X942-ASN1.pod78 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 DEVP_CIPHER-DES.pod39 =item "DES3-WRAP"
H A Dmigration_guide.pod248 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 Dcipher_aes_wrp.c320 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 Dtsan_interceptors.h90 ALIAS(WRAP(pthread_##func));
98 ALIAS(WRAP(pthread_##func));
101 ALIAS(WRAP(pthread_##func));
104 ALIAS(WRAP(pthread_##func2));
H A Dtsan_interceptors_libdispatch.cpp271 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 Dtsan_interceptors_posix.cpp1182 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 Dsanitizer_win_dll_thunk.h87 INTERCEPT_OR_DIE(STRINGIFY(WRAP(name)), name)
H A Dsanitizer_malloc_mac.inc228 malloc_zone_t *zone_ptr = WRAP(malloc_zone_from_ptr)(ptr); \
H A Dsanitizer_common_interceptors.inc314 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 Dhwasan_allocation_functions.cpp165 extern "C" SANITIZER_INTERFACE_ATTRIBUTE RET WRAP(FN)(ARGS) \
/freebsd/crypto/openssl/providers/common/der/
H A Dbuild.info74 #----- KEY WRAP
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_interceptors.cpp172 ALIAS(WRAP(strchr));
/freebsd/contrib/tcsh/
H A Ded.term.c192 # ifdef WRAP
193 { "wrap", WRAP, M_OUTPUT },
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp202 INTERCEPTOR(void, cfree, void *p) ALIAS(WRAP(free));
/freebsd/contrib/libedit/
H A Dtty.c260 #ifdef WRAP
261 {"wrap", WRAP, MD_OUT},
/freebsd/contrib/less/
H A Dless.hlp58 ^W WRAP search if no match found.

12