tag | line | file | source code |
to | 509 | fs/buffer.c | #define COPYBLK(from,to) \ |
to | 511 | fs/buffer.c | ::"c" (BLOCK_SIZE/4),"S" (from),"D" (to) \ |
to | 134 | fs/msdos/file.c | char *start,*to,ch; |
to | 173 | fs/msdos/file.c | to = data+(filp->f_pos & (SECTOR_SIZE-1)); |
to | 175 | fs/msdos/file.c | *to++ = '\n'; |
to | 181 | fs/msdos/file.c | *to++ = '\r'; |
to | 186 | fs/msdos/file.c | *to++ = ch; |
to | 40 | include/asm/segment.h | static inline void memcpy_tofs(void * to, const void * from, unsigned long n) |
to | 55 | include/asm/segment.h | ::"c" (n),"D" ((long) to),"S" ((long) from) |
to | 59 | include/asm/segment.h | static inline void memcpy_fromfs(void * to, const void * from, unsigned long n) |
to | 70 | include/asm/segment.h | ::"c" (n),"D" ((long) to),"S" ((long) from) |
to | 11 | include/linux/iso_fs.h | #define ISODCL(from, to) (to - from + 1) |
to | 97 | include/linux/mm.h | extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask); |
to | 331 | include/linux/string.h | extern inline void * memcpy(void * to, const void * from, size_t n) |
to | 344 | include/linux/string.h | ::"d" (n),"D" ((long) to),"S" ((long) from) |
to | 346 | include/linux/string.h | return (to); |
to | 351 | kernel/blk_drv/floppy.c | #define copy_buffer(from,to) \ |
to | 353 | kernel/blk_drv/floppy.c | ::"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \ |
to | 391 | kernel/blk_drv/scsi/scsi_debug.c | int to; |
to | 428 | kernel/blk_drv/scsi/scsi_debug.c | to = timeout[i]; |
to | 441 | kernel/blk_drv/scsi/scsi_debug.c | printk("...done %d %x %d %d\n",i , my_done, to, jiffies); |
to | 39 | kernel/chr_drv/pty.c | static inline void pty_copy(struct tty_struct * from, struct tty_struct * to) |
to | 44 | kernel/chr_drv/pty.c | if (FULL(&to->read_q)) { |
to | 45 | kernel/chr_drv/pty.c | if (FULL(&to->secondary)) |
to | 47 | kernel/chr_drv/pty.c | TTY_READ_FLUSH(to); |
to | 51 | kernel/chr_drv/pty.c | put_tty_queue(c, &to->read_q); |
to | 55 | kernel/chr_drv/pty.c | TTY_READ_FLUSH(to); |
to | 56 | mm/memory.c | #define copy_page(from,to) \ |
to | 57 | mm/memory.c | __asm__("cld ; rep ; movsl"::"S" (from),"D" (to),"c" (1024):"cx","di","si") |
to | 364 | mm/memory.c | int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask) |
to | 376 | mm/memory.c | if ((from & 0xfff) || (to & 0xfff)) { |
to | 377 | mm/memory.c | printk("remap_page_range: from = %08x, to=%08x\n",from,to); |
to | 418 | mm/memory.c | if (!mask || to >= high_memory || !mem_map[MAP_NR(to)]) |
to | 422 | mm/memory.c | *page_table++ = (to | mask); |
to | 423 | mm/memory.c | if (!(mem_map[MAP_NR(to)] & MAP_PAGE_RESERVED)) |
to | 424 | mm/memory.c | mem_map[MAP_NR(to)]++; |
to | 426 | mm/memory.c | to += PAGE_SIZE; |
to | 670 | mm/memory.c | unsigned long to; |
to | 691 | mm/memory.c | to = *(unsigned long *) to_page; |
to | 692 | mm/memory.c | if (!(to & PAGE_PRESENT)) |
to | 694 | mm/memory.c | to &= 0xfffff000; |
to | 695 | mm/memory.c | to_page = to + ((address>>10) & 0xffc); |
to | 701 | mm/memory.c | to = newpage | PAGE_PRIVATE; |
to | 705 | mm/memory.c | to = from; |
to | 709 | mm/memory.c | *(unsigned long *) to_page = to; |
to | 260 | net/tcp/dev.c | unsigned char *to; |
to | 282 | net/tcp/dev.c | to = (unsigned char *)(skb+1); |
to | 287 | net/tcp/dev.c | memcpy (to, buff, amount); |
to | 290 | net/tcp/dev.c | to += amount; |
to | 225 | net/tcp/packet.c | packet_recvfrom (volatile struct sock *sk, unsigned char *to, int len, |
to | 285 | net/tcp/packet.c | verify_area (VERIFY_WRITE, to, copied); |
to | 286 | net/tcp/packet.c | memcpy_tofs (to, skb+1, copied); |
to | 364 | net/tcp/raw.c | raw_recvfrom (volatile struct sock *sk, unsigned char *to, int len, |
to | 374 | net/tcp/raw.c | " sin=%X, addr_len=%X)\n", sk, to, len, noblock, |
to | 425 | net/tcp/raw.c | verify_area (VERIFY_WRITE, to, copied); |
to | 426 | net/tcp/raw.c | memcpy_tofs (to, skb->h.raw, copied); |
to | 119 | net/tcp/sock.h | int (*read)(volatile struct sock *sk, unsigned char *to, int len, |
to | 121 | net/tcp/sock.h | int (*write)(volatile struct sock *sk, unsigned char *to, int len, |
to | 1109 | net/tcp/tcp.c | unsigned char *to, int len, unsigned flags) |
to | 1115 | net/tcp/tcp.c | sk, to, len, flags)); |
to | 1187 | net/tcp/tcp.c | verify_area (VERIFY_WRITE, to, amt); |
to | 1188 | net/tcp/tcp.c | memcpy_tofs (to, (unsigned char *)(skb->h.th) + |
to | 1210 | net/tcp/tcp.c | tcp_read (volatile struct sock *sk, unsigned char *to, |
to | 1229 | net/tcp/tcp.c | return (tcp_read_urg (sk, nonblock, to, len, flags)); |
to | 1239 | net/tcp/tcp.c | sk, to, len, nonblock, flags)); |
to | 1380 | net/tcp/tcp.c | verify_area (VERIFY_WRITE, to, used); |
to | 1381 | net/tcp/tcp.c | memcpy_tofs(to, ((unsigned char *)skb->h.th) + |
to | 1387 | net/tcp/tcp.c | to += used; |
to | 1528 | net/tcp/tcp.c | tcp_recvfrom (volatile struct sock *sk, unsigned char *to, |
to | 1532 | net/tcp/tcp.c | int result = tcp_read(sk, to, to_len, nonblock, flags); |
to | 516 | net/tcp/udp.c | udp_recvfrom (volatile struct sock *sk, unsigned char *to, int len, |
to | 585 | net/tcp/udp.c | verify_area (VERIFY_WRITE, to, copied); |
to | 586 | net/tcp/udp.c | memcpy_tofs (to, skb->h.raw + sizeof (struct udp_header), copied); |