Home | History | Annotate | Download | only in tests

Lines Matching refs:free

33    // Check behaviour of memalign/free for big alignment.
43 // We allocate (and then free) a piece of memory smaller than
45 // If the superblock is marked as reclaimable, the below free(s) will cause
46 // an assert. Note that the test has to be run with a --free-list-vol
47 // parameter smaller than the released blocks size to ensure the free is directly
51 free (piece);
52 free (p);
54 // Same as above but do the free in the reverse order.
57 free (p);
58 free (piece);