Lines Matching refs:rec
65 const alloc_rec_t& rec(list.valueAt(i)); in dump() local
66 if (rec.size) { in dump()
68 list.keyAt(i), rec.size/1024.0f, in dump()
69 rec.w, rec.s, rec.h, rec.format, rec.usage); in dump()
73 rec.w, rec.s, rec.h, rec.format, rec.usage); in dump()
76 total += rec.size; in dump()
119 alloc_rec_t rec; in alloc() local
120 rec.w = w; in alloc()
121 rec.h = h; in alloc()
122 rec.s = *stride; in alloc()
123 rec.format = format; in alloc()
124 rec.usage = usage; in alloc()
125 rec.size = h * stride[0] * bpp; in alloc()
126 list.add(*handle, rec); in alloc()