Home
last modified time | relevance | path

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