Home | History | Annotate | Download | only in tests

Lines Matching refs:superblock

167       // to mark the superblock noaccess.
168 char superblock[100];
170 VALGRIND_CREATE_MEMPOOL(superblock, REDZONE_SIZE, 0);
171 // User should mark the superblock no access to benefit
175 VALGRIND_MEMPOOL_ALLOC(superblock, superblock+30, 10);
177 res += superblock[30]; // valid
178 res += superblock[39]; // valid
181 "\n------ 2 invalid access in 'no no-access superblock' ---\n\n");
182 res += superblock[29]; // invalid
183 res += superblock[40]; // invalid
185 VALGRIND_DESTROY_MEMPOOL(superblock);