Home | History | Annotate | Download | only in integration

Lines Matching refs:sz

26   size_t sz;
28 for (sz = 1; sz < MAXSZ; sz <<= 1) {
30 ptr = malloc(sz);
31 assert_ptr_not_null(ptr, "malloc() failed for size %zu", sz);
36 alloc_find_size = sz;
41 assert(je_iterate((uintptr_t)ptr, sz, callback, NULL) == 0);
55 size_t sz;
57 for (sz = 1; sz < MAXSZ; sz <<= 1) {
59 ptr = malloc(sz);
61 assert_ptr_not_null(ptr, "malloc() failed for size %zu", sz);
66 alloc_find_size = sz;
71 je_iterate((uintptr_t)ptr, sz, callback, NULL);
82 size_t sz;
84 for (sz = 1; sz < MAXSZ; sz <<= 1) {
87 ptr2 = malloc(sz);
88 assert_ptr_not_null(ptr2, "malloc() failed for size %zu", sz);
90 ptr = malloc(sz);
91 assert_ptr_not_null(ptr, "malloc() failed for size %zu", sz);
98 alloc_find_size = sz;
103 assert(je_iterate((uintptr_t)ptr, sz, callback, NULL) == 0);