HomeSort by relevance Sort by last modified time
    Searched defs:SUPERBLOCK_SIZE (Results 1 - 7 of 7) sorted by null

  /external/valgrind/main/drd/tests/
custom_alloc.c 8 #define SUPERBLOCK_SIZE 100000
16 void* p = mmap( 0, SUPERBLOCK_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC,
35 hp_lim = hp + SUPERBLOCK_SIZE - 1;
  /external/valgrind/main/massif/tests/
custom_alloc.c 8 #define SUPERBLOCK_SIZE 100000
16 void* p = mmap( 0, SUPERBLOCK_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC,
35 hp_lim = hp + SUPERBLOCK_SIZE - 1;
  /external/valgrind/main/memcheck/tests/
custom_alloc.c 8 #define SUPERBLOCK_SIZE 100000
16 void* p = mmap( 0, SUPERBLOCK_SIZE, PROT_READ|PROT_WRITE|PROT_EXEC,
25 VALGRIND_MAKE_MEM_NOACCESS(p, SUPERBLOCK_SIZE);
41 hp_lim = hp + SUPERBLOCK_SIZE - 1;
mempool.c 8 #define SUPERBLOCK_SIZE 100000
39 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
44 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
47 p->size = p->left = SUPERBLOCK_SIZE;
49 VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
91 munmap(p->mem, SUPERBLOCK_SIZE);
mempool2.c 13 #define SUPERBLOCK_SIZE 100000
42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
50 p->size = p->left = SUPERBLOCK_SIZE;
52 VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
94 munmap(p->mem, SUPERBLOCK_SIZE);
  /external/e2fsprogs/lib/ext2fs/
ext2fs.h 42 * superblocks are supposed to be. We define SUPERBLOCK_SIZE because
48 #define SUPERBLOCK_SIZE 1024
    [all...]
  /external/valgrind/main/massif/
ms_main.c 601 #define SUPERBLOCK_SIZE (1 << 20) // 1 MB
604 hp = (Addr)VG_(am_shadow_alloc)(SUPERBLOCK_SIZE);
607 SUPERBLOCK_SIZE);
608 hp_lim = hp + SUPERBLOCK_SIZE - 1;
    [all...]

Completed in 89 milliseconds