tag | line | file | source code |
from | 145 | arch/alpha/kernel/setup.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on) |
from | 248 | arch/alpha/lib/io.c | void _memcpy_fromio(void * to, unsigned long from, unsigned long count) |
from | 252 | arch/alpha/lib/io.c | *(char *) to = readb(from); |
from | 254 | arch/alpha/lib/io.c | from++; |
from | 262 | arch/alpha/lib/io.c | void _memcpy_toio(unsigned long to, void * from, unsigned long count) |
from | 266 | arch/alpha/lib/io.c | writeb(*(char *) from, to); |
from | 267 | arch/alpha/lib/io.c | ((char *) from)++; |
from | 51 | arch/i386/kernel/ioport.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on) |
from | 53 | arch/i386/kernel/ioport.c | if (from + num <= from) |
from | 55 | arch/i386/kernel/ioport.c | if (from + num > IO_BITMAP_SIZE*32) |
from | 60 | arch/i386/kernel/ioport.c | set_bitmap((unsigned long *)current->tss.io_bitmap, from, num, !turn_on); |
from | 105 | arch/i386/kernel/setup.c | char c = ' ', *to = command_line, *from = COMMAND_LINE; |
from | 151 | arch/i386/kernel/setup.c | if (c == ' ' && *(const unsigned long *)from == *(const unsigned long *)"mem=") { |
from | 152 | arch/i386/kernel/setup.c | if (!memcmp(from+4, "nopentium", 9)) { |
from | 153 | arch/i386/kernel/setup.c | from += 9+4; |
from | 156 | arch/i386/kernel/setup.c | memory_end = simple_strtoul(from+4, &from, 0); |
from | 157 | arch/i386/kernel/setup.c | if ( *from == 'K' || *from == 'k' ) { |
from | 159 | arch/i386/kernel/setup.c | from++; |
from | 160 | arch/i386/kernel/setup.c | } else if ( *from == 'M' || *from == 'm' ) { |
from | 162 | arch/i386/kernel/setup.c | from++; |
from | 166 | arch/i386/kernel/setup.c | c = *(from++); |
from | 13 | arch/mips/kernel/ioport.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on) |
from | 161 | arch/mips/mm/init.c | void __copy_page(unsigned long from, unsigned long to) |
from | 167 | arch/mips/mm/init.c | if(from == (unsigned long) empty_zero_page) |
from | 185 | arch/mips/mm/init.c | (void *) (from + (PT_OFFSET - PAGE_OFFSET)), PAGE_SIZE); |
from | 193 | arch/mips/mm/init.c | if (page_colour(from) != page_colour(to)) |
from | 156 | arch/ppc/kernel/setup.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on) |
from | 255 | arch/sparc/kernel/setup.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on) |
from | 813 | drivers/cdrom/cm206.c | void play_from_to_track(int from, int to) |
from | 818 | drivers/cdrom/cm206.c | if (from==0) { /* continue paused play */ |
from | 824 | drivers/cdrom/cm206.c | update_toc_entry(from); update_toc_entry(to+1); |
from | 826 | drivers/cdrom/cm206.c | play_command[i+1] = cd->toc[from].fsm[i]; |
from | 192 | drivers/char/selection.h | static inline void memcpyw(unsigned short *to, unsigned short *from, |
from | 198 | drivers/char/selection.h | scr_writew(scr_readw(from++), to++); |
from | 53 | drivers/char/vt.c | asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on); |
from | 926 | drivers/net/de620.c | ReadAWord(struct device *dev, int from) |
from | 937 | drivers/net/de620.c | for (nbits = 9; nbits > 0; --nbits, from <<= 1) { |
from | 938 | drivers/net/de620.c | if (from & 0x0100) { /* bit set? */ |
from | 162 | drivers/scsi/sr_ioctl.c | sr_cmd[2] = blk.from >> 24; |
from | 163 | drivers/scsi/sr_ioctl.c | sr_cmd[3] = blk.from >> 16; |
from | 164 | drivers/scsi/sr_ioctl.c | sr_cmd[4] = blk.from >> 8; |
from | 165 | drivers/scsi/sr_ioctl.c | sr_cmd[5] = blk.from; |
from | 1352 | fs/hpfs/hpfs_fs.c | static void translate_hpfs_name(const unsigned char * from, int len, char * to, int lowercase) |
from | 1355 | fs/hpfs/hpfs_fs.c | unsigned t = *from; |
from | 1362 | fs/hpfs/hpfs_fs.c | from++; |
from | 686 | fs/namei.c | char * from, * to; |
from | 688 | fs/namei.c | error = getname(oldname,&from); |
from | 692 | fs/namei.c | error = do_symlink(from,to); |
from | 695 | fs/namei.c | putname(from); |
from | 846 | fs/namei.c | char * from, * to; |
from | 848 | fs/namei.c | error = getname(oldname,&from); |
from | 852 | fs/namei.c | error = do_rename(from,to); |
from | 855 | fs/namei.c | putname(from); |
from | 189 | include/asm-alpha/io.h | #define memcpy_fromio(to,from,len) _memcpy_fromio((to),(unsigned long)(from),(len)) |
from | 190 | include/asm-alpha/io.h | #define memcpy_toio(to,from,len) _memcpy_toio((unsigned long)(to),(from),(len)) |
from | 90 | include/asm-alpha/segment.h | static inline void memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 93 | include/asm-alpha/segment.h | memcpy(to, from, n); |
from | 97 | include/asm-alpha/segment.h | static inline void memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 100 | include/asm-alpha/segment.h | memcpy(to, from, n); |
from | 129 | include/asm-i386/segment.h | static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 151 | include/asm-i386/segment.h | :"0" (n),"D" ((long) to),"S" ((long) from) |
from | 155 | include/asm-i386/segment.h | static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 161 | include/asm-i386/segment.h | __put_user(*(const char *) from, (char *) to, 1); |
from | 164 | include/asm-i386/segment.h | __put_user(*(const short *) from, (short *) to, 2); |
from | 167 | include/asm-i386/segment.h | __put_user(*(const short *) from, (short *) to, 2); |
from | 168 | include/asm-i386/segment.h | __put_user(*(2+(const char *) from), 2+(char *) to, 1); |
from | 171 | include/asm-i386/segment.h | __put_user(*(const int *) from, (int *) to, 4); |
from | 174 | include/asm-i386/segment.h | __put_user(*(const int *) from, (int *) to, 4); |
from | 175 | include/asm-i386/segment.h | __put_user(*(1+(const int *) from), 1+(int *) to, 4); |
from | 178 | include/asm-i386/segment.h | __put_user(*(const int *) from, (int *) to, 4); |
from | 179 | include/asm-i386/segment.h | __put_user(*(1+(const int *) from), 1+(int *) to, 4); |
from | 180 | include/asm-i386/segment.h | __put_user(*(2+(const int *) from), 2+(int *) to, 4); |
from | 183 | include/asm-i386/segment.h | __put_user(*(const int *) from, (int *) to, 4); |
from | 184 | include/asm-i386/segment.h | __put_user(*(1+(const int *) from), 1+(int *) to, 4); |
from | 185 | include/asm-i386/segment.h | __put_user(*(2+(const int *) from), 2+(int *) to, 4); |
from | 186 | include/asm-i386/segment.h | __put_user(*(3+(const int *) from), 3+(int *) to, 4); |
from | 198 | include/asm-i386/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 218 | include/asm-i386/segment.h | static inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 236 | include/asm-i386/segment.h | :"0" (n),"D" ((long) to),"S" ((long) from) |
from | 240 | include/asm-i386/segment.h | static inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 246 | include/asm-i386/segment.h | *(char *)to = __get_user((const char *) from, 1); |
from | 249 | include/asm-i386/segment.h | *(short *)to = __get_user((const short *) from, 2); |
from | 252 | include/asm-i386/segment.h | *(short *) to = __get_user((const short *) from, 2); |
from | 253 | include/asm-i386/segment.h | *((char *) to + 2) = __get_user(2+(const char *) from, 1); |
from | 256 | include/asm-i386/segment.h | *(int *) to = __get_user((const int *) from, 4); |
from | 259 | include/asm-i386/segment.h | *(int *) to = __get_user((const int *) from, 4); |
from | 260 | include/asm-i386/segment.h | *(1+(int *) to) = __get_user(1+(const int *) from, 4); |
from | 263 | include/asm-i386/segment.h | *(int *) to = __get_user((const int *) from, 4); |
from | 264 | include/asm-i386/segment.h | *(1+(int *) to) = __get_user(1+(const int *) from, 4); |
from | 265 | include/asm-i386/segment.h | *(2+(int *) to) = __get_user(2+(const int *) from, 4); |
from | 268 | include/asm-i386/segment.h | *(int *) to = __get_user((const int *) from, 4); |
from | 269 | include/asm-i386/segment.h | *(1+(int *) to) = __get_user(1+(const int *) from, 4); |
from | 270 | include/asm-i386/segment.h | *(2+(int *) to) = __get_user(2+(const int *) from, 4); |
from | 271 | include/asm-i386/segment.h | *(3+(int *) to) = __get_user(3+(const int *) from, 4); |
from | 279 | include/asm-i386/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 299 | include/asm-i386/segment.h | #define memcpy_fromfs(to, from, n) \ |
from | 301 | include/asm-i386/segment.h | __constant_memcpy_fromfs((to),(from),(n)) : \ |
from | 302 | include/asm-i386/segment.h | __generic_memcpy_fromfs((to),(from),(n))) |
from | 304 | include/asm-i386/segment.h | #define memcpy_tofs(to, from, n) \ |
from | 306 | include/asm-i386/segment.h | __constant_memcpy_tofs((to),(from),(n)) : \ |
from | 307 | include/asm-i386/segment.h | __generic_memcpy_tofs((to),(from),(n))) |
from | 352 | include/asm-i386/string.h | extern inline void * __memcpy(void * to, const void * from, size_t n) |
from | 365 | include/asm-i386/string.h | :"c" (n/4), "q" (n),"D" ((long) to),"S" ((long) from) |
from | 374 | include/asm-i386/string.h | extern inline void * __constant_memcpy(void * to, const void * from, size_t n) |
from | 380 | include/asm-i386/string.h | *(unsigned char *)to = *(const unsigned char *)from; |
from | 383 | include/asm-i386/string.h | *(unsigned short *)to = *(const unsigned short *)from; |
from | 386 | include/asm-i386/string.h | *(unsigned short *)to = *(const unsigned short *)from; |
from | 387 | include/asm-i386/string.h | *(2+(unsigned char *)to) = *(2+(const unsigned char *)from); |
from | 390 | include/asm-i386/string.h | *(unsigned long *)to = *(const unsigned long *)from; |
from | 398 | include/asm-i386/string.h | : "c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 69 | include/asm-m68k/segment.h | static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 79 | include/asm-m68k/segment.h | : "=d" (n), "=a" (from), "=a" (to) |
from | 80 | include/asm-m68k/segment.h | : "1" (from), "2" (to), "0" (n-1) |
from | 84 | include/asm-m68k/segment.h | static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 89 | include/asm-m68k/segment.h | put_user_byte(*(const char *) from, (char *) to); |
from | 92 | include/asm-m68k/segment.h | put_user_word(*(const short *) from, (short *) to); |
from | 95 | include/asm-m68k/segment.h | put_user_word(*(const short *) from, (short *) to); |
from | 96 | include/asm-m68k/segment.h | put_user_byte(*(2+(const char *) from), 2+(char *) to); |
from | 99 | include/asm-m68k/segment.h | put_user_long(*(const int *) from, (int *) to); |
from | 112 | include/asm-m68k/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 131 | include/asm-m68k/segment.h | __generic_memcpy_tofs(to,from,n); |
from | 135 | include/asm-m68k/segment.h | static inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 145 | include/asm-m68k/segment.h | : "=d" (n), "=a" (from), "=a" (to) |
from | 146 | include/asm-m68k/segment.h | : "1" (from), "2" (to), "0" (n-1) |
from | 150 | include/asm-m68k/segment.h | static inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 155 | include/asm-m68k/segment.h | *(char *)to = get_user_byte((const char *) from); |
from | 158 | include/asm-m68k/segment.h | *(short *)to = get_user_word((const short *) from); |
from | 161 | include/asm-m68k/segment.h | *(short *) to = get_user_word((const short *) from); |
from | 162 | include/asm-m68k/segment.h | *(2+(char *) to) = get_user_byte(2+(const char *) from); |
from | 165 | include/asm-m68k/segment.h | *(int *) to = get_user_long((const int *) from); |
from | 174 | include/asm-m68k/segment.h | :"c" (n/4),"D" ((long) to),"S" ((long) from) \ |
from | 193 | include/asm-m68k/segment.h | __generic_memcpy_fromfs(to,from,n); |
from | 197 | include/asm-m68k/segment.h | #define memcpy_fromfs(to, from, n) \ |
from | 199 | include/asm-m68k/segment.h | __constant_memcpy_fromfs((to),(from),(n)) : \ |
from | 200 | include/asm-m68k/segment.h | __generic_memcpy_fromfs((to),(from),(n))) |
from | 202 | include/asm-m68k/segment.h | #define memcpy_tofs(to, from, n) \ |
from | 204 | include/asm-m68k/segment.h | __constant_memcpy_tofs((to),(from),(n)) : \ |
from | 205 | include/asm-m68k/segment.h | __generic_memcpy_tofs((to),(from),(n))) |
from | 108 | include/asm-m68k/string.h | extern inline void * memcpy(void * to, const void * from, size_t n) |
from | 118 | include/asm-m68k/string.h | : "=a" (to), "=a" (from), "=d" (n) |
from | 119 | include/asm-m68k/string.h | : "0" (to), "1" (from), "2" (n) |
from | 60 | include/asm-mips/page.h | extern void __copy_page(unsigned long from, unsigned long to); |
from | 61 | include/asm-mips/page.h | #define copy_page(from,to) __copy_page((unsigned long)from, (unsigned long)to) |
from | 53 | include/asm-mips/pgtable.h | extern void __copy_page(unsigned long from, unsigned long to); |
from | 54 | include/asm-mips/pgtable.h | #define copy_page(from,to) __copy_page((unsigned long)from, (unsigned long)to) |
from | 109 | include/asm-mips/segment.h | static inline void memcpy_fromfs(void * to, const void * from, unsigned long n) |
from | 112 | include/asm-mips/segment.h | memcpy(to, from, n); |
from | 116 | include/asm-mips/segment.h | static inline void memcpy_tofs(void * to, const void * from, unsigned long n) |
from | 119 | include/asm-mips/segment.h | memcpy(to, from, n); |
from | 141 | include/asm-mips/string.h | extern __inline__ void * memcpy(void * to, const void * from, size_t n) |
from | 158 | include/asm-mips/string.h | : "=r" (to), "=r" (from), "=r" (n) |
from | 159 | include/asm-mips/string.h | : "0" (to), "1" (from), "2" (n) |
from | 103 | include/asm-ppc/segment.h | #define memcpy_fromfs(to, from, n) memcpy((to),(from),(n)) |
from | 105 | include/asm-ppc/segment.h | #define memcpy_tofs(to, from, n) memcpy((to),(from),(n)) |
from | 28 | include/asm-sparc/openprom.h | int (*v0_seekdev)(int dev_desc, long logical_offst, int from); |
from | 108 | include/asm-sparc/segment.h | #define memcpy_fromfs(to, from, n) memcpy((to),(from),(n)) |
from | 110 | include/asm-sparc/segment.h | #define memcpy_tofs(to, from, n) memcpy((to),(from),(n)) |
from | 70 | include/linux/cdrom.h | unsigned from; |
from | 20 | include/linux/ioport.h | extern int check_region(unsigned int from, unsigned int extent); |
from | 21 | include/linux/ioport.h | extern void request_region(unsigned int from, unsigned int extent,const char *name); |
from | 22 | include/linux/ioport.h | extern void release_region(unsigned int from, unsigned int extent); |
from | 11 | include/linux/iso_fs.h | #define ISODCL(from, to) (to - from + 1) |
from | 180 | include/linux/mm.h | extern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, pgprot_t prot); |
from | 181 | include/linux/mm.h | extern int zeromap_page_range(unsigned long from, unsigned long size, pgprot_t prot); |
from | 372 | include/linux/skbuff.h | extern void skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size); |
from | 373 | include/linux/skbuff.h | extern void skb_copy_datagram_iovec(struct sk_buff *from, int offset, struct iovec *to,int size); |
from | 374 | kernel/module.c | struct internal_symbol *from; |
from | 408 | kernel/module.c | from = mp->symtab->symbol; |
from | 409 | kernel/module.c | i > 0; --i, ++from, ++to) { |
from | 411 | kernel/module.c | isym.value = (unsigned long)from->addr; |
from | 412 | kernel/module.c | strncpy(isym.name, from->name, sizeof isym.name); |
from | 19 | kernel/resource.c | u_long from, num; |
from | 38 | kernel/resource.c | p->from, p->from+p->num-1, p->name); |
from | 48 | kernel/resource.c | u_long from, u_long num) |
from | 53 | kernel/resource.c | if (from > from+num-1) |
from | 58 | kernel/resource.c | if ((p != root) && (p->from+p->num-1 >= from)) { |
from | 62 | kernel/resource.c | if ((p->next == NULL) || (p->next->from > from+num-1)) |
from | 72 | kernel/resource.c | void request_region(unsigned int from, unsigned int num, const char *name) |
from | 83 | kernel/resource.c | p = find_gap(&iolist, from, num); |
from | 87 | kernel/resource.c | iotable[i].from = from; |
from | 98 | kernel/resource.c | void release_region(unsigned int from, unsigned int num) |
from | 106 | kernel/resource.c | if ((q->from == from) && (q->num == num)) { |
from | 117 | kernel/resource.c | int check_region(unsigned int from, unsigned int num) |
from | 119 | kernel/resource.c | return (find_gap(&iolist, from, num) == NULL) ? -EBUSY : 0; |
from | 67 | mm/memory.c | static inline void copy_page(unsigned long from, unsigned long to) |
from | 69 | mm/memory.c | if (from == ZERO_PAGE) { |
from | 73 | mm/memory.c | memcpy((void *) to, (void *) from, PAGE_SIZE); |
from | 500 | mm/memory.c | int remap_page_range(unsigned long from, unsigned long offset, unsigned long size, pgprot_t prot) |
from | 504 | mm/memory.c | unsigned long end = from + size; |
from | 506 | mm/memory.c | offset -= from; |
from | 507 | mm/memory.c | dir = pgd_offset(current->mm, from); |
from | 508 | mm/memory.c | while (from < end) { |
from | 509 | mm/memory.c | pmd_t *pmd = pmd_alloc(dir, from); |
from | 513 | mm/memory.c | error = remap_pmd_range(pmd, from, end - from, offset + from, prot); |
from | 516 | mm/memory.c | from = (from + PGDIR_SIZE) & PGDIR_MASK; |
from | 519 | mm/memory.c | invalidate_range(current->mm, from - size, from); |
from | 601 | net/ipv4/ip_fw.c | unsigned long from; |
from | 662 | net/ipv4/ip_fw.c | from = (p1<<24) | (p2<<16) | (p3<<8) | p4; |
from | 665 | net/ipv4/ip_fw.c | printk("PORT %lX:%X detected\n",from,port); |
from | 674 | net/ipv4/ip_fw.c | ms->src = htonl(from); /* derived from PORT cmd */ |
from | 689 | net/ipv4/ip_fw.c | from = ntohl(dev->pa_addr); |
from | 692 | net/ipv4/ip_fw.c | from>>24&255,from>>16&255,from>>8&255,from&255, |
from | 191 | net/ipv4/raw.c | static int raw_sendto(struct sock *sk, const unsigned char *from, |
from | 243 | net/ipv4/raw.c | err=ip_build_xmit(sk, raw_getrawfrag, from, len, sin.sin_addr.s_addr, 0, sk->opt, flags, sin.sin_port, noblock); |
from | 249 | net/ipv4/raw.c | err=ip_build_xmit(sk, raw_getfrag, from, len, sin.sin_addr.s_addr, 0, sk->opt, flags, sin.sin_port, noblock); |
from | 1718 | net/ipv4/tcp.c | unsigned char *from; |
from | 1748 | net/ipv4/tcp.c | from=msg->msg_iov[iovct++].iov_base; |
from | 1883 | net/ipv4/tcp.c | memcpy_fromfs(skb_put(skb,copy), from, copy); |
from | 1884 | net/ipv4/tcp.c | from += copy; |
from | 2029 | net/ipv4/tcp.c | memcpy_fromfs(skb_put(skb,copy), from, copy); |
from | 2031 | net/ipv4/tcp.c | from += copy; |
from | 221 | net/ipv4/udp.c | const char *from; |
from | 241 | net/ipv4/udp.c | src = ufh->from+(offset-sizeof(struct udphdr)); |
from | 247 | net/ipv4/udp.c | src = ufh->from; |
from | 281 | net/ipv4/udp.c | src = ufh->from+(offset-sizeof(struct udphdr)); |
from | 287 | net/ipv4/udp.c | src = ufh->from; |
from | 301 | net/ipv4/udp.c | const unsigned char *from, int len, int rt, |
from | 317 | net/ipv4/udp.c | ufh.from = from; |
from | 338 | net/ipv4/udp.c | static int udp_sendto(struct sock *sk, const unsigned char *from, int len, int noblock, |
from | 398 | net/ipv4/udp.c | tmp = udp_send(sk, usin, from, len, flags, saddr, noblock); |