Lines Matching defs:size
219 uint32_t size;
238 } else if (startswith(line, " size:")) {
239 parseline(line, " size: %d", &ringbuffers[id].size);
241 ringbuffers[id].buf = popline_ascii85(ringbuffers[id].size / 4);
242 add_buffer(ringbuffers[id].iova, ringbuffers[id].size,
259 uint32_t size;
264 } else if (startswith(line, " size:")) {
265 parseline(line, " size: %u", &size);
267 void *buf = popline_ascii85(size / 4);
269 dump_hex_ascii(buf, size, 1);
295 } else if (startswith(line, " size:")) {
296 parseline(line, " size: %u", &hfi.size);
309 hfi.buf = popline_ascii85(hfi.size / 4);
312 dump_hex_ascii(hfi.buf, hfi.size, 1);
352 /* Adjust remaining size to account for cmdstream slurped into ROQ
377 if (!ringbuffers[id].size)
386 unsigned ringszdw = ringbuffers[id].size >> 2; /* in dwords */
393 /* helper macro to deal with modulo size math: */
433 uint32_t size = 0;
439 } else if (startswith(line, " size:")) {
440 parseline(line, " size: %u", &size);
442 uint32_t *buf = popline_ascii85(size / 4);
445 dump_hex_ascii(buf, size, 1);
447 add_buffer(iova, size, buf);
568 * all the same size, so the rest of the 4096 DWORD's are filled with
663 } else if (startswith(line, " size:")) {
664 parseline(line, " size: %u", &sizedwords);