Lines Matching defs:total
136 unsigned total = 0;
147 total = gmem->cbuf_base[i] + size;
158 total = gmem->zsbuf_base[i] + size;
161 printf("total: 0x%06x (of 0x%06x)\n", total, gmem->screen->gmemsize_bytes);
176 uint32_t total = 0, i;
202 gmem->cbuf_base[i] = util_align_npot(total, gmem_align);
203 total = gmem->cbuf_base[i] + key->cbuf_cpp[i] * bin_w * bin_h;
208 gmem->zsbuf_base[0] = util_align_npot(total, gmem_align);
209 total = gmem->zsbuf_base[0] + key->zsbuf_cpp[0] * bin_w * bin_h;
213 gmem->zsbuf_base[1] = util_align_npot(total, gmem_align);
214 total = gmem->zsbuf_base[1] + key->zsbuf_cpp[1] * bin_w * bin_h;
217 return total <= screen->gmemsize_bytes;