taglinefilesource code
to399fs/buffer.c#define COPYBLK(from,to) \
to403fs/buffer.c::"c" (BLOCK_SIZE/4),"S" (from),"D" (to) \
to131fs/msdos/file.cchar *start,*to,ch;
to170fs/msdos/file.cto = data+(filp->f_pos & (SECTOR_SIZE-1));
to172fs/msdos/file.c*to++ = '\n';
to178fs/msdos/file.c*to++ = '\r';
to183fs/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)
to84include/linux/mm.hextern int remap_page_range(unsigned long from, unsigned long to, unsigned long size,
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)) \
to37kernel/chr_drv/pty.cstatic inline void pty_copy(struct tty_struct * from, struct tty_struct * to)
to42kernel/chr_drv/pty.cif (FULL(&to->read_q)) {
to43kernel/chr_drv/pty.cif (FULL(&to->secondary))
to45kernel/chr_drv/pty.cTTY_READ_FLUSH(to);
to49kernel/chr_drv/pty.cput_tty_queue(c, &to->read_q);
to53kernel/chr_drv/pty.cTTY_READ_FLUSH(to);
to53mm/memory.c#define copy_page(from,to) \
to54mm/memory.c__asm__("cld ; rep ; movsl"::"S" (from),"D" (to),"c" (1024):"cx","di","si")
to292mm/memory.cint remap_page_range(unsigned long from, unsigned long to, unsigned long size,
to299mm/memory.cif ((from & 0xfff) || (to & 0xfff))
to353mm/memory.cif (mask == 4 || to >= high_memory || !mem_map[MAP_NR(to)])
to357mm/memory.c*page_table++ = (to | mask);
to358mm/memory.cif (!(mem_map[MAP_NR(to)] & MAP_PAGE_RESERVED))
to359mm/memory.cmem_map[MAP_NR(to)]++;
to361mm/memory.cto += PAGE_SIZE;
to554mm/memory.cunsigned long to;
to576mm/memory.cto = *(unsigned long *) to_page;
to577mm/memory.cif (!(to & 1)) {
to578mm/memory.cto = get_free_page(GFP_KERNEL);
to579mm/memory.cif (!to)
to581mm/memory.c*(unsigned long *) to_page = to | PAGE_ACCESSED | 7;
to583mm/memory.cto &= 0xfffff000;
to584mm/memory.cto_page = to + ((address>>10) & 0xffc);
to184net/tcp/dev.cunsigned char *to;
to203net/tcp/dev.cto = (unsigned char *)(skb+1);
to208net/tcp/dev.cmemcpy (to, buff, amount);
to211net/tcp/dev.cto += amount;
to198net/tcp/packet.cpacket_recvfrom (volatile struct sock *sk, unsigned char *to, int len,
to253net/tcp/packet.cverify_area (to, copied);
to254net/tcp/packet.cmemcpy_tofs (to, skb+1,  copied);
to257net/tcp/raw.craw_recvfrom (volatile struct sock *sk, unsigned char *to, int len,
to308net/tcp/raw.cverify_area (to, copied);
to309net/tcp/raw.cmemcpy_tofs (to, skb->h.raw,  copied);
to88net/tcp/sock.hint (*read)(volatile struct sock *sk, unsigned char *to, int len,
to90net/tcp/sock.hint (*write)(volatile struct sock *sk, unsigned char *to, int len,
to763net/tcp/tcp.cunsigned char *to, int len, unsigned flags)
to768net/tcp/tcp.csk, to, len, flags);
to805net/tcp/tcp.cverify_area (to, amt);
to806net/tcp/tcp.cmemcpy_tofs (to, (unsigned char *)(skb->h.th) +
to825net/tcp/tcp.ctcp_read(volatile struct sock *sk, unsigned char *to,
to853net/tcp/tcp.creturn (tcp_read_urg (sk, to, len, flags));
to865net/tcp/tcp.csk, to, len, nonblock, flags);
to959net/tcp/tcp.cverify_area (to, used);
to960net/tcp/tcp.cmemcpy_tofs(to, ((unsigned char *)skb->h.th) +
to966net/tcp/tcp.cto += used;
to437net/tcp/udp.cudp_recvfrom (volatile struct sock *sk, unsigned char *to, int len,
to499net/tcp/udp.cverify_area (to, copied);
to500net/tcp/udp.cmemcpy_tofs (to, skb->h.raw + sizeof (struct udp_header), copied);