tag | line | file | source code |
from | 431 | drivers/block/floppy.c | #define copy_buffer(from,to) \ |
from | 434 | drivers/block/floppy.c | :"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \ |
from | 54 | drivers/char/pty.c | static inline void pty_copy(struct tty_struct * from, struct tty_struct * to) |
from | 59 | drivers/char/pty.c | if (from->stopped || EMPTY(&from->write_q)) |
from | 61 | drivers/char/pty.c | fq = &from->write_q; |
from | 75 | drivers/char/pty.c | if (from->write_data_cnt) { |
from | 76 | drivers/char/pty.c | set_bit(from->line, &tty_check_write); |
from | 40 | drivers/char/vt.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on); |
from | 1196 | fs/buffer.c | #define COPYBLK(size,from,to) \ |
from | 1198 | fs/buffer.c | :"c" (((unsigned long) size) >> 2),"S" (from),"D" (to) \ |
from | 600 | fs/namei.c | char * from, * to; |
from | 602 | fs/namei.c | error = getname(oldname,&from); |
from | 606 | fs/namei.c | error = do_symlink(from,to); |
from | 609 | fs/namei.c | putname(from); |
from | 736 | fs/namei.c | char * from, * to; |
from | 738 | fs/namei.c | error = getname(oldname,&from); |
from | 742 | fs/namei.c | error = do_rename(from,to); |
from | 745 | fs/namei.c | putname(from); |
from | 37 | fs/nfs/mmap.c | extern int file_mmap_share(struct vm_area_struct * from, struct vm_area_struct * to, |
from | 69 | include/asm/segment.h | static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 85 | include/asm/segment.h | :"c" (n),"D" ((long) to),"S" ((long) from) |
from | 89 | include/asm/segment.h | static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 95 | include/asm/segment.h | put_user_byte(*(const char *) from, (char *) to); |
from | 98 | include/asm/segment.h | put_user_word(*(const short *) from, (short *) to); |
from | 101 | include/asm/segment.h | put_user_word(*(const short *) from, (short *) to); |
from | 102 | include/asm/segment.h | put_user_byte(*(2+(const char *) from), 2+(char *) to); |
from | 105 | include/asm/segment.h | put_user_long(*(const int *) from, (int *) to); |
from | 117 | include/asm/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 137 | include/asm/segment.h | static inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 149 | include/asm/segment.h | :"c" (n),"D" ((long) to),"S" ((long) from) |
from | 153 | include/asm/segment.h | static inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 159 | include/asm/segment.h | *(char *)to = get_user_byte((const char *) from); |
from | 162 | include/asm/segment.h | *(short *)to = get_user_word((const short *) from); |
from | 165 | include/asm/segment.h | *(short *) to = get_user_word((const short *) from); |
from | 166 | include/asm/segment.h | *(char *) to = get_user_byte(2+(const char *) from); |
from | 169 | include/asm/segment.h | *(int *) to = get_user_long((const int *) from); |
from | 177 | include/asm/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 197 | include/asm/segment.h | #define memcpy_fromfs(to, from, n) \ |
from | 199 | include/asm/segment.h | __constant_memcpy_fromfs((to),(from),(n)) : \ |
from | 200 | include/asm/segment.h | __generic_memcpy_fromfs((to),(from),(n))) |
from | 202 | include/asm/segment.h | #define memcpy_tofs(to, from, n) \ |
from | 204 | include/asm/segment.h | __constant_memcpy_tofs((to),(from),(n)) : \ |
from | 205 | include/asm/segment.h | __generic_memcpy_tofs((to),(from),(n))) |
from | 19 | include/linux/ioport.h | extern int check_region(unsigned int from, unsigned int extent); |
from | 20 | include/linux/ioport.h | extern void snarf_region(unsigned int from, unsigned int extent); |
from | 11 | include/linux/iso_fs.h | #define ISODCL(from, to) (to - from + 1) |
from | 64 | include/linux/mm.h | int (*share)(struct vm_area_struct * from, struct vm_area_struct * to, unsigned long address); |
from | 145 | include/linux/mm.h | extern int unmap_page_range(unsigned long from, unsigned long size); |
from | 146 | include/linux/mm.h | extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask); |
from | 147 | include/linux/mm.h | extern int zeromap_page_range(unsigned long from, unsigned long size, int mask); |
from | 133 | include/linux/skbuff.h | extern void skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size); |
from | 339 | include/linux/string.h | extern inline void * memcpy(void * to, const void * from, size_t n) |
from | 353 | include/linux/string.h | :"d" (n),"D" ((long) to),"S" ((long) from) |
from | 329 | init/main.c | static void copy_options(char * to, char * from) |
from | 335 | init/main.c | if (c == ' ' && *(unsigned long *)from == *(unsigned long *)"mem=") |
from | 336 | init/main.c | memory_end = simple_strtoul(from+4, &from, 0); |
from | 337 | init/main.c | c = *(from++); |
from | 114 | kernel/ioport.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on) |
from | 116 | kernel/ioport.c | if (from + num <= from) |
from | 118 | kernel/ioport.c | if (from + num > IO_BITMAP_SIZE*32) |
from | 124 | kernel/ioport.c | printk("io: from=%d num=%d %s\n", from, num, (turn_on ? "on" : "off")); |
from | 126 | kernel/ioport.c | set_bitmap((unsigned long *)current->tss.io_bitmap, from, num, !turn_on); |
from | 158 | kernel/ioport.c | void snarf_region(unsigned int from, unsigned int num) |
from | 160 | kernel/ioport.c | if (from > IO_BITMAP_SIZE*32) |
from | 162 | kernel/ioport.c | if (from + num > IO_BITMAP_SIZE*32) |
from | 163 | kernel/ioport.c | num = IO_BITMAP_SIZE*32 - from; |
from | 164 | kernel/ioport.c | set_bitmap(ioport_registrar, from, num, 1); |
from | 168 | kernel/ioport.c | int check_region(unsigned int from, unsigned int num) |
from | 170 | kernel/ioport.c | if (from > IO_BITMAP_SIZE*32) |
from | 172 | kernel/ioport.c | if (from + num > IO_BITMAP_SIZE*32) |
from | 173 | kernel/ioport.c | num = IO_BITMAP_SIZE*32 - from; |
from | 174 | kernel/ioport.c | return check_bitmap(ioport_registrar, from, num); |
from | 145 | kernel/module.c | struct symbol *from; |
from | 150 | kernel/module.c | from = symbol_table; |
from | 156 | kernel/module.c | sym.value = from->addr; |
from | 157 | kernel/module.c | strncpy(sym.name, from->name, sizeof sym.name); |
from | 159 | kernel/module.c | from++, to++; |
from | 65 | mm/memory.c | #define copy_page(from,to) \ |
from | 66 | mm/memory.c | __asm__("cld ; rep ; movsl": :"S" (from),"D" (to),"c" (1024):"cx","di","si") |
from | 274 | mm/memory.c | int unmap_page_range(unsigned long from, unsigned long size) |
from | 280 | mm/memory.c | if (from & ~PAGE_MASK) { |
from | 285 | mm/memory.c | dir = PAGE_DIR_OFFSET(current->tss.cr3,from); |
from | 286 | mm/memory.c | poff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1); |
from | 326 | mm/memory.c | int zeromap_page_range(unsigned long from, unsigned long size, int mask) |
from | 339 | mm/memory.c | if (from & ~PAGE_MASK) { |
from | 340 | mm/memory.c | printk("zeromap_page_range: from = %08lx\n",from); |
from | 343 | mm/memory.c | dir = PAGE_DIR_OFFSET(current->tss.cr3,from); |
from | 345 | mm/memory.c | poff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1); |
from | 389 | mm/memory.c | int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask) |
from | 401 | mm/memory.c | if ((from & ~PAGE_MASK) || (to & ~PAGE_MASK)) { |
from | 402 | mm/memory.c | printk("remap_page_range: from = %08lx, to=%08lx\n",from,to); |
from | 405 | mm/memory.c | dir = PAGE_DIR_OFFSET(current->tss.cr3,from); |
from | 407 | mm/memory.c | poff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1); |
from | 698 | mm/memory.c | unsigned long from; |
from | 706 | mm/memory.c | from = *(unsigned long *) from_page; |
from | 707 | mm/memory.c | if (!(from & PAGE_PRESENT)) |
from | 709 | mm/memory.c | from &= PAGE_MASK; |
from | 710 | mm/memory.c | from_page = from + PAGE_PTR(address); |
from | 711 | mm/memory.c | from = *(unsigned long *) from_page; |
from | 713 | mm/memory.c | if ((from & (PAGE_PRESENT | PAGE_DIRTY)) != PAGE_PRESENT) |
from | 715 | mm/memory.c | if (from >= high_memory) |
from | 717 | mm/memory.c | if (mem_map[MAP_NR(from)] & MAP_PAGE_RESERVED) |
from | 731 | mm/memory.c | copy_page((from & PAGE_MASK),newpage); |
from | 734 | mm/memory.c | mem_map[MAP_NR(from)]++; |
from | 735 | mm/memory.c | from &= ~PAGE_RW; |
from | 736 | mm/memory.c | to = from; |
from | 740 | mm/memory.c | *(unsigned long *) from_page = from; |
from | 121 | net/inet/packet.c | static int packet_sendto(struct sock *sk, unsigned char *from, int len, |
from | 160 | net/inet/packet.c | err=verify_area(VERIFY_READ,from,len); |
from | 206 | net/inet/packet.c | memcpy_fromfs(skb->data, from, len); |
from | 149 | net/inet/raw.c | static int raw_sendto(struct sock *sk, unsigned char *from, |
from | 159 | net/inet/raw.c | " usin=%X, addr_len = %d)\n", sk, from, len, noblock, |
from | 171 | net/inet/raw.c | err=verify_area(VERIFY_READ,from,len); |
from | 257 | net/inet/raw.c | memcpy_fromfs(skb->data + tmp, from, len); |
from | 193 | net/inet/sock.h | unsigned char *from, int len, int noblock, |
from | 197 | net/inet/sock.h | unsigned char *from, int len, int noblock, |
from | 779 | net/inet/tcp.c | static int tcp_write(struct sock *sk, unsigned char *from, |
from | 792 | net/inet/tcp.c | sk, from, len, nonblock, flags)); |
from | 924 | net/inet/tcp.c | memcpy_fromfs(skb->data + skb->len, from, copy); |
from | 926 | net/inet/tcp.c | from += copy; |
from | 1074 | net/inet/tcp.c | memcpy_fromfs(buff+tmp, from, copy); |
from | 1076 | net/inet/tcp.c | from += copy; |
from | 1115 | net/inet/tcp.c | static int tcp_sendto(struct sock *sk, unsigned char *from, |
from | 1132 | net/inet/tcp.c | return(tcp_write(sk, from, len, nonblock, flags)); |
from | 254 | net/inet/udp.c | unsigned char *from, int len, int rt) |
from | 266 | net/inet/udp.c | from, len)); |
from | 268 | net/inet/udp.c | err=verify_area(VERIFY_READ, from, len); |
from | 331 | net/inet/udp.c | memcpy_fromfs(buff, from, len); |
from | 350 | net/inet/udp.c | static int udp_sendto(struct sock *sk, unsigned char *from, int len, int noblock, |
from | 409 | net/inet/udp.c | tmp = udp_send(sk, &sin, from, len, flags); |