OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mapped_io
(Results
1 - 7
of
7
) sorted by null
/external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
3dfx_mmio.h
30
#define tdfx_in8(reg) *(volatile Uint8 *)(
mapped_io
+ (reg))
31
#define tdfx_in32(reg) *(volatile Uint32 *)(
mapped_io
+ (reg))
33
#define tdfx_out8(reg,v) *(volatile Uint8 *)(
mapped_io
+ (reg)) = v;
34
#define tdfx_out32(reg,v) *(volatile Uint32 *)(
mapped_io
+ (reg)) = v;
matrox_mmio.h
30
#define mga_in8(reg) *(volatile Uint8 *)(
mapped_io
+ (reg))
31
#define mga_in32(reg) *(volatile Uint32 *)(
mapped_io
+ (reg))
33
#define mga_out8(reg,v) *(volatile Uint8 *)(
mapped_io
+ (reg)) = v;
34
#define mga_out32(reg,v) *(volatile Uint32 *)(
mapped_io
+ (reg)) = v;
SDL_fbriva.c
37
volatile Uint8 *port = (Uint8 *)(
mapped_io
+ PCIO_OFFSET + 0x3DA);
46
RivaRop *Rop = (RivaRop *)(
mapped_io
+ ROP_OFFSET);
48
(*(
mapped_io
+ PGRAPH_OFFSET + 0x000006B0) & 0x01) )
53
RivaRop *Rop = (RivaRop *)(
mapped_io
+ ROP_OFFSET);
55
(*(
mapped_io
+ PGRAPH_OFFSET + 0x00000700) & 0x01) )
77
RivaBitmap *Bitmap = (RivaBitmap *)(
mapped_io
+ BITMAP_OFFSET);
118
RivaScreenBlt *Blt = (RivaScreenBlt *)(
mapped_io
+ BLT_OFFSET);
188
RivaRop *Rop = (RivaRop *)(
mapped_io
+ ROP_OFFSET);
riva_regs.h
29
/*
mapped_io
register offsets */
SDL_fbvideo.h
74
char *
mapped_io
;
member in struct:SDL_PrivateVideoData
115
#define
mapped_io
(this->hidden->
mapped_io
)
macro
3dfx_regs.h
29
/*
mapped_io
register offsets */
SDL_fbvideo.c
614
mapped_io
= do_mmap(NULL, mapped_iolen, PROT_READ|PROT_WRITE,
616
if (
mapped_io
== (char *)-1 ) {
618
mapped_io
= NULL;
683
if (
mapped_io
) {
[
all
...]
Completed in 48 milliseconds