Searched refs:freeptr (Results 1 – 5 of 5) sorted by relevance
/openssl/crypto/ |
H A D | mem.c | 229 void *CRYPTO_aligned_alloc(size_t num, size_t alignment, void **freeptr, in CRYPTO_aligned_alloc() argument 234 *freeptr = NULL; in CRYPTO_aligned_alloc() 237 ret = freeptr = NULL; in CRYPTO_aligned_alloc() 246 *freeptr = ret; in CRYPTO_aligned_alloc() 249 ret = *freeptr = aligned_alloc(alignment, num); in CRYPTO_aligned_alloc() 268 *freeptr = CRYPTO_malloc(num + alignment, file, line); in CRYPTO_aligned_alloc() 269 if (*freeptr == NULL) in CRYPTO_aligned_alloc() 277 ret = (void *)((char *)*freeptr + (alignment - 1)); in CRYPTO_aligned_alloc()
|
/openssl/doc/man3/ |
H A D | OPENSSL_malloc.pod | 31 void *OPENSSL_aligned_alloc(size_t num, size_t alignment, void **freeptr); 46 void *CRYPTO_aligned_alloc(size_t num, size_t align, void **freeptr, 108 NOTE: The call to OPENSSL_aligned_alloc() accepts a 3rd argument, I<freeptr> 114 method, the caller must return the value in the I<freeptr> variable, rather than
|
/openssl/crypto/hashtable/ |
H A D | hashtable.c | 164 void **freeptr) in alloc_new_neighborhood_list() argument 169 CACHE_LINE_BYTES, freeptr); in alloc_new_neighborhood_list() 173 ret = *freeptr = OPENSSL_malloc(sizeof(struct ht_neighborhood_st) * len); in alloc_new_neighborhood_list()
|
/openssl/include/openssl/ |
H A D | crypto.h.in | 106 # define OPENSSL_aligned_alloc(num, alignment, freeptr) \ argument 107 CRYPTO_aligned_alloc(num, alignment, freeptr, \ 336 void **freeptr, const char *file,
|
/openssl/providers/fips/ |
H A D | fipsprov.c | 987 void *CRYPTO_aligned_alloc(size_t num, size_t align, void **freeptr, in CRYPTO_aligned_alloc() argument
|
Completed in 22 milliseconds