Searched refs:freeptr (Results 1 – 8 of 8) sorted by relevance
| /src/crypto/openssl/crypto/ |
| H A D | mem.c | 240 void *CRYPTO_aligned_alloc(size_t num, size_t alignment, void **freeptr, in CRYPTO_aligned_alloc() argument 245 *freeptr = NULL; in CRYPTO_aligned_alloc() 248 ret = freeptr = NULL; in CRYPTO_aligned_alloc() 257 *freeptr = ret; in CRYPTO_aligned_alloc() 260 ret = *freeptr = aligned_alloc(alignment, num); in CRYPTO_aligned_alloc() 279 *freeptr = CRYPTO_malloc(num + alignment, file, line); in CRYPTO_aligned_alloc() 280 if (*freeptr == NULL) in CRYPTO_aligned_alloc() 288 ret = (void *)((char *)*freeptr + (alignment - 1)); in CRYPTO_aligned_alloc()
|
| /src/sys/arm64/rockchip/ |
| H A D | rk_i2s.c | 427 uint32_t count, size, freeptr, recorded; in rk_i2s_dai_intr() local 430 freeptr = sndbuf_getfreeptr(rec_buf); in rk_i2s_dai_intr() 438 samples[freeptr++ % size] = val & 0xff; in rk_i2s_dai_intr() 439 samples[freeptr++ % size] = (val >> 8) & 0xff; in rk_i2s_dai_intr() 440 samples[freeptr++ % size] = (val >> 16) & 0xff; in rk_i2s_dai_intr() 441 samples[freeptr++ % size] = (val >> 24) & 0xff; in rk_i2s_dai_intr()
|
| /src/sys/arm/allwinner/ |
| H A D | aw_i2s.c | 553 uint32_t count, size, freeptr, recorded, available; in aw_i2s_dai_intr() local 560 freeptr = sndbuf_getfreeptr(rec_buf); in aw_i2s_dai_intr() 568 samples[freeptr++ % size] = (val >> 16) & 0xff; in aw_i2s_dai_intr() 569 samples[freeptr++ % size] = (val >> 24) & 0xff; in aw_i2s_dai_intr()
|
| /src/crypto/openssl/include/openssl/ |
| H A D | crypto.h | 109 #define OPENSSL_aligned_alloc(num, alignment, freeptr) \ argument 110 CRYPTO_aligned_alloc(num, alignment, freeptr, \ 366 void **freeptr, const char *file,
|
| H A D | crypto.h.in | 110 #define OPENSSL_aligned_alloc(num, alignment, freeptr) \ argument 111 CRYPTO_aligned_alloc(num, alignment, freeptr, \ 343 void **freeptr, const char *file,
|
| /src/crypto/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
|
| /src/crypto/openssl/crypto/hashtable/ |
| H A D | hashtable.c | 153 void **freeptr) in alloc_new_neighborhood_list() argument 158 CACHE_LINE_BYTES, freeptr); in alloc_new_neighborhood_list() 162 ret = *freeptr = OPENSSL_malloc(sizeof(struct ht_neighborhood_st) * len); in alloc_new_neighborhood_list()
|
| /src/crypto/openssl/providers/fips/ |
| H A D | fipsprov.c | 1122 void *CRYPTO_aligned_alloc(size_t num, size_t align, void **freeptr, in CRYPTO_aligned_alloc() argument
|