Home
last modified time | relevance | path

Searched refs:mmap (Results 1 – 25 of 202) sorted by relevance

123456789

/linux-2.4.37.9/drivers/char/agp/
Dagp.h128 #define OUTREG64(mmap, addr, val) __raw_writeq((val), (mmap)+(addr)) argument
129 #define OUTREG32(mmap, addr, val) __raw_writel((val), (mmap)+(addr)) argument
130 #define OUTREG16(mmap, addr, val) __raw_writew((val), (mmap)+(addr)) argument
131 #define OUTREG8(mmap, addr, val) __raw_writeb((val), (mmap)+(addr)) argument
133 #define INREG64(mmap, addr) __raw_readq((mmap)+(addr)) argument
134 #define INREG32(mmap, addr) __raw_readl((mmap)+(addr)) argument
135 #define INREG16(mmap, addr) __raw_readw((mmap)+(addr)) argument
136 #define INREG8(mmap, addr) __raw_readb((mmap)+(addr)) argument
/linux-2.4.37.9/drivers/usb/
Dw9968cf.c3428 struct video_mmap mmap; in w9968cf_v4l_ioctl() local
3432 if (copy_from_user(&mmap, arg, sizeof(mmap))) in w9968cf_v4l_ioctl()
3436 mmap.frame, symbolic(v4l1_plist, mmap.format), in w9968cf_v4l_ioctl()
3437 mmap.width, mmap.height) in w9968cf_v4l_ioctl()
3439 if (mmap.frame >= cam->nbuffers) { in w9968cf_v4l_ioctl()
3441 "VIDIOCMCAPTURE failed.", mmap.frame) in w9968cf_v4l_ioctl()
3445 if (mmap.format!=cam->picture.palette && in w9968cf_v4l_ioctl()
3448 symbolic(v4l1_plist, mmap.format), in w9968cf_v4l_ioctl()
3453 if (!w9968cf_valid_palette(mmap.format)) { in w9968cf_v4l_ioctl()
3456 symbolic(v4l1_plist, mmap.format)) in w9968cf_v4l_ioctl()
[all …]
/linux-2.4.37.9/drivers/pcmcia/
Dtcic.c879 u_long base, mmap; in tcic_get_mem_map() local
899 mmap = tcic_getw(TCIC_DATA); in tcic_get_mem_map()
900 mem->flags = (mmap & TCIC_MMAP_REG) ? MAP_ATTRIB : 0; in tcic_get_mem_map()
901 mmap &= TCIC_MMAP_CA_MASK; in tcic_get_mem_map()
902 mem->card_start = mem->sys_start + (mmap << TCIC_MMAP_CA_SHFT); in tcic_get_mem_map()
924 u_long base, len, mmap; in tcic_set_mem_map() local
945 mmap = mem->card_start - mem->sys_start; in tcic_set_mem_map()
946 mmap = (mmap >> TCIC_MMAP_CA_SHFT) & TCIC_MMAP_CA_MASK; in tcic_set_mem_map()
947 if (mem->flags & MAP_ATTRIB) mmap |= TCIC_MMAP_REG; in tcic_set_mem_map()
949 tcic_setw(TCIC_DATA, mmap); in tcic_set_mem_map()
/linux-2.4.37.9/Documentation/sound/
Des137117 code in the presence of the mmap interface to the driver.
18 And since xquake uses mmap, mmap is considered important :-)
Dsolo131 code in the presence of the mmap interface to the driver.
32 And since xquake uses mmap, mmap is considered important :-)
Des137017 code in the presence of the mmap interface to the driver.
18 And since xquake uses mmap, mmap is considered important :-)
Dsonicvibes17 code in the presence of the mmap interface to the driver.
18 And since xquake uses mmap, mmap is considered important :-)
Dforte25 unsupported mmap() interface used by Quake. mmap() is only supported
/linux-2.4.37.9/mm/
Dmmap.c232 struct vm_area_struct * tmp = mm->mmap; in validate_mm()
292 mm->mmap = vma; in __vma_link_list()
407 if (!file->f_op || !file->f_op->mmap) in do_mmap_pgoff()
547 error = file->f_op->mmap(file, vma); in do_mmap_pgoff()
581 file ? file->f_op->mmap : NULL); in do_mmap_pgoff()
753 if ((rb_prev ? (*pprev)->vm_next : mm->mmap) != vma) in find_vma_prev()
900 prev = mm->mmap; in free_pgtables()
980 npp = (prev ? &prev->vm_next : &mm->mmap); in do_munmap()
1160 for (vma = mm->mmap; vma; vma = vma->vm_next) { in build_mmap_rb()
1174 mpnt = mm->mmap; in exit_mmap()
[all …]
DMakefile14 obj-y := memory.o mmap.o filemap.o mprotect.o mlock.o mremap.o \
/linux-2.4.37.9/fs/coda/
Dfile.c87 if (!host_file->f_op || !host_file->f_op->mmap) in coda_file_mmap()
105 return host_file->f_op->mmap(host_file, vma); in coda_file_mmap()
286 mmap: coda_file_mmap,
/linux-2.4.37.9/fs/ufs/
Dfile.c48 mmap: generic_file_mmap,
/linux-2.4.37.9/fs/adfs/
Dfile.c34 mmap: generic_file_mmap,
/linux-2.4.37.9/fs/qnx4/
Dfile.c32 mmap: generic_file_mmap,
/linux-2.4.37.9/include/linux/
Dnet.h111 int (*mmap) (struct file *file, struct socket *sock, struct vm_area_struct * vma); member
204 SOCKCALL_WRAP(name, mmap, (struct file *file, struct socket *sock, struct vm_area_struct *vma), \
224 mmap: __lock_##name##_mmap, \
/linux-2.4.37.9/fs/ext2/
Dfile.c46 mmap: generic_file_mmap,
/linux-2.4.37.9/fs/ncpfs/
DMakefile12 obj-y := dir.o file.o inode.o ioctl.o mmap.o ncplib_kernel.o sock.o \
/linux-2.4.37.9/drivers/char/
Dfetchop.c80 mmap: fetchop_mmap,
250 fetchop_update_stats(int mmap, long count) in fetchop_update_stats() argument
258 fetchop_stats.map_count += mmap; in fetchop_update_stats()
/linux-2.4.37.9/fs/sysv/
Dfile.c27 mmap: generic_file_mmap,
/linux-2.4.37.9/fs/minix/
Dfile.c22 mmap: generic_file_mmap,
/linux-2.4.37.9/Documentation/
Dmandatory.txt80 mmap() is another interesting case. All the operating systems mentioned
81 prevent mandatory locks from being applied to an mmap()'ed file, but HP-UX
120 shared (via mmap() with MAP_SHARED) will be rejected with the error status
123 6. Attempts to create a shared memory map of a file (via mmap() with MAP_SHARED)
131 write(), readv(), writev(), open(), creat(), mmap(), truncate() and
/linux-2.4.37.9/include/asm-ppc64/
Dsystemcfg.h90 ret = mmap(0, sizeof(struct systemcfg), PROT_READ, MAP_SHARED, fd, 0); in systemcfg_init()
/linux-2.4.37.9/fs/ext3/
Dfile.c118 mmap: generic_file_mmap,
/linux-2.4.37.9/drivers/media/video/
Dvino.c978 struct video_mmap *mmap = arg; in vino_do_ioctl() local
980 if (mmap->width != v->right - v->left || in vino_do_ioctl()
981 mmap->height != v->bottom - v->top || in vino_do_ioctl()
982 mmap->format != v->picture.palette || in vino_do_ioctl()
983 mmap->frame != 0) in vino_do_ioctl()
986 return vino_grab(v, mmap->frame); in vino_do_ioctl()
1015 .mmap = vino_mmap,
/linux-2.4.37.9/fs/proc/
Darray.c190 for (vma = mm->mmap; vma; vma = vma->vm_next) { in task_mem()
335 vma = mm->mmap; in proc_pid_stat()
502 vma = mm->mmap; in proc_pid_statm()
588 map = mm->mmap; in m_start()

123456789