Lines Matching refs:pointer
35 call changes the backtrace for the pointer no matter whether the pointer
195 When a pointer is freed, do not free the memory right away, but add it to
304 pointer = malloc(size)
306 **THREAD\_ID**: malloc pointer size
312 free(pointer)
314 **THREAD\_ID**: free pointer
320 pointer = calloc(nmemb, size)
322 **THREAD\_ID**: calloc pointer nmemb size
336 pointer = memalign(alignment, size)
338 **THREAD\_ID**: memalign pointer alignment size
340 pointer = aligned\_alloc(alignment, size)
342 **THREAD\_ID**: memalign pointer alignment size
344 posix\_memalign(&pointer, alignment, size)
346 **THREAD\_ID**: memalign pointer alignment size
352 pointer = valloc(size)
354 **THREAD\_ID**: memalign pointer 4096 size
360 pointer = pvalloc(size)
362 **THREAD\_ID**: memalign pointer 4096 <b>SIZE\_ROUNDED\_UP\_TO\_4096</b>
378 Track all live allocations to determine if a pointer is used that does not
392 with a bad pointer. Only three functions do this checking: free,
436 This indicates that code is attempting to free an already freed pointer. The
438 *free* with the bad pointer.
445 with an already freed pointer.
456 a pointer that is either not allocated memory, or that the memory of
457 the pointer has been corrupted.
460 function that was called with the bad pointer.