taglinefilesource code
to361fs/buffer.c#define COPYBLK(from,to) \
to365fs/buffer.c::"c" (BLOCK_SIZE/4),"S" (from),"D" (to) \
to130fs/msdos/file.cchar *start,*to,ch;
to166fs/msdos/file.cto = data+(filp->f_pos & (SECTOR_SIZE-1));
to168fs/msdos/file.c*to++ = '\n';
to174fs/msdos/file.c*to++ = '\r';
to179fs/msdos/file.c*to++ = ch;
to40include/asm/segment.hextern inline void memcpy_tofs(void * to, void * from, unsigned long n)
to55include/asm/segment.h::"c" (n),"D" ((long) to),"S" ((long) from)
to59include/asm/segment.hextern inline void memcpy_fromfs(void * to, void * from, unsigned long n)
to70include/asm/segment.h::"c" (n),"D" ((long) to),"S" ((long) from)
to64include/linux/mm.hextern int copy_page_tables(unsigned long from,unsigned long to,long size);
to66include/linux/mm.hextern int remap_page_range(unsigned long from, unsigned long to, unsigned long size,
to338kernel/blk_drv/floppy.c#define copy_buffer(from,to) \
to340kernel/blk_drv/floppy.c::"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \
to53kernel/chr_drv/pty.cstatic inline void pty_copy(struct tty_struct * from, struct tty_struct * to)
to58kernel/chr_drv/pty.cif (FULL(to->read_q)) {
to59kernel/chr_drv/pty.cif (FULL(to->secondary))
to61kernel/chr_drv/pty.cTTY_READ_FLUSH(to);
to65kernel/chr_drv/pty.cput_tty_queue(c,to->read_q);
to69kernel/chr_drv/pty.cTTY_READ_FLUSH(to);
to69kernel/signal.cstatic inline void save_old(char * from,char * to)
to73kernel/signal.cverify_area(to, sizeof(struct sigaction));
to75kernel/signal.cput_fs_byte(*from,to);
to77kernel/signal.cto++;
to81kernel/signal.cstatic inline void get_new(char * from,char * to)
to86kernel/signal.c*(to++) = get_fs_byte(from++);
to46mm/memory.c#define copy_page(from,to) \
to47mm/memory.c__asm__("cld ; rep ; movsl"::"S" (from),"D" (to),"c" (1024):"cx","di","si")
to144mm/memory.cint copy_page_tables(unsigned long from,unsigned long to,long size)
to153mm/memory.cif ((from&0x3fffff) || (to&0x3fffff))
to156mm/memory.cto_dir = (unsigned long *) ((to>>20) & 0xffc);
to276mm/memory.cint remap_page_range(unsigned long from, unsigned long to, unsigned long size,
to283mm/memory.cif ((from & 0xfff) || (to & 0xfff))
to337mm/memory.cif (mask == 4 || to >= high_memory)
to341mm/memory.c*page_table++ = (to | mask);
to342mm/memory.cif (to > low_memory) {
to344mm/memory.cframe = to - low_memory;
to350mm/memory.cto += PAGE_SIZE;
to557mm/memory.cunsigned long to;
to578mm/memory.cto = *(unsigned long *) to_page;
to579mm/memory.cif (!(to & 1)) {
to580mm/memory.cto = get_free_page(GFP_KERNEL);
to581mm/memory.cif (!to)
to583mm/memory.c*(unsigned long *) to_page = to | 7;
to585mm/memory.cto &= 0xfffff000;
to586mm/memory.cto_page = to + ((address>>10) & 0xffc);