taglinefilesource code
to509fs/buffer.c#define COPYBLK(from,to) \
to511fs/buffer.c::"c" (BLOCK_SIZE/4),"S" (from),"D" (to) \
to134fs/msdos/file.cchar *start,*to,ch;
to173fs/msdos/file.cto = data+(filp->f_pos & (SECTOR_SIZE-1));
to175fs/msdos/file.c*to++ = '\n';
to181fs/msdos/file.c*to++ = '\r';
to186fs/msdos/file.c*to++ = ch;
to40include/asm/segment.hextern inline void memcpy_tofs(void * to, const 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, const void * from, unsigned long n)
to70include/asm/segment.h::"c" (n),"D" ((long) to),"S" ((long) from)
to11include/linux/iso_fs.h#define ISODCL(from, to) (to - from + 1)
to96include/linux/mm.hextern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask);
to331include/linux/string.hextern inline void * memcpy(void * to, const void * from, size_t n)
to344include/linux/string.h::"d" (n),"D" ((long) to),"S" ((long) from)
to346include/linux/string.hreturn (to);
to351kernel/blk_drv/floppy.c#define copy_buffer(from,to) \
to353kernel/blk_drv/floppy.c::"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \
to391kernel/blk_drv/scsi/scsi_debug.cint to;
to428kernel/blk_drv/scsi/scsi_debug.cto = timeout[i];
to441kernel/blk_drv/scsi/scsi_debug.cprintk("...done %d %x %d %d\n",i , my_done, to, jiffies);
to39kernel/chr_drv/pty.cstatic inline void pty_copy(struct tty_struct * from, struct tty_struct * to)
to44kernel/chr_drv/pty.cif (FULL(&to->read_q)) {
to45kernel/chr_drv/pty.cif (FULL(&to->secondary))
to47kernel/chr_drv/pty.cTTY_READ_FLUSH(to);
to51kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
to55kernel/chr_drv/pty.cTTY_READ_FLUSH(to);
to56mm/memory.c#define copy_page(from,to) \
to57mm/memory.c__asm__("cld ; rep ; movsl"::"S" (from),"D" (to),"c" (1024):"cx","di","si")
to344mm/memory.cint remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask)
to356mm/memory.cif ((from & 0xfff) || (to & 0xfff)) {
to357mm/memory.cprintk("remap_page_range: from = %08x, to=%08x\n",from,to);
to398mm/memory.cif (!mask || to >= high_memory || !mem_map[MAP_NR(to)])
to402mm/memory.c*page_table++ = (to | mask);
to403mm/memory.cif (!(mem_map[MAP_NR(to)] & MAP_PAGE_RESERVED))
to404mm/memory.cmem_map[MAP_NR(to)]++;
to406mm/memory.cto += PAGE_SIZE;
to615mm/memory.cunsigned long to;
to636mm/memory.cto = *(unsigned long *) to_page;
to637mm/memory.cif (!(to & PAGE_PRESENT))
to639mm/memory.cto &= 0xfffff000;
to640mm/memory.cto_page = to + ((address>>10) & 0xffc);
to646mm/memory.cto = newpage | PAGE_PRIVATE;
to650mm/memory.cto = from;
to654mm/memory.c*(unsigned long *) to_page = to;
to260net/tcp/dev.cunsigned char *to;
to282net/tcp/dev.cto = (unsigned char *)(skb+1);
to287net/tcp/dev.cmemcpy (to, buff, amount);
to290net/tcp/dev.cto += amount;
to225net/tcp/packet.cpacket_recvfrom (volatile struct sock *sk, unsigned char *to, int len,
to284net/tcp/packet.cverify_area (VERIFY_WRITE, to, copied);
to285net/tcp/packet.cmemcpy_tofs (to, skb+1,  copied);
to364net/tcp/raw.craw_recvfrom (volatile struct sock *sk, unsigned char *to, int len,
to374net/tcp/raw.c"              sin=%X, addr_len=%X)\n", sk, to, len, noblock,
to425net/tcp/raw.cverify_area (VERIFY_WRITE, to, copied);
to426net/tcp/raw.cmemcpy_tofs (to, skb->h.raw,  copied);
to119net/tcp/sock.hint (*read)(volatile struct sock *sk, unsigned char *to, int len,
to121net/tcp/sock.hint (*write)(volatile struct sock *sk, unsigned char *to, int len,
to1109net/tcp/tcp.cunsigned char *to, int len, unsigned flags)
to1115net/tcp/tcp.csk, to, len, flags));
to1187net/tcp/tcp.cverify_area (VERIFY_WRITE, to, amt);
to1188net/tcp/tcp.cmemcpy_tofs (to, (unsigned char *)(skb->h.th) +
to1210net/tcp/tcp.ctcp_read (volatile struct sock *sk, unsigned char *to,
to1229net/tcp/tcp.creturn (tcp_read_urg (sk, nonblock, to, len, flags));
to1239net/tcp/tcp.csk, to, len, nonblock, flags));
to1380net/tcp/tcp.cverify_area (VERIFY_WRITE, to, used);
to1381net/tcp/tcp.cmemcpy_tofs(to, ((unsigned char *)skb->h.th) +
to1387net/tcp/tcp.cto += used;
to1528net/tcp/tcp.ctcp_recvfrom (volatile struct sock *sk, unsigned char *to,
to1532net/tcp/tcp.cint result = tcp_read(sk, to, to_len, nonblock, flags);
to516net/tcp/udp.cudp_recvfrom (volatile struct sock *sk, unsigned char *to, int len,
to584net/tcp/udp.cverify_area (VERIFY_WRITE, to, copied);
to585net/tcp/udp.cmemcpy_tofs (to, skb->h.raw + sizeof (struct udp_header), copied);