Lines Matching refs:line
171 void *CRYPTO_malloc(size_t num, const char *file, int line)
175 return malloc_impl(num, file, line);
184 * if necessary to avoid a store to the same cache line on every
193 void *CRYPTO_zalloc(size_t num, const char *file, int line)
197 ret = CRYPTO_malloc(num, file, line);
205 void *CRYPTO_realloc(void *str, size_t num, const char *file, int line)
209 return realloc_impl(str, num, file, line);
213 return CRYPTO_malloc(num, file, line);
216 CRYPTO_free(str, file, line);
224 const char *file, int line)
229 return CRYPTO_malloc(num, file, line);
232 CRYPTO_clear_free(str, old_len, file, line);
242 ret = CRYPTO_malloc(num, file, line);
245 CRYPTO_clear_free(str, old_len, file, line);
250 void CRYPTO_free(void *str, const char *file, int line)
254 free_impl(str, file, line);
261 void CRYPTO_clear_free(void *str, size_t num, const char *file, int line)
267 CRYPTO_free(str, file, line);
285 int CRYPTO_mem_debug_push(const char *info, const char *file, int line)
287 (void)info; (void)file; (void)line;
297 const char *file, int line)
299 (void)addr; (void)num; (void)flag; (void)file; (void)line;
303 const char *file, int line)
305 (void)addr1; (void)addr2; (void)num; (void)flag; (void)file; (void)line;
309 const char *file, int line)
311 (void)addr; (void)flag; (void)file; (void)line;