tag | line | file | source code |
to | 431 | drivers/block/floppy.c | #define copy_buffer(from,to) \ |
to | 434 | drivers/block/floppy.c | :"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \ |
to | 54 | drivers/char/pty.c | static inline void pty_copy(struct tty_struct * from, struct tty_struct * to) |
to | 62 | drivers/char/pty.c | tq = &to->read_q; |
to | 72 | drivers/char/pty.c | TTY_READ_FLUSH(to); |
to | 391 | drivers/scsi/scsi_debug.c | int to; |
to | 428 | drivers/scsi/scsi_debug.c | to = timeout[i]; |
to | 441 | drivers/scsi/scsi_debug.c | printk("...done %d %x %d %d\n",i , my_done, to, jiffies); |
to | 819 | fs/buffer.c | #define COPYBLK(size,from,to) \ |
to | 821 | fs/buffer.c | :"c" (((unsigned long) size) >> 2),"S" (from),"D" (to) \ |
to | 140 | fs/msdos/file.c | char *start,*to,ch; |
to | 179 | fs/msdos/file.c | to = (char *) data+(filp->f_pos & (SECTOR_SIZE-1)); |
to | 181 | fs/msdos/file.c | *to++ = '\n'; |
to | 187 | fs/msdos/file.c | *to++ = '\r'; |
to | 192 | fs/msdos/file.c | *to++ = ch; |
to | 600 | fs/namei.c | char * from, * to; |
to | 604 | fs/namei.c | error = getname(newname,&to); |
to | 606 | fs/namei.c | error = do_symlink(from,to); |
to | 607 | fs/namei.c | putname(to); |
to | 659 | fs/namei.c | char * to; |
to | 665 | fs/namei.c | error = getname(newname,&to); |
to | 670 | fs/namei.c | error = do_link(oldinode,to); |
to | 671 | fs/namei.c | putname(to); |
to | 736 | fs/namei.c | char * from, * to; |
to | 740 | fs/namei.c | error = getname(newname,&to); |
to | 742 | fs/namei.c | error = do_rename(from,to); |
to | 743 | fs/namei.c | putname(to); |
to | 37 | fs/nfs/mmap.c | extern int file_mmap_share(struct vm_area_struct * from, struct vm_area_struct * to, |
to | 55 | include/asm/segment.h | static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n) |
to | 71 | include/asm/segment.h | :"c" (n),"D" ((long) to),"S" ((long) from) |
to | 75 | include/asm/segment.h | static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n) |
to | 81 | include/asm/segment.h | put_user_byte(*(const char *) from, (char *) to); |
to | 84 | include/asm/segment.h | put_user_word(*(const short *) from, (short *) to); |
to | 87 | include/asm/segment.h | put_user_word(*(const short *) from, (short *) to); |
to | 88 | include/asm/segment.h | put_user_byte(*(2+(const char *) from), 2+(char *) to); |
to | 91 | include/asm/segment.h | put_user_long(*(const int *) from, (int *) to); |
to | 103 | include/asm/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
to | 123 | include/asm/segment.h | static inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n) |
to | 135 | include/asm/segment.h | :"c" (n),"D" ((long) to),"S" ((long) from) |
to | 139 | include/asm/segment.h | static inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n) |
to | 145 | include/asm/segment.h | *(char *)to = get_user_byte((const char *) from); |
to | 148 | include/asm/segment.h | *(short *)to = get_user_word((const short *) from); |
to | 151 | include/asm/segment.h | *(short *) to = get_user_word((const short *) from); |
to | 152 | include/asm/segment.h | *(char *) to = get_user_byte(2+(const char *) from); |
to | 155 | include/asm/segment.h | *(int *) to = get_user_long((const int *) from); |
to | 163 | include/asm/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
to | 183 | include/asm/segment.h | #define memcpy_fromfs(to, from, n) \ |
to | 185 | include/asm/segment.h | __constant_memcpy_fromfs((to),(from),(n)) : \ |
to | 186 | include/asm/segment.h | __generic_memcpy_fromfs((to),(from),(n))) |
to | 188 | include/asm/segment.h | #define memcpy_tofs(to, from, n) \ |
to | 190 | include/asm/segment.h | __constant_memcpy_tofs((to),(from),(n)) : \ |
to | 191 | include/asm/segment.h | __generic_memcpy_tofs((to),(from),(n))) |
to | 11 | include/linux/iso_fs.h | #define ISODCL(from, to) (to - from + 1) |
to | 64 | include/linux/mm.h | int (*share)(struct vm_area_struct * from, struct vm_area_struct * to, unsigned long address); |
to | 112 | include/linux/mm.h | extern int copy_page_tables(struct task_struct * to); |
to | 113 | include/linux/mm.h | extern int clone_page_tables(struct task_struct * to); |
to | 115 | include/linux/mm.h | extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask); |
to | 335 | include/linux/string.h | extern inline void * memcpy(void * to, const void * from, size_t n) |
to | 349 | include/linux/string.h | :"d" (n),"D" ((long) to),"S" ((long) from) |
to | 351 | include/linux/string.h | return (to); |
to | 329 | init/main.c | static void copy_options(char * to, char * from) |
to | 336 | init/main.c | c = *(to++) = *(from++); |
to | 146 | kernel/module.c | struct kernel_sym *to; |
to | 151 | kernel/module.c | to = table; |
to | 152 | kernel/module.c | i = verify_area(VERIFY_WRITE, to, symbol_table_size * sizeof *table); |
to | 158 | kernel/module.c | memcpy_tofs(to, &sym, sizeof sym); |
to | 159 | kernel/module.c | from++, to++; |
to | 63 | mm/memory.c | #define copy_page(from,to) \ |
to | 64 | mm/memory.c | __asm__("cld ; rep ; movsl": :"S" (from),"D" (to),"c" (1024):"cx","di","si") |
to | 387 | mm/memory.c | int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask) |
to | 399 | mm/memory.c | if ((from & ~PAGE_MASK) || (to & ~PAGE_MASK)) { |
to | 400 | mm/memory.c | printk("remap_page_range: from = %08lx, to=%08lx\n",from,to); |
to | 445 | mm/memory.c | else if (to >= high_memory) |
to | 446 | mm/memory.c | *page_table++ = (to | mask); |
to | 447 | mm/memory.c | else if (!mem_map[MAP_NR(to)]) |
to | 450 | mm/memory.c | *page_table++ = (to | mask); |
to | 451 | mm/memory.c | if (!(mem_map[MAP_NR(to)] & MAP_PAGE_RESERVED)) { |
to | 453 | mm/memory.c | mem_map[MAP_NR(to)]++; |
to | 456 | mm/memory.c | to += PAGE_SIZE; |
to | 697 | mm/memory.c | unsigned long to; |
to | 718 | mm/memory.c | to = *(unsigned long *) to_page; |
to | 719 | mm/memory.c | if (!(to & PAGE_PRESENT)) |
to | 721 | mm/memory.c | to &= PAGE_MASK; |
to | 722 | mm/memory.c | to_page = to + PAGE_PTR(address); |
to | 730 | mm/memory.c | to = newpage | PAGE_PRIVATE; |
to | 734 | mm/memory.c | to = from; |
to | 739 | mm/memory.c | *(unsigned long *) to_page = to; |
to | 158 | net/inet/datagram.c | void skb_copy_datagram(struct sk_buff *skb, int offset, char *to, int size) |
to | 162 | net/inet/datagram.c | memcpy_tofs(to,skb->h.raw+offset,size); |
to | 527 | net/inet/dev.c | unsigned char *to; |
to | 553 | net/inet/dev.c | to = skb->data; |
to | 559 | net/inet/dev.c | memcpy(to, buff, amount); |
to | 563 | net/inet/dev.c | to += amount; |
to | 189 | net/inet/packet.c | packet_recvfrom(struct sock *sk, unsigned char *to, int len, |
to | 210 | net/inet/packet.c | err=verify_area(VERIFY_WRITE,to,len); |
to | 218 | net/inet/packet.c | memcpy_tofs(to, skb->data, copied); /* Don't use skb_copy_datagram here: We can't get frag chains */ |
to | 316 | net/inet/raw.c | raw_recvfrom(struct sock *sk, unsigned char *to, int len, |
to | 326 | net/inet/raw.c | sk, to, len, noblock, flags, sin, addr_len)); |
to | 345 | net/inet/raw.c | err=verify_area(VERIFY_WRITE,to,len); |
to | 355 | net/inet/raw.c | skb_copy_datagram(skb, 0, to, copied); |
to | 30 | net/inet/raw.h | extern int raw_recvfrom(struct sock *sk, unsigned char *to, |
to | 109 | net/inet/skbuff.h | extern void skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size); |
to | 187 | net/inet/sock.h | int (*read)(struct sock *sk, unsigned char *to, |
to | 189 | net/inet/sock.h | int (*write)(struct sock *sk, unsigned char *to, |
to | 1249 | net/inet/tcp.c | unsigned char *to, int len, unsigned flags) |
to | 1260 | net/inet/tcp.c | put_fs_byte(c, to); |
to | 1302 | net/inet/tcp.c | static int tcp_read(struct sock *sk, unsigned char *to, |
to | 1318 | net/inet/tcp.c | err = verify_area(VERIFY_WRITE, to, len); |
to | 1328 | net/inet/tcp.c | return tcp_read_urg(sk, nonblock, to, len, flags); |
to | 1424 | net/inet/tcp.c | memcpy_tofs(to,((unsigned char *)skb->h.th) + |
to | 1428 | net/inet/tcp.c | to += used; |
to | 1544 | net/inet/tcp.c | tcp_recvfrom(struct sock *sk, unsigned char *to, |
to | 1566 | net/inet/tcp.c | result=tcp_read(sk, to, to_len, nonblock, flags); |
to | 435 | net/inet/udp.c | udp_recvfrom(struct sock *sk, unsigned char *to, int len, |
to | 473 | net/inet/udp.c | er=verify_area(VERIFY_WRITE,to,len); |
to | 482 | net/inet/udp.c | skb_copy_datagram(skb,sizeof(struct udphdr),to,copied); |
to | 36 | net/inet/udp.h | extern int udp_recvfrom(struct sock *sk, unsigned char *to, |