Lines Matching refs:ps
87 guint8 **ps; in test_memchunk_thread() local
104 ps = g_new (guint8*, number_of_blocks); in test_memchunk_thread()
111 ps[i] = memchunk_alloc (&memchunks[ss[i]], ss[i]); in test_memchunk_thread()
116 memchunk_free (memchunks[ss[i]], ps[i]); in test_memchunk_thread()
121 ps[i] = memchunk_alloc (&memchunks[ss[i]], ss[i]); in test_memchunk_thread()
126 memchunk_free (memchunks[ss[i]], ps[i]); in test_memchunk_thread()
133 ps[j] = memchunk_alloc (&memchunks[sz], sz); in test_memchunk_thread()
135 memchunk_free (memchunks[sz], ps[j]); in test_memchunk_thread()
141 g_free (ps); in test_memchunk_thread()
152 guint8 **ps; in test_sliced_mem_thread() local
165 ps = g_new (guint8*, number_of_blocks); in test_sliced_mem_thread()
172 ps[i] = g_slice_alloc (ss[i] + corruption()); in test_sliced_mem_thread()
177 g_slice_free1 (ss[i] + corruption(), ps[i] + corruption()); in test_sliced_mem_thread()
182 ps[i] = g_slice_alloc (ss[i] + corruption()); in test_sliced_mem_thread()
187 g_slice_free1 (ss[i] + corruption(), ps[i] + corruption()); in test_sliced_mem_thread()
194 ps[j] = g_slice_alloc (sz + corruption()); in test_sliced_mem_thread()
196 g_slice_free1 (sz + corruption(), ps[j] + corruption()); in test_sliced_mem_thread()
198 g_free (ps); in test_sliced_mem_thread()