HomeSort by relevance Sort by last modified time
    Searched refs:mapped_mem (Results 1 - 6 of 6) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsvideo.h 59 caddr_t mapped_mem; member in struct:SDL_PrivateVideoData
81 #define mapped_mem (this->hidden->mapped_mem) macro
SDL_gsvideo.c 465 if ( mapped_mem ) {
466 munmap(mapped_mem, mapped_len);
467 mapped_mem = NULL;
484 if ( ! mapped_mem ) {
492 mapped_mem = mmap(0, mapped_len, PROT_READ|PROT_WRITE,
494 if ( mapped_mem == MAP_FAILED ) {
497 mapped_mem = NULL;
502 screen_image.ptr = mapped_mem;
533 (mapped_mem + pixels_len);
602 surface->pixels = mapped_mem + surface->offset
    [all...]
SDL_gsmouse.c 72 screen->pixels = mapped_mem + screen->offset;
112 image.ptr = mapped_mem +
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
SDL_fbvideo.h 79 char *mapped_mem; member in struct:SDL_PrivateVideoData
125 #define mapped_mem (this->hidden->mapped_mem) macro
192 *x = (long)((char *)dst->pixels - mapped_mem)%this->screen->pitch;
193 *y = (long)((char *)dst->pixels - mapped_mem)/this->screen->pitch;
SDL_fb3dfx.c 68 dst_base = ((char *)dst->pixels - mapped_mem);
115 src_base = ((char *)src->pixels - mapped_mem);
118 dst_base = ((char *)dst->pixels - mapped_mem);
SDL_fbvideo.c 583 mapped_mem = do_mmap(NULL, mapped_memlen,
585 if ( mapped_mem == (char *)-1 ) {
587 mapped_mem = NULL;
    [all...]

Completed in 602 milliseconds