Lines Matching refs:uint32_t

150 static uint32_t gc_buffer_columns;
151 static uint32_t gc_buffer_rows;
152 static uint32_t gc_buffer_size;
336 uint32_t start, end;
372 uint32_t buffer_columns = 0;
373 uint32_t buffer_rows = 0;
374 uint32_t buffer_size = 0;
490 uint32_t index = (yy * gc_buffer_columns) + xx;
532 uint32_t index = (yy * gc_buffer_columns) + xx;
1041 uint32_t column, row;
1042 uint32_t index, jump;
1150 uint32_t column, row;
1151 uint32_t index, jump;
1256 uint32_t index = (yy * gc_buffer_columns) + xx;
1323 static uint32_t vc_colors[8][4] = {
1335 static uint32_t vc_color_fore = 0;
1336 static uint32_t vc_color_back = 0;
1346 static uint32_t vc_rendered_font_size = 0;
1358 uint32_t *p, *endp, *row;
1369 p = (uint32_t*) vinfo.v_baseaddr;
1370 endp = (uint32_t*) vinfo.v_baseaddr;
1409 uint32_t *longptr;
1443 uint32_t *theChar;
1444 uint32_t *where;
1448 theChar = (uint32_t*)(vc_rendered_font + (ch * vc_rendered_char_size));
1451 theChar = (uint32_t*)(vc_rendered_char);
1453 where = (uint32_t*)(vinfo.v_baseaddr +
1458 uint32_t *store = where;
1461 uint32_t val = *theChar++;
1466 where = (uint32_t*)(((unsigned char*)where)+vinfo.v_rowbytes);
1468 uint32_t *store = where, lastpixel = 0;
1471 uint32_t val = *theChar++, save = val;
1490 where = (uint32_t*)(((unsigned char*)where)+vinfo.v_rowbytes);
1500 uint32_t *theChar;
1501 uint32_t *where;
1505 theChar = (uint32_t*)(vc_rendered_font + (ch * vc_rendered_char_size));
1508 theChar = (uint32_t*)(vc_rendered_char);
1510 where = (uint32_t*)(vinfo.v_baseaddr +
1515 uint32_t *store = where;
1518 uint32_t val = *theChar++;
1523 where = (uint32_t*)(((unsigned char*)where)+vinfo.v_rowbytes);
1525 uint32_t *store = where, lastpixel = 0;
1528 uint32_t val = *theChar++, save = val;
1543 where = (uint32_t*)(((unsigned char*)where)+vinfo.v_rowbytes);
1552 uint32_t *theChar;
1553 uint32_t *theCharPrevious;
1554 uint32_t *where;
1558 theChar = (uint32_t*)(vc_rendered_font + (ch * vc_rendered_char_size));
1559 theCharPrevious = (uint32_t*)(vc_rendered_font + (ch_previous * vc_rendered_char_size));
1562 theChar = (uint32_t*)(vc_rendered_char);
1571 where = (uint32_t*)(vinfo.v_baseaddr +
1576 uint32_t *store = where;
1579 uint32_t val = *theChar++;
1588 where = (uint32_t *)(((unsigned char*)where)+vinfo.v_rowbytes);
1590 uint32_t *store = where, lastpixel = 0;
1593 uint32_t val = *theChar++, save = val;
1606 where = (uint32_t*)(((unsigned char*)where)+vinfo.v_rowbytes);
1707 uint32_t *where;
1713 where = (uint32_t*)(vinfo.v_baseaddr +
1731 where = (uint32_t*)(((unsigned char*)where)+vinfo.v_rowbytes);
1738 uint32_t *from, *to, linelongs, i, line, rowline, rowscanline;
1747 to = (uint32_t *) vinfo.v_baseaddr + (linelongs * scrreg_bottom)
1771 uint32_t *from, *to, linelongs, i, line, rowline, rowscanline;
1780 to = (uint32_t *) vinfo.v_baseaddr + (scrreg_top * linelongs);
1824 static uint32_t vc_progress_interval;
1825 static uint32_t vc_progress_count;
1826 static uint32_t vc_progress_angle;
2169 uint32_t col;
2170 uint32_t row;
2171 uint32_t width;
2172 uint32_t height;
2173 uint32_t bytes_per_row;
2174 volatile uint32_t * row_start;
2183 uint32_t palette_index = 0;
2184 uint32_t pixel_value = 0;
2188 pixel_value = ( (uint32_t) state->clut[palette_index + 0] << 16)
2189 | ( (uint32_t) state->clut[palette_index + 1] << 8)
2190 | ( (uint32_t) state->clut[palette_index + 2]);
2199 state->row_start = (volatile uint32_t *) (((uintptr_t)state->row_start) + state->bytes_per_row);
2236 vc_display_lzss_icon(uint32_t dst_x, uint32_t dst_y,
2237 uint32_t image_width, uint32_t image_height,
2239 uint32_t compressed_size,
2242 uint32_t* image_start;
2243 uint32_t bytes_per_pixel = 4;
2244 uint32_t bytes_per_row = vinfo.v_rowbytes;
2246 image_start = (uint32_t *) (vinfo.v_baseaddr + (dst_y * bytes_per_row) + (dst_x * bytes_per_pixel));
2253 uint32_t srclen = compressed_size;
2353 vc_progress_interval = (uint32_t)abstime;
2357 vc_progress_set(boolean_t enable, uint32_t vc_delay)
2610 panic("initialize_screen: Strange framebuffer - addr = %08X\n", (uint32_t)boot_vinfo->v_baseAddr);