Home | History | Annotate | Download | only in tests

Lines Matching refs:where

19    char *where;
27 char *where;
42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
52 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
68 l->where = p->where;
69 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
77 VALGRIND_DESTROY_MEMPOOL(l->where);
78 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where);
79 p->where = l->where;
104 char *where;
106 where = p->where + REDZONE_SIZE;
107 p->where += size + (REDZONE_SIZE*2);
108 VALGRIND_MEMPOOL_ALLOC(p->levels->where, where, size);
109 return where;