Home
last modified time | relevance | path

Searched refs:PCIGRPHW (Results 1 – 2 of 2) sorted by relevance

/haiku/src/add-ons/accelerants/neomagic/engine/
H A Dnm_bes.c314 PCIGRPHW(GENLOCK, (PCIGRPHR(GENLOCK) | 0x20)); in nm_bes_program_move_overlay()
316 PCIGRPHW(HD1COORD1L, ((moi.hcoordv >> 16) & 0xff)); in nm_bes_program_move_overlay()
317 PCIGRPHW(HD1COORD2L, (moi.hcoordv & 0xff)); in nm_bes_program_move_overlay()
318 PCIGRPHW(HD1COORD21H, (((moi.hcoordv >> 4) & 0xf0) | ((moi.hcoordv >> 24) & 0x0f))); in nm_bes_program_move_overlay()
319 PCIGRPHW(VD1COORD1L, ((moi.vcoordv >> 16) & 0xff)); in nm_bes_program_move_overlay()
320 PCIGRPHW(VD1COORD2L, (moi.vcoordv & 0xff)); in nm_bes_program_move_overlay()
321 PCIGRPHW(VD1COORD21H, (((moi.vcoordv >> 4) & 0xf0) | ((moi.vcoordv >> 24) & 0x0f))); in nm_bes_program_move_overlay()
336 PCIGRPHW(0xbc, ((((moi.hsrcendv >> 16) + 9) >> 3) - 1)); in nm_bes_program_move_overlay()
349 PCIGRPHW(0xbc, ((((moi.hsrcendv >> 16) + 17) >> 4) - 1)); in nm_bes_program_move_overlay()
351 PCIGRPHW(BUF1ORGL, (moi.a1orgv & 0xff)); in nm_bes_program_move_overlay()
[all …]
/haiku/headers/private/graphics/neomagic/
H A Dnm_macros.h337 #define PCIGRPHW(A,B)(NM_2REG16(NM2PCI16_GRPHIND) = ((NMGRPHX_##A) | ((B) << 8))) macro