Home | History | Annotate | Download | only in tests

Lines Matching full:pool

30 } pool;
32 pool *make_pool()
34 pool *p;
37 p = (pool *)mmap(0, sizeof(pool), PROT_READ|PROT_WRITE|PROT_EXEC,
43 p = (pool *)malloc(sizeof(pool));
53 void push(pool *p)
70 void pop(pool *p)
83 void destroy_pool(pool *p)
92 munmap(p, sizeof(pool));
99 char *allocate(pool *p, int size)
117 pool *p = make_pool();