taglinefilesource code
from248arch/alpha/lib/io.cvoid _memcpy_fromio(void * to, unsigned long from, unsigned long count)
from252arch/alpha/lib/io.c*(char *) to = readb(from);
from254arch/alpha/lib/io.cfrom++;
from262arch/alpha/lib/io.cvoid _memcpy_toio(unsigned long to, void * from, unsigned long count)
from266arch/alpha/lib/io.cwriteb(*(char *) from, to);
from267arch/alpha/lib/io.c((char *) from)++;
from51arch/i386/kernel/ioport.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
from53arch/i386/kernel/ioport.cif (from + num <= from)
from55arch/i386/kernel/ioport.cif (from + num > IO_BITMAP_SIZE*32)
from60arch/i386/kernel/ioport.cset_bitmap((unsigned long *)current->tss.io_bitmap, from, num, !turn_on);
from112arch/i386/kernel/setup.cchar c = ' ', *to = command_line, *from = COMMAND_LINE;
from158arch/i386/kernel/setup.cif (c == ' ' && *(const unsigned long *)from == *(const unsigned long *)"mem=") {
from160arch/i386/kernel/setup.cif (!memcmp(from+4, "nopentium", 9)) {
from161arch/i386/kernel/setup.cfrom += 9+4;
from164arch/i386/kernel/setup.cmemory_end = simple_strtoul(from+4, &from, 0);
from165arch/i386/kernel/setup.cif ( *from == 'K' || *from == 'k' ) {
from167arch/i386/kernel/setup.cfrom++;
from168arch/i386/kernel/setup.c} else if ( *from == 'M' || *from == 'm' ) {
from170arch/i386/kernel/setup.cfrom++;
from174arch/i386/kernel/setup.cc = *(from++);
from1110arch/m68k/amiga/amifb.cstatic void memcpy_fs(int fsfromto, void *to, void *from, int len);
from1111arch/m68k/amiga/amifb.cstatic void copy_cmap(struct fb_cmap *from, struct fb_cmap *to, int fsfromto);
from4343arch/m68k/amiga/amifb.cstatic void memcpy_fs(int fsfromto, void *to, void *from, int len)
from4347arch/m68k/amiga/amifb.cmemcpy(to, from, len);
from4350arch/m68k/amiga/amifb.cmemcpy_fromfs(to, from, len);
from4353arch/m68k/amiga/amifb.cmemcpy_tofs(to, from, len);
from4359arch/m68k/amiga/amifb.cstatic void copy_cmap(struct fb_cmap *from, struct fb_cmap *to, int fsfromto)
from4364arch/m68k/amiga/amifb.cif (to->start > from->start)
from4365arch/m68k/amiga/amifb.cfromoff = to->start-from->start;
from4367arch/m68k/amiga/amifb.ctooff = from->start-to->start;
from4369arch/m68k/amiga/amifb.cif (size > from->len-fromoff)
from4370arch/m68k/amiga/amifb.csize = from->len-fromoff;
from4374arch/m68k/amiga/amifb.cmemcpy_fs(fsfromto, to->red+tooff, from->red+fromoff, size);
from4375arch/m68k/amiga/amifb.cmemcpy_fs(fsfromto, to->green+tooff, from->green+fromoff, size);
from4376arch/m68k/amiga/amifb.cmemcpy_fs(fsfromto, to->blue+tooff, from->blue+fromoff, size);
from4377arch/m68k/amiga/amifb.cif (from->transp && to->transp)
from4378arch/m68k/amiga/amifb.cmemcpy_fs(fsfromto, to->transp+tooff, from->transp+fromoff, size);
from2483arch/m68k/atari/atafb.cmemcpy_fs(int fsfromto, void *to, void *from, int len)
from2487arch/m68k/atari/atafb.cmemcpy(to,from,len);
from2490arch/m68k/atari/atafb.cmemcpy_fromfs(to,from,len);
from2493arch/m68k/atari/atafb.cmemcpy_tofs(to,from,len);
from2499arch/m68k/atari/atafb.ccopy_cmap(struct fb_cmap *from, struct fb_cmap *to, int fsfromto)
from2504arch/m68k/atari/atafb.cif (to->start > from->start)
from2505arch/m68k/atari/atafb.cfromoff=to->start-from->start;
from2507arch/m68k/atari/atafb.ctooff=from->start-to->start;      
from2509arch/m68k/atari/atafb.cif (size > from->len-fromoff)
from2510arch/m68k/atari/atafb.csize=from->len-fromoff;
from2514arch/m68k/atari/atafb.cmemcpy_fs(fsfromto, to->red+tooff, from->red+fromoff, size);
from2515arch/m68k/atari/atafb.cmemcpy_fs(fsfromto, to->green+tooff, from->green+fromoff, size);
from2516arch/m68k/atari/atafb.cmemcpy_fs(fsfromto, to->blue+tooff, from->blue+fromoff, size);
from2517arch/m68k/atari/atafb.cif (from->transp && to->transp)
from2518arch/m68k/atari/atafb.cmemcpy_fs(fsfromto, to->transp+tooff, from->transp+fromoff, size);
from45arch/m68k/fpsp040/fpsp.h|  Positive offsets from A6 refer to the exception frame.  Negative
from47arch/m68k/fpsp040/fpsp.h|  The fsave frame is also accessible from the top via A7.
from71arch/m68k/fpsp040/fpsp.h|  restored from the "local variable" area and can be used as
from125arch/m68k/fpsp040/fpsp.h|  Offsets are defined from the end of an fsave because the last 10
from182arch/m68k/kernel/sys_m68k.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
from3arch/m68k/lib/memcpy.cvoid * memcpy(void * to, const void * from, size_t n)
from13arch/m68k/lib/memcpy.cconst char *cfrom = from;
from16arch/m68k/lib/memcpy.cfrom = cfrom;
from22arch/m68k/lib/memcpy.cconst short *sfrom = from;
from25arch/m68k/lib/memcpy.cfrom = sfrom;
from32arch/m68k/lib/memcpy.cconst long *lfrom = from;
from38arch/m68k/lib/memcpy.cfrom = lfrom;
from43arch/m68k/lib/memcpy.cconst short *sfrom = from;
from46arch/m68k/lib/memcpy.cfrom = sfrom;
from51arch/m68k/lib/memcpy.cconst char *cfrom = from;
from13arch/mips/kernel/ioport.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
from161arch/mips/mm/init.cvoid __copy_page(unsigned long from, unsigned long to)
from167arch/mips/mm/init.cif(from == (unsigned long) empty_zero_page)
from185arch/mips/mm/init.c(void *) (from + (PT_OFFSET - PAGE_OFFSET)), PAGE_SIZE);
from193arch/mips/mm/init.cif (page_colour(from) != page_colour(to))
from156arch/ppc/kernel/setup.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
from336arch/sparc/kernel/setup.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
from79arch/sparc/mm/generic.cint io_remap_page_range(unsigned long from, unsigned long offset, unsigned long size, pgprot_t prot, int space)
from83arch/sparc/mm/generic.cunsigned long beg = from;
from84arch/sparc/mm/generic.cunsigned long end = from + size;
from87arch/sparc/mm/generic.coffset -= from;
from88arch/sparc/mm/generic.cdir = pgd_offset(current->mm, from);
from90arch/sparc/mm/generic.cwhile (from < end) {
from91arch/sparc/mm/generic.cpmd_t *pmd = pmd_alloc(dir, from);
from95arch/sparc/mm/generic.cerror = io_remap_pmd_range(pmd, from, end - from, offset + from, prot, space);
from98arch/sparc/mm/generic.cfrom = (from + PGDIR_SIZE) & PGDIR_MASK;
from1107drivers/block/amiflop.cstatic __inline__ void copy_buffer(void *from, void *to)
from1112drivers/block/amiflop.cp1 = (ulong *)from;
from379drivers/block/ataflop.cstatic __inline__ void copy_buffer( void *from, void *to);
from1385drivers/block/ataflop.cstatic __inline__ void copy_buffer(void *from, void *to)
from1387drivers/block/ataflop.culong  *p1 = (ulong *)from, *p2 = (ulong *)to;
from813drivers/cdrom/cm206.cvoid play_from_to_track(int from, int to)
from818drivers/cdrom/cm206.cif (from==0) {    /* continue paused play */
from824drivers/cdrom/cm206.cupdate_toc_entry(from); update_toc_entry(to+1);
from826drivers/cdrom/cm206.cplay_command[i+1] = cd->toc[from].fsm[i];
from190drivers/char/selection.hstatic inline void memcpyw(unsigned short *to, unsigned short *from,
from196drivers/char/selection.hscr_writew(scr_readw(from++), to++);
from54drivers/char/vt.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on);
from926drivers/net/de620.cReadAWord(struct device *dev, int from)
from937drivers/net/de620.cfor (nbits = 9; nbits > 0; --nbits, from <<= 1) {
from938drivers/net/de620.cif (from & 0x0100) { /* bit set? */
from166drivers/scsi/sr_ioctl.csr_cmd[2] = blk.from >> 24;
from167drivers/scsi/sr_ioctl.csr_cmd[3] = blk.from >> 16;
from168drivers/scsi/sr_ioctl.csr_cmd[4] = blk.from >> 8;
from169drivers/scsi/sr_ioctl.csr_cmd[5] = blk.from;
from1352fs/hpfs/hpfs_fs.cstatic void translate_hpfs_name(const unsigned char * from, int len, char * to, int lowercase)
from1355fs/hpfs/hpfs_fs.cunsigned t = *from;
from1362fs/hpfs/hpfs_fs.cfrom++;
from704fs/namei.cchar * from, * to;
from706fs/namei.cerror = getname(oldname,&from);
from710fs/namei.cerror = do_symlink(from,to);
from713fs/namei.cputname(from);
from864fs/namei.cchar * from, * to;
from866fs/namei.cerror = getname(oldname,&from);
from870fs/namei.cerror = do_rename(from,to);
from873fs/namei.cputname(from);
from184include/asm-alpha/io.h#define memcpy_fromio(to,from,len)  _memcpy_fromio((to),(unsigned long)(from),(len))
from185include/asm-alpha/io.h#define memcpy_toio(to,from,len)  _memcpy_toio((unsigned long)(to),(from),(len))
from90include/asm-alpha/segment.hstatic inline void memcpy_fromfs(void * to, const void * from, unsigned long n)
from93include/asm-alpha/segment.hmemcpy(to, from, n);
from97include/asm-alpha/segment.hstatic inline void memcpy_tofs(void * to, const void * from, unsigned long n)
from100include/asm-alpha/segment.hmemcpy(to, from, n);
from83include/asm-i386/segment.hstatic inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n)
from105include/asm-i386/segment.h:"0" (n),"D" ((long) to),"S" ((long) from)
from109include/asm-i386/segment.hstatic inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n)
from115include/asm-i386/segment.h__put_user(*(const char *) from, (char *) to, 1);
from118include/asm-i386/segment.h__put_user(*(const short *) from, (short *) to, 2);
from121include/asm-i386/segment.h__put_user(*(const short *) from, (short *) to, 2);
from122include/asm-i386/segment.h__put_user(*(2+(const char *) from), 2+(char *) to, 1);
from125include/asm-i386/segment.h__put_user(*(const int *) from, (int *) to, 4);
from128include/asm-i386/segment.h__put_user(*(const int *) from, (int *) to, 4);
from129include/asm-i386/segment.h__put_user(*(1+(const int *) from), 1+(int *) to, 4);
from132include/asm-i386/segment.h__put_user(*(const int *) from, (int *) to, 4);
from133include/asm-i386/segment.h__put_user(*(1+(const int *) from), 1+(int *) to, 4);
from134include/asm-i386/segment.h__put_user(*(2+(const int *) from), 2+(int *) to, 4);
from137include/asm-i386/segment.h__put_user(*(const int *) from, (int *) to, 4);
from138include/asm-i386/segment.h__put_user(*(1+(const int *) from), 1+(int *) to, 4);
from139include/asm-i386/segment.h__put_user(*(2+(const int *) from), 2+(int *) to, 4);
from140include/asm-i386/segment.h__put_user(*(3+(const int *) from), 3+(int *) to, 4);
from152include/asm-i386/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from172include/asm-i386/segment.hstatic inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n)
from190include/asm-i386/segment.h:"0" (n),"D" ((long) to),"S" ((long) from)
from194include/asm-i386/segment.hstatic inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n)
from200include/asm-i386/segment.h*(char *)to = __get_user((const char *) from, 1);
from203include/asm-i386/segment.h*(short *)to = __get_user((const short *) from, 2);
from206include/asm-i386/segment.h*(short *) to = __get_user((const short *) from, 2);
from207include/asm-i386/segment.h*((char *) to + 2) = __get_user(2+(const char *) from, 1);
from210include/asm-i386/segment.h*(int *) to = __get_user((const int *) from, 4);
from213include/asm-i386/segment.h*(int *) to = __get_user((const int *) from, 4);
from214include/asm-i386/segment.h*(1+(int *) to) = __get_user(1+(const int *) from, 4);
from217include/asm-i386/segment.h*(int *) to = __get_user((const int *) from, 4);
from218include/asm-i386/segment.h*(1+(int *) to) = __get_user(1+(const int *) from, 4);
from219include/asm-i386/segment.h*(2+(int *) to) = __get_user(2+(const int *) from, 4);
from222include/asm-i386/segment.h*(int *) to = __get_user((const int *) from, 4);
from223include/asm-i386/segment.h*(1+(int *) to) = __get_user(1+(const int *) from, 4);
from224include/asm-i386/segment.h*(2+(int *) to) = __get_user(2+(const int *) from, 4);
from225include/asm-i386/segment.h*(3+(int *) to) = __get_user(3+(const int *) from, 4);
from233include/asm-i386/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from253include/asm-i386/segment.h#define memcpy_fromfs(to, from, n) \
from255include/asm-i386/segment.h__constant_memcpy_fromfs((to),(from),(n)) : \
from256include/asm-i386/segment.h__generic_memcpy_fromfs((to),(from),(n)))
from258include/asm-i386/segment.h#define memcpy_tofs(to, from, n) \
from260include/asm-i386/segment.h__constant_memcpy_tofs((to),(from),(n)) : \
from261include/asm-i386/segment.h__generic_memcpy_tofs((to),(from),(n)))
from425include/asm-i386/string-486.hextern inline void * __memcpy_by4(void * to, const void * from, size_t n)
from436include/asm-i386/string-486.h:"=r" (dummy1), "=r" (tmp), "=r" (from), "=r" (dummy2) 
from437include/asm-i386/string-486.h:"1" (tmp), "2" (from), "3" (n/4)
from442include/asm-i386/string-486.hextern inline void * __memcpy_by2(void * to, const void * from, size_t n)
from457include/asm-i386/string-486.h:"=r" (dummy1), "=r" (tmp), "=r" (from), "=r" (dummy2) 
from458include/asm-i386/string-486.h:"1" (tmp), "2" (from), "3" (n/2)
from463include/asm-i386/string-486.hextern inline void * __memcpy_g(void * to, const void * from, size_t n)
from477include/asm-i386/string-486.h:"c" (n),"D" ((long) tmp),"S" ((long) from)
from365include/asm-i386/string.hextern inline void * __memcpy(void * to, const void * from, size_t n)
from378include/asm-i386/string.h:"c" (n/4), "q" (n),"D" ((long) to),"S" ((long) from)
from387include/asm-i386/string.hextern inline void * __constant_memcpy(void * to, const void * from, size_t n)
from393include/asm-i386/string.h*(unsigned char *)to = *(const unsigned char *)from;
from396include/asm-i386/string.h*(unsigned short *)to = *(const unsigned short *)from;
from399include/asm-i386/string.h*(unsigned short *)to = *(const unsigned short *)from;
from400include/asm-i386/string.h*(2+(unsigned char *)to) = *(2+(const unsigned char *)from);
from403include/asm-i386/string.h*(unsigned long *)to = *(const unsigned long *)from;
from406include/asm-i386/string.h*(unsigned long *)to = *(const unsigned long *)from;
from407include/asm-i386/string.h*(1+(unsigned long *)to) = *(1+(const unsigned long *)from);
from410include/asm-i386/string.h*(unsigned long *)to = *(const unsigned long *)from;
from411include/asm-i386/string.h*(1+(unsigned long *)to) = *(1+(const unsigned long *)from);
from412include/asm-i386/string.h*(2+(unsigned long *)to) = *(2+(const unsigned long *)from);
from415include/asm-i386/string.h*(unsigned long *)to = *(const unsigned long *)from;
from416include/asm-i386/string.h*(1+(unsigned long *)to) = *(1+(const unsigned long *)from);
from417include/asm-i386/string.h*(2+(unsigned long *)to) = *(2+(const unsigned long *)from);
from418include/asm-i386/string.h*(3+(unsigned long *)to) = *(3+(const unsigned long *)from);
from421include/asm-i386/string.h*(unsigned long *)to = *(const unsigned long *)from;
from422include/asm-i386/string.h*(1+(unsigned long *)to) = *(1+(const unsigned long *)from);
from423include/asm-i386/string.h*(2+(unsigned long *)to) = *(2+(const unsigned long *)from);
from424include/asm-i386/string.h*(3+(unsigned long *)to) = *(3+(const unsigned long *)from);
from425include/asm-i386/string.h*(4+(unsigned long *)to) = *(4+(const unsigned long *)from);
from433include/asm-i386/string.h: "c" (n/4),"D" ((long) to),"S" ((long) from) \
from134include/asm-m68k/segment.hstatic inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n)
from148include/asm-m68k/segment.h: "=d" (n), "=a" (from), "=a" (to)
from149include/asm-m68k/segment.h: "0" (n-1), "1" (from), "2" (to)
from154include/asm-m68k/segment.h: "=a" (from), "=a" (to)
from155include/asm-m68k/segment.h: "0" (from), "1" (to)
from161include/asm-m68k/segment.h: "a" (from), "a" (to)
from165include/asm-m68k/segment.hstatic inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n)
from171include/asm-m68k/segment.h__put_user(*(const char *) from, (char *) to, 1);
from174include/asm-m68k/segment.h__put_user(*(const short *) from, (short *) to, 2);
from177include/asm-m68k/segment.h__put_user(*(const short *) from, (short *) to, 2);
from178include/asm-m68k/segment.h__put_user(*(2+(const char *) from), 2+(char *) to, 1);
from181include/asm-m68k/segment.h__put_user(*(const int *) from, (int *) to, 4);
from184include/asm-m68k/segment.h__put_user(*(const int *) from, (int *) to, 4);
from185include/asm-m68k/segment.h__put_user(*(1+(const int *) from), 1+(int *) to, 4);
from188include/asm-m68k/segment.h__put_user(*(const int *) from, (int *) to, 4);
from189include/asm-m68k/segment.h__put_user(*(1+(const int *) from), 1+(int *) to, 4);
from190include/asm-m68k/segment.h__put_user(*(2+(const int *) from), 2+(int *) to, 4);
from193include/asm-m68k/segment.h__put_user(*(const int *) from, (int *) to, 4);
from194include/asm-m68k/segment.h__put_user(*(1+(const int *) from), 1+(int *) to, 4);
from195include/asm-m68k/segment.h__put_user(*(2+(const int *) from), 2+(int *) to, 4);
from196include/asm-m68k/segment.h__put_user(*(3+(const int *) from), 3+(int *) to, 4);
from208include/asm-m68k/segment.h: "=d" (n), "=a" (from), "=a" (to)    \
from209include/asm-m68k/segment.h: "1" (from), "2" (to), "0" (n/4-1)   \
from230include/asm-m68k/segment.hstatic inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n)
from244include/asm-m68k/segment.h: "=d" (n), "=a" (from), "=a" (to)
from245include/asm-m68k/segment.h: "0" (n-1), "1" (from), "2" (to)
from250include/asm-m68k/segment.h: "=a" (from), "=a" (to)
from251include/asm-m68k/segment.h: "0" (from), "1" (to)
from257include/asm-m68k/segment.h: "a" (from), "a" (to)
from261include/asm-m68k/segment.hstatic inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n)
from267include/asm-m68k/segment.h*(char *)to = __get_user((const char *) from, 1);
from270include/asm-m68k/segment.h*(short *)to = __get_user((const short *) from, 2);
from273include/asm-m68k/segment.h*(short *) to = __get_user((const short *) from, 2);
from274include/asm-m68k/segment.h*((char *) to + 2) = __get_user(2+(const char *) from, 1);
from277include/asm-m68k/segment.h*(int *) to = __get_user((const int *) from, 4);
from280include/asm-m68k/segment.h*(int *) to = __get_user((const int *) from, 4);
from281include/asm-m68k/segment.h*(1+(int *) to) = __get_user(1+(const int *) from, 4);
from284include/asm-m68k/segment.h*(int *) to = __get_user((const int *) from, 4);
from285include/asm-m68k/segment.h*(1+(int *) to) = __get_user(1+(const int *) from, 4);
from286include/asm-m68k/segment.h*(2+(int *) to) = __get_user(2+(const int *) from, 4);
from289include/asm-m68k/segment.h*(int *) to = __get_user((const int *) from, 4);
from290include/asm-m68k/segment.h*(1+(int *) to) = __get_user(1+(const int *) from, 4);
from291include/asm-m68k/segment.h*(2+(int *) to) = __get_user(2+(const int *) from, 4);
from292include/asm-m68k/segment.h*(3+(int *) to) = __get_user(3+(const int *) from, 4);
from304include/asm-m68k/segment.h: "=d" (n), "=a" (from), "=a" (to)    \
from305include/asm-m68k/segment.h: "1" (from), "2" (to), "0" (n/4-1)   \
from326include/asm-m68k/segment.h#define memcpy_fromfs(to, from, n) \
from328include/asm-m68k/segment.h__constant_memcpy_fromfs((to),(from),(n)) : \
from329include/asm-m68k/segment.h__generic_memcpy_fromfs((to),(from),(n)))
from331include/asm-m68k/segment.h#define memcpy_tofs(to, from, n) \
from333include/asm-m68k/segment.h__constant_memcpy_tofs((to),(from),(n)) : \
from334include/asm-m68k/segment.h__generic_memcpy_tofs((to),(from),(n)))
from239include/asm-m68k/string.h#define memcpy(to, from, n) \
from241include/asm-m68k/string.h__builtin_memcpy((to),(from),(n)) : \
from242include/asm-m68k/string.hmemcpy((to),(from),(n)))
from60include/asm-mips/page.hextern void __copy_page(unsigned long from, unsigned long to);
from61include/asm-mips/page.h#define copy_page(from,to) __copy_page((unsigned long)from, (unsigned long)to)
from53include/asm-mips/pgtable.hextern void __copy_page(unsigned long from, unsigned long to);
from54include/asm-mips/pgtable.h#define copy_page(from,to) __copy_page((unsigned long)from, (unsigned long)to)
from109include/asm-mips/segment.hstatic inline void memcpy_fromfs(void * to, const void * from, unsigned long n)
from112include/asm-mips/segment.hmemcpy(to, from, n);
from116include/asm-mips/segment.hstatic inline void memcpy_tofs(void * to, const void * from, unsigned long n)
from119include/asm-mips/segment.hmemcpy(to, from, n);
from141include/asm-mips/string.hextern __inline__ void * memcpy(void * to, const void * from, size_t n)
from158include/asm-mips/string.h: "=r" (to), "=r" (from), "=r" (n)
from159include/asm-mips/string.h: "0" (to), "1" (from), "2" (n)
from103include/asm-ppc/segment.h#define memcpy_fromfs(to, from, n) memcpy((to),(from),(n))
from105include/asm-ppc/segment.h#define memcpy_tofs(to, from, n) memcpy((to),(from),(n))
from28include/asm-sparc/openprom.hint (*v0_seekdev)(int dev_desc, long logical_offst, int from);
from20include/asm-sparc/pgtable.hextern int io_remap_page_range(unsigned long from, unsigned long to,
from105include/asm-sparc/segment.h#define memcpy_fromfs(to, from, n) memcpy((to),(from),(n))
from107include/asm-sparc/segment.h#define memcpy_tofs(to, from, n) memcpy((to),(from),(n))
from72include/linux/cdrom.hunsigned from;
from20include/linux/ioport.hextern int check_region(unsigned int from, unsigned int extent);
from21include/linux/ioport.hextern void request_region(unsigned int from, unsigned int extent,const char *name);
from22include/linux/ioport.hextern void release_region(unsigned int from, unsigned int extent);
from11include/linux/iso_fs.h#define ISODCL(from, to) (to - from + 1)
from263include/linux/mm.hextern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, pgprot_t prot);
from264include/linux/mm.hextern int zeromap_page_range(unsigned long from, unsigned long size, pgprot_t prot);
from445include/linux/skbuff.hextern void      skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size);
from446include/linux/skbuff.hextern void      skb_copy_datagram_iovec(struct sk_buff *from, int offset, struct iovec *to,int size);
from339kernel/module.cstruct internal_symbol *from;
from373kernel/module.cfrom = mp->symtab->symbol;
from374kernel/module.ci > 0; --i, ++from, ++to) {
from376kernel/module.cisym.value = (unsigned long)from->addr;
from377kernel/module.cstrncpy(isym.name, from->name, sizeof isym.name);
from19kernel/resource.cu_long from, num;
from38kernel/resource.cp->from, p->from+p->num-1, p->name);
from48kernel/resource.cu_long from, u_long num)
from53kernel/resource.cif (from > from+num-1)
from58kernel/resource.cif ((p != root) && (p->from+p->num-1 >= from)) {
from62kernel/resource.cif ((p->next == NULL) || (p->next->from > from+num-1))
from72kernel/resource.cvoid request_region(unsigned int from, unsigned int num, const char *name)
from83kernel/resource.cp = find_gap(&iolist, from, num);
from87kernel/resource.ciotable[i].from = from;
from98kernel/resource.cvoid release_region(unsigned int from, unsigned int num)
from106kernel/resource.cif ((q->from == from) && (q->num == num)) {
from117kernel/resource.cint check_region(unsigned int from, unsigned int num)
from119kernel/resource.creturn (find_gap(&iolist, from, num) == NULL) ? -EBUSY : 0;
from60mm/memory.cstatic inline void copy_page(unsigned long from, unsigned long to)
from62mm/memory.cif (from == ZERO_PAGE) {
from66mm/memory.cmemcpy((void *) to, (void *) from, PAGE_SIZE);
from496mm/memory.cint remap_page_range(unsigned long from, unsigned long offset, unsigned long size, pgprot_t prot)
from500mm/memory.cunsigned long beg = from;
from501mm/memory.cunsigned long end = from + size;
from503mm/memory.coffset -= from;
from504mm/memory.cdir = pgd_offset(current->mm, from);
from506mm/memory.cwhile (from < end) {
from507mm/memory.cpmd_t *pmd = pmd_alloc(dir, from);
from511mm/memory.cerror = remap_pmd_range(pmd, from, end - from, offset + from, prot);
from514mm/memory.cfrom = (from + PGDIR_SIZE) & PGDIR_MASK;
from58net/ipv4/ip_masq_ftp.c__u32 from;
from99net/ipv4/ip_masq_ftp.cfrom = (p1<<24) | (p2<<16) | (p3<<8) | p4;
from102net/ipv4/ip_masq_ftp.cprintk("PORT %X:%X detected\n",from,port);
from108net/ipv4/ip_masq_ftp.cprintk("protocol %d %lX:%X %X:%X\n", iph->protocol, htonl(from), htons(port), iph->daddr, 0);
from112net/ipv4/ip_masq_ftp.chtonl(from), htons(port),
from120net/ipv4/ip_masq_ftp.chtonl(from), htons(port),
from137net/ipv4/ip_masq_ftp.cfrom = ntohl(n_ms->maddr);
from140net/ipv4/ip_masq_ftp.cfrom>>24&255,from>>16&255,from>>8&255,from&255,
from144net/ipv4/ip_masq_ftp.cprintk("new PORT %X:%X\n",from,port);
from212net/ipv4/raw.cstatic int raw_sendto(struct sock *sk, const unsigned char *from, 
from264net/ipv4/raw.cerr=ip_build_xmit(sk, raw_getrawfrag, from, len, sin.sin_addr.s_addr, 0, sk->opt, flags, sin.sin_port, noblock);
from270net/ipv4/raw.cerr=ip_build_xmit(sk, raw_getfrag, from, len, sin.sin_addr.s_addr, 0, sk->opt, flags, sin.sin_port, noblock);
from913net/ipv4/tcp.cunsigned char * from=iov->iov_base;
from992net/ipv4/tcp.cmemcpy_fromfs(skb_put(skb,copy), from, copy);
from994net/ipv4/tcp.cfrom += copy;
from1106net/ipv4/tcp.cskb->csum = csum_partial_copy_fromuser(from,
from1109net/ipv4/tcp.cfrom += copy;
from219net/ipv4/udp.cconst char *from;
from239net/ipv4/udp.csrc = ufh->from+(offset-sizeof(struct udphdr));
from245net/ipv4/udp.csrc = ufh->from;
from279net/ipv4/udp.csrc = ufh->from+(offset-sizeof(struct udphdr));
from285net/ipv4/udp.csrc = ufh->from;
from299net/ipv4/udp.cconst unsigned char *from, int len, int rt,
from315net/ipv4/udp.cufh.from = from;
from336net/ipv4/udp.cstatic int udp_sendto(struct sock *sk, const unsigned char *from, int len, int noblock,
from396net/ipv4/udp.ctmp = udp_send(sk, usin, from, len, flags, saddr, noblock);