Home
last modified time | relevance | path

Searched refs:freeptr (Results 1 – 4 of 4) 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);
45 void *CRYPTO_aligned_alloc(size_t num, size_t align, void **freeptr,
107 NOTE: The call to OPENSSL_aligned_alloc() accepts a 3rd argument, I<freeptr>
113 method, the caller must return the value in the I<freeptr> variable, rather than
/openssl/crypto/hashtable/
H A Dhashtable.c158 void **freeptr) in alloc_new_neighborhood_list() argument
163 CACHE_LINE_BYTES, freeptr); in alloc_new_neighborhood_list()
167 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, \
333 void **freeptr, const char *file,

Completed in 14 milliseconds