Home
last modified time | relevance | path

Searched refs:freeptr (Results 1 – 5 of 5) sorted by relevance

/openssl/crypto/
H A Dmem.c229 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()
244 *freeptr = ret; in CRYPTO_aligned_alloc()
247 ret = *freeptr = aligned_alloc(alignment, num); in CRYPTO_aligned_alloc()
264 *freeptr = malloc(num + alignment); in CRYPTO_aligned_alloc()
265 if (*freeptr == NULL) in CRYPTO_aligned_alloc()
273 ret = (void *)((char *)*freeptr + (alignment - 1)); in CRYPTO_aligned_alloc()
/openssl/doc/man3/
H A DOPENSSL_malloc.pod31 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 Dhashtable.c164 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 Dcrypto.h.in106 # define OPENSSL_aligned_alloc(num, alignment, freeptr) \ argument
107 CRYPTO_aligned_alloc(num, alignment, freeptr, \
335 void **freeptr, const char *file,
/openssl/providers/fips/
H A Dfipsprov.c984 void *CRYPTO_aligned_alloc(size_t num, size_t align, void **freeptr, in CRYPTO_aligned_alloc() argument

Completed in 18 milliseconds