Searched refs:pointer_reservation (Results 1 - 9 of 9) sorted by relevance

/haiku/src/add-ons/accelerants/skeleton/
H A DInitAccelerant.c99 int pointer_reservation; //mem reserved for pointer local
155 pointer_reservation = 0;
157 if (si->settings.hardcursor) pointer_reservation = 2048;
159 si->fbc.frame_buffer = (void *)((char *)si->framebuffer+pointer_reservation);
160 si->fbc.frame_buffer_dma = (void *)((char *)si->framebuffer_pci+pointer_reservation);
H A DProposeDisplayMode.c117 uint32 max_vclk, row_bytes, pointer_reservation; local
373 pointer_reservation = 0;
374 if (si->settings.hardcursor) pointer_reservation = 2048;
377 (si->ps.memory_size - pointer_reservation))
380 (si->ps.memory_size - pointer_reservation) / row_bytes;
447 if (((si->ps.memory_size - pointer_reservation) >=
455 if ((si->ps.memory_size - pointer_reservation) >=
462 if ((si->ps.memory_size - pointer_reservation) >=
/haiku/src/add-ons/accelerants/nvidia/
H A DInitAccelerant.c100 int pointer_reservation; //mem reserved for pointer local
163 pointer_reservation = 0;
165 if (si->settings.hardcursor) pointer_reservation = 2048;
167 si->fbc.frame_buffer = (void *)((char *)si->framebuffer+pointer_reservation);
168 si->fbc.frame_buffer_dma = (void *)((char *)si->framebuffer_pci+pointer_reservation);
/haiku/src/add-ons/accelerants/matrox/
H A DInitAccelerant.c100 int pointer_reservation; //mem reserved for pointer local
166 pointer_reservation = 0;
169 pointer_reservation = 1024;
171 si->fbc.frame_buffer = (void *)((char *)si->framebuffer+pointer_reservation);
172 si->fbc.frame_buffer_dma = (void *)((char *)si->framebuffer_pci+pointer_reservation);
H A DProposeDisplayMode.c125 uint32 max_vclk, row_bytes, pointer_reservation; local
255 pointer_reservation = 0;
257 if ((si->ps.card_type >= G100) && si->settings.hardcursor) pointer_reservation = 1024;
260 ((si->ps.memory_size * 1024 * 1024) - pointer_reservation))
263 ((si->ps.memory_size * 1024 * 1024) - pointer_reservation) / row_bytes;
336 if ((((si->ps.memory_size * 1024 * 1024) - pointer_reservation) >=
344 if (((si->ps.memory_size * 1024 * 1024) - pointer_reservation) >=
351 if (((si->ps.memory_size * 1024 * 1024) - pointer_reservation) >=
/haiku/src/add-ons/accelerants/via/
H A DInitAccelerant.c100 int pointer_reservation; //mem reserved for pointer local
156 pointer_reservation = 0;
158 if (si->settings.hardcursor) pointer_reservation = 4096;
160 si->fbc.frame_buffer = (void *)((char *)si->framebuffer+pointer_reservation);
161 si->fbc.frame_buffer_dma = (void *)((char *)si->framebuffer_pci+pointer_reservation);
H A DProposeDisplayMode.c119 uint32 max_vclk, row_bytes, pointer_reservation; local
375 pointer_reservation = 0;
376 if (si->settings.hardcursor) pointer_reservation = 2048;
379 (si->ps.memory_size - pointer_reservation))
382 (si->ps.memory_size - pointer_reservation) / row_bytes;
449 if (((si->ps.memory_size - pointer_reservation) >=
457 if ((si->ps.memory_size - pointer_reservation) >=
464 if ((si->ps.memory_size - pointer_reservation) >=
/haiku/src/add-ons/accelerants/neomagic/
H A DProposeDisplayMode.c70 uint32 row_bytes, pointer_reservation; local
245 pointer_reservation = 0;
246 if (si->settings.hardcursor) pointer_reservation = si->ps.curmem_size;
249 ((si->ps.memory_size * 1024) - pointer_reservation))
252 ((si->ps.memory_size * 1024) - pointer_reservation) / row_bytes;
/haiku/src/add-ons/accelerants/matrox/engine/
H A Dmga_maven.c37 uint32 x, screensize, pointer_reservation; local
44 pointer_reservation = 0;
46 if ((si->ps.card_type >= G100) && si->settings.hardcursor) pointer_reservation = 1024;
52 if ((screensize + si->fbc.bytes_per_row + pointer_reservation) <=

Completed in 109 milliseconds