tag | line | file | source code |
from | 490 | drivers/block/floppy.c | #define copy_buffer(from,to) \ |
from | 493 | drivers/block/floppy.c | :"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \ |
from | 42 | drivers/char/vt.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on); |
from | 871 | drivers/net/de620.c | ReadAWord(int from) |
from | 882 | drivers/net/de620.c | for (nbits = 9; nbits > 0; --nbits, from <<= 1) { |
from | 883 | drivers/net/de620.c | if (from & 0x0100) { /* bit set? */ |
from | 1104 | fs/buffer.c | #define COPYBLK(size,from,to) \ |
from | 1106 | fs/buffer.c | :"c" (((unsigned long) size) >> 2),"S" (from),"D" (to) \ |
from | 606 | fs/namei.c | char * from, * to; |
from | 608 | fs/namei.c | error = getname(oldname,&from); |
from | 612 | fs/namei.c | error = do_symlink(from,to); |
from | 615 | fs/namei.c | putname(from); |
from | 746 | fs/namei.c | char * from, * to; |
from | 748 | fs/namei.c | error = getname(oldname,&from); |
from | 752 | fs/namei.c | error = do_rename(from,to); |
from | 755 | fs/namei.c | putname(from); |
from | 55 | include/asm/segment.h | static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 71 | include/asm/segment.h | :"c" (n),"D" ((long) to),"S" ((long) from) |
from | 75 | include/asm/segment.h | static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 81 | include/asm/segment.h | put_user_byte(*(const char *) from, (char *) to); |
from | 84 | include/asm/segment.h | put_user_word(*(const short *) from, (short *) to); |
from | 87 | include/asm/segment.h | put_user_word(*(const short *) from, (short *) to); |
from | 88 | include/asm/segment.h | put_user_byte(*(2+(const char *) from), 2+(char *) to); |
from | 91 | include/asm/segment.h | put_user_long(*(const int *) from, (int *) to); |
from | 103 | include/asm/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 123 | include/asm/segment.h | static inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 135 | include/asm/segment.h | :"c" (n),"D" ((long) to),"S" ((long) from) |
from | 139 | include/asm/segment.h | static inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 145 | include/asm/segment.h | *(char *)to = get_user_byte((const char *) from); |
from | 148 | include/asm/segment.h | *(short *)to = get_user_word((const short *) from); |
from | 151 | include/asm/segment.h | *(short *) to = get_user_word((const short *) from); |
from | 152 | include/asm/segment.h | *(char *) to = get_user_byte(2+(const char *) from); |
from | 155 | include/asm/segment.h | *(int *) to = get_user_long((const int *) from); |
from | 163 | include/asm/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 183 | include/asm/segment.h | #define memcpy_fromfs(to, from, n) \ |
from | 185 | include/asm/segment.h | __constant_memcpy_fromfs((to),(from),(n)) : \ |
from | 186 | include/asm/segment.h | __generic_memcpy_fromfs((to),(from),(n))) |
from | 188 | include/asm/segment.h | #define memcpy_tofs(to, from, n) \ |
from | 190 | include/asm/segment.h | __constant_memcpy_tofs((to),(from),(n)) : \ |
from | 191 | 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 | 62 | include/linux/mm.h | int (*share)(struct vm_area_struct * from, struct vm_area_struct * to, unsigned long address); |
from | 146 | include/linux/mm.h | extern int unmap_page_range(unsigned long from, unsigned long size); |
from | 147 | include/linux/mm.h | extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask); |
from | 148 | include/linux/mm.h | extern int zeromap_page_range(unsigned long from, unsigned long size, int mask); |
from | 140 | include/linux/skbuff.h | extern void skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size); |
from | 350 | include/linux/string.h | extern inline void * memcpy(void * to, const void * from, size_t n) |
from | 365 | include/linux/string.h | :"d" (n),"D" ((long) to),"S" ((long) from) |
from | 338 | init/main.c | static void copy_options(char * to, char * from) |
from | 344 | init/main.c | if (c == ' ' && *(unsigned long *)from == *(unsigned long *)"mem=") |
from | 345 | init/main.c | memory_end = simple_strtoul(from+4, &from, 0); |
from | 346 | 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 | 306 | kernel/module.c | struct internal_symbol *from; |
from | 337 | kernel/module.c | from = mp->symtab->symbol; |
from | 338 | kernel/module.c | i > 0; --i, ++from, ++to) { |
from | 340 | kernel/module.c | isym.value = (unsigned long)from->addr; |
from | 341 | kernel/module.c | strncpy(isym.name, from->name, sizeof isym.name); |
from | 75 | mm/memory.c | #define copy_page(from,to) \ |
from | 76 | mm/memory.c | __asm__("cld ; rep ; movsl": :"S" (from),"D" (to),"c" (1024):"cx","di","si") |
from | 290 | mm/memory.c | int unmap_page_range(unsigned long from, unsigned long size) |
from | 296 | mm/memory.c | if (from & ~PAGE_MASK) { |
from | 301 | mm/memory.c | dir = PAGE_DIR_OFFSET(current->tss.cr3,from); |
from | 302 | mm/memory.c | poff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1); |
from | 342 | mm/memory.c | int zeromap_page_range(unsigned long from, unsigned long size, int mask) |
from | 355 | mm/memory.c | if (from & ~PAGE_MASK) { |
from | 356 | mm/memory.c | printk("zeromap_page_range: from = %08lx\n",from); |
from | 359 | mm/memory.c | dir = PAGE_DIR_OFFSET(current->tss.cr3,from); |
from | 361 | mm/memory.c | poff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1); |
from | 405 | mm/memory.c | int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask) |
from | 417 | mm/memory.c | if ((from & ~PAGE_MASK) || (to & ~PAGE_MASK)) { |
from | 418 | mm/memory.c | printk("remap_page_range: from = %08lx, to=%08lx\n",from,to); |
from | 421 | mm/memory.c | dir = PAGE_DIR_OFFSET(current->tss.cr3,from); |
from | 423 | mm/memory.c | poff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1); |
from | 719 | mm/memory.c | unsigned long from; |
from | 727 | mm/memory.c | from = *(unsigned long *) from_page; |
from | 728 | mm/memory.c | if (!(from & PAGE_PRESENT)) |
from | 730 | mm/memory.c | from &= PAGE_MASK; |
from | 731 | mm/memory.c | from_page = from + PAGE_PTR(from_address); |
from | 732 | mm/memory.c | from = *(unsigned long *) from_page; |
from | 734 | mm/memory.c | if (!(from & PAGE_PRESENT)) |
from | 737 | mm/memory.c | if ((from_area->vm_page_prot & PAGE_COW) && (from & PAGE_DIRTY)) |
from | 740 | mm/memory.c | if (from >= high_memory) |
from | 742 | mm/memory.c | if (mem_map[MAP_NR(from)] & MAP_PAGE_RESERVED) |
from | 754 | mm/memory.c | if (in_swap_cache(from)) { /* implies PAGE_DIRTY */ |
from | 758 | mm/memory.c | copy_page((from & PAGE_MASK), newpage); |
from | 763 | mm/memory.c | if (in_swap_cache(from)) { |
from | 766 | mm/memory.c | from |= PAGE_DIRTY; |
from | 767 | mm/memory.c | *(unsigned long *) from_page = from; |
from | 768 | mm/memory.c | swap_cache_invalidate(from); |
from | 771 | mm/memory.c | mem_map[MAP_NR(from)]++; |
from | 773 | mm/memory.c | to = (from & (PAGE_MASK | PAGE_DIRTY)) | to_area->vm_page_prot; |
from | 778 | mm/memory.c | if (!(from & PAGE_RW)) |
from | 783 | mm/memory.c | from &= ~PAGE_RW; |
from | 784 | mm/memory.c | *(unsigned long *) from_page = from; |
from | 122 | net/inet/packet.c | static int packet_sendto(struct sock *sk, unsigned char *from, int len, |
from | 186 | net/inet/packet.c | memcpy_fromfs(skb->data, from, len); |
from | 147 | net/inet/raw.c | static int raw_sendto(struct sock *sk, unsigned char *from, |
from | 240 | net/inet/raw.c | memcpy_fromfs(skb->data + tmp, from, len); |
from | 196 | net/inet/sock.h | unsigned char *from, int len, int noblock, |
from | 200 | net/inet/sock.h | unsigned char *from, int len, int noblock, |
from | 846 | net/inet/tcp.c | static int tcp_write(struct sock *sk, unsigned char *from, |
from | 985 | net/inet/tcp.c | memcpy_fromfs(skb->data + skb->len, from, copy); |
from | 987 | net/inet/tcp.c | from += copy; |
from | 1131 | net/inet/tcp.c | memcpy_fromfs(buff+tmp, from, copy); |
from | 1133 | net/inet/tcp.c | from += copy; |
from | 1171 | net/inet/tcp.c | static int tcp_sendto(struct sock *sk, unsigned char *from, |
from | 1185 | net/inet/tcp.c | return(tcp_write(sk, from, len, nonblock, flags)); |
from | 250 | net/inet/udp.c | unsigned char *from, int len, int rt) |
from | 314 | net/inet/udp.c | memcpy_fromfs(buff, from, len); |
from | 333 | net/inet/udp.c | static int udp_sendto(struct sock *sk, unsigned char *from, int len, int noblock, |
from | 381 | net/inet/udp.c | tmp = udp_send(sk, &sin, from, len, flags); |