Searched defs:row (Results 1 - 2 of 2) sorted by relevance

/bootable/recovery/minui/
H A Dresources.c133 // gr_blit() can be nothing more than a memcpy() for each row. The
162 // 'width' is the number of pixels in the row.
397 unsigned char* row = malloc(width); local
400 png_read_row(png_ptr, row, NULL);
401 int w = (row[1] << 8) | row[0];
402 int h = (row[3] << 8) | row[2];
403 int len = row[4];
404 char* loc = (char*)row
[all...]
/bootable/recovery/
H A Dscreen_ui.cpp250 int row = (text_top+text_rows-1) % text_rows; local
254 gr_text(4, ty, text[row], 0);
255 --row;
256 if (row < 0) row = text_rows-1;

Completed in 131 milliseconds