Home | History | Annotate | Download | only in tests

Lines Matching refs:where

16    char *where;
24 char *where;
39 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
44 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
49 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
65 l->where = p->where;
66 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
74 VALGRIND_DESTROY_MEMPOOL(l->where);
75 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where);
76 p->where = l->where;
101 char *where;
103 where = p->where + REDZONE_SIZE;
104 p->where += size + (REDZONE_SIZE*2);
105 VALGRIND_MEMPOOL_ALLOC(p->levels->where, where, size);
106 return where;