Home
last modified time | relevance | path

Searched refs:PlainPool (Results 1 – 1 of 1) sorted by relevance

/external/valgrind/memcheck/tests/
Dleak-autofreepool.c41 static struct pool _PlainPool, *PlainPool = &_PlainPool; variable
86 VALGRIND_CREATE_MEMPOOL(PlainPool, 0, 0); in create_plain_pool()
88 PlainPool->buf = (uint8_t *) PlainBlock; in create_plain_pool()
89 PlainPool->allocated = POOL_BLOCK_SIZE; in create_plain_pool()
90 PlainPool->used = 0; in create_plain_pool()
93 PlainPool->buf += sizeof(uint8_t); in create_plain_pool()
94 PlainPool->used += sizeof(uint8_t); in create_plain_pool()
243 cells_plain[i] = allocate_plain_style(PlainPool,sizeof(struct cell)); in main()
287 VALGRIND_DESTROY_MEMPOOL(PlainPool); in main()