Home | History | Annotate | Download | only in unit

Lines Matching refs:alloc

25   typedef DenseSlabAlloc<int, 128, 128> Alloc;
26 typedef Alloc::Cache Cache;
27 typedef Alloc::IndexT IndexT;
30 Alloc alloc;
32 alloc.InitCache(&cache);
37 IndexT idx = alloc.Alloc(&cache);
40 int *v = alloc.Map(idx);
46 int *v = alloc.Map(idx);
48 alloc.Free(&cache, idx);
51 alloc.FlushCache(&cache);