taglinefilesource code
from89arch/alpha/kernel/setup.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
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);
from81arch/i386/kernel/setup.cchar c = ' ', *to = command_line, *from = COMMAND_LINE;
from104arch/i386/kernel/setup.cif (c == ' ' && *(unsigned long *)from == *(unsigned long *)"mem=") {
from105arch/i386/kernel/setup.cmemory_end = simple_strtoul(from+4, &from, 0);
from106arch/i386/kernel/setup.cif ( *from == 'K' || *from == 'k' ) {
from108arch/i386/kernel/setup.cfrom++;
from109arch/i386/kernel/setup.c} else if ( *from == 'M' || *from == 'm' ) {
from111arch/i386/kernel/setup.cfrom++;
from114arch/i386/kernel/setup.cc = *(from++);
from13arch/mips/kernel/ioport.cu_long from, num;
from55arch/mips/kernel/ioport.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
from84arch/mips/kernel/ioport.cu_long from, u_long num)
from89arch/mips/kernel/ioport.cif (from > from+num-1)
from94arch/mips/kernel/ioport.cif ((p != root) && (p->from+p->num-1 >= from)) {
from98arch/mips/kernel/ioport.cif ((p->next == NULL) || (p->next->from > from+num-1))
from74arch/mips/kernel/setup.cchar c = ' ', *to = command_line, *from = COMMAND_LINE;
from93arch/mips/kernel/setup.cif (c == ' ' && *(unsigned long *)from == *(unsigned long *)"mem=") {
from94arch/mips/kernel/setup.cmemory_end = simple_strtoul(from+4, &from, 0);
from95arch/mips/kernel/setup.cif ( *from == 'K' || *from == 'k' ) {
from97arch/mips/kernel/setup.cfrom++;
from98arch/mips/kernel/setup.c} else if ( *from == 'M' || *from == 'm' ) {
from100arch/mips/kernel/setup.cfrom++;
from103arch/mips/kernel/setup.cc = *(from++);
from98arch/sparc/kernel/setup.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on)
from47drivers/char/vt.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on);
from889drivers/net/de620.cReadAWord(int from)
from900drivers/net/de620.cfor (nbits = 9; nbits > 0; --nbits, from <<= 1) {
from901drivers/net/de620.cif (from & 0x0100) { /* bit set? */
from677fs/namei.cchar * from, * to;
from679fs/namei.cerror = getname(oldname,&from);
from683fs/namei.cerror = do_symlink(from,to);
from686fs/namei.cputname(from);
from833fs/namei.cchar * from, * to;
from835fs/namei.cerror = getname(oldname,&from);
from839fs/namei.cerror = do_rename(from,to);
from842fs/namei.cputname(from);
from62include/asm-alpha/segment.h#define memcpy_fromfs(to, from, n) memcpy((to),(from),(n))
from64include/asm-alpha/segment.h#define memcpy_tofs(to, from, n) memcpy((to),(from),(n))
from63include/asm-i386/segment.hstatic inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n)
from79include/asm-i386/segment.h:"c" (n),"D" ((long) to),"S" ((long) from)
from83include/asm-i386/segment.hstatic inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n)
from89include/asm-i386/segment.hput_user_byte(*(const char *) from, (char *) to);
from92include/asm-i386/segment.hput_user_word(*(const short *) from, (short *) to);
from95include/asm-i386/segment.hput_user_word(*(const short *) from, (short *) to);
from96include/asm-i386/segment.hput_user_byte(*(2+(const char *) from), 2+(char *) to);
from99include/asm-i386/segment.hput_user_long(*(const int *) from, (int *) to);
from111include/asm-i386/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from131include/asm-i386/segment.hstatic inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n)
from143include/asm-i386/segment.h:"c" (n),"D" ((long) to),"S" ((long) from)
from147include/asm-i386/segment.hstatic inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n)
from153include/asm-i386/segment.h*(char *)to = get_user_byte((const char *) from);
from156include/asm-i386/segment.h*(short *)to = get_user_word((const short *) from);
from159include/asm-i386/segment.h*(short *) to = get_user_word((const short *) from);
from160include/asm-i386/segment.h*((char *) to + 2) = get_user_byte(2+(const char *) from);
from163include/asm-i386/segment.h*(int *) to = get_user_long((const int *) from);
from171include/asm-i386/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from191include/asm-i386/segment.h#define memcpy_fromfs(to, from, n) \
from193include/asm-i386/segment.h__constant_memcpy_fromfs((to),(from),(n)) : \
from194include/asm-i386/segment.h__generic_memcpy_fromfs((to),(from),(n)))
from196include/asm-i386/segment.h#define memcpy_tofs(to, from, n) \
from198include/asm-i386/segment.h__constant_memcpy_tofs((to),(from),(n)) : \
from199include/asm-i386/segment.h__generic_memcpy_tofs((to),(from),(n)))
from340include/asm-i386/string.hextern inline void * __memcpy(void * to, const void * from, size_t n)
from355include/asm-i386/string.h:"d" (n),"D" ((long) to),"S" ((long) from)
from364include/asm-i386/string.hextern inline void * __constant_memcpy(void * to, const void * from, size_t n)
from370include/asm-i386/string.h*(unsigned char *)to = *(unsigned char *)from;
from373include/asm-i386/string.h*(unsigned short *)to = *(unsigned short *)from;
from376include/asm-i386/string.h*(unsigned short *)to = *(unsigned short *)from;
from377include/asm-i386/string.h*(2+(unsigned char *)to) = *(2+(unsigned char *)from);
from380include/asm-i386/string.h*(unsigned long *)to = *(unsigned long *)from;
from388include/asm-i386/string.h: "c" (n/4),"D" ((long) to),"S" ((long) from) \
from69include/asm-m68k/segment.hstatic inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n)
from79include/asm-m68k/segment.h: "=d" (n), "=a" (from), "=a" (to)
from80include/asm-m68k/segment.h: "1" (from), "2" (to), "0" (n-1)
from84include/asm-m68k/segment.hstatic inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n)
from89include/asm-m68k/segment.hput_user_byte(*(const char *) from, (char *) to);
from92include/asm-m68k/segment.hput_user_word(*(const short *) from, (short *) to);
from95include/asm-m68k/segment.hput_user_word(*(const short *) from, (short *) to);
from96include/asm-m68k/segment.hput_user_byte(*(2+(const char *) from), 2+(char *) to);
from99include/asm-m68k/segment.hput_user_long(*(const int *) from, (int *) to);
from112include/asm-m68k/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from131include/asm-m68k/segment.h__generic_memcpy_tofs(to,from,n);
from135include/asm-m68k/segment.hstatic inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n)
from145include/asm-m68k/segment.h: "=d" (n), "=a" (from), "=a" (to)
from146include/asm-m68k/segment.h: "1" (from), "2" (to), "0" (n-1)
from150include/asm-m68k/segment.hstatic inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n)
from155include/asm-m68k/segment.h*(char *)to = get_user_byte((const char *) from);
from158include/asm-m68k/segment.h*(short *)to = get_user_word((const short *) from);
from161include/asm-m68k/segment.h*(short *) to = get_user_word((const short *) from);
from162include/asm-m68k/segment.h*(2+(char *) to) = get_user_byte(2+(const char *) from);
from165include/asm-m68k/segment.h*(int *) to = get_user_long((const int *) from);
from174include/asm-m68k/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from193include/asm-m68k/segment.h__generic_memcpy_fromfs(to,from,n);
from197include/asm-m68k/segment.h#define memcpy_fromfs(to, from, n) \
from199include/asm-m68k/segment.h__constant_memcpy_fromfs((to),(from),(n)) : \
from200include/asm-m68k/segment.h__generic_memcpy_fromfs((to),(from),(n)))
from202include/asm-m68k/segment.h#define memcpy_tofs(to, from, n) \
from204include/asm-m68k/segment.h__constant_memcpy_tofs((to),(from),(n)) : \
from205include/asm-m68k/segment.h__generic_memcpy_tofs((to),(from),(n)))
from108include/asm-m68k/string.hextern inline void * memcpy(void * to, const void * from, size_t n)
from118include/asm-m68k/string.h: "=a" (to), "=a" (from), "=d" (n)
from119include/asm-m68k/string.h: "0" (to), "1" (from), "2" (n)
from81include/asm-mips/segment.h#define memcpy_fromfs(to, from, n) memcpy((to),(from),(n))
from83include/asm-mips/segment.h#define memcpy_tofs(to, from, n) memcpy((to),(from),(n))
from136include/asm-mips/string.hextern __inline__ void * memcpy(void * to, const void * from, size_t n)
from153include/asm-mips/string.h: "=r" (to), "=r" (from), "=r" (n)
from154include/asm-mips/string.h: "0" (to), "1" (from), "2" (n)
from42include/asm-sparc/openprom.hint  (*v0_seekdev)(int dev_desc, long logical_offst, int from);
from69include/asm-sparc/segment.h#define memcpy_fromfs(to, from, n) memcpy((to),(from),(n))
from71include/asm-sparc/segment.h#define memcpy_tofs(to, from, n) memcpy((to),(from),(n))
from20include/linux/ioport.hextern int check_region(unsigned int from, unsigned int extent);
from21include/linux/ioport.hextern void snarf_region(unsigned int from, unsigned int extent);
from22include/linux/ioport.hextern void request_region(unsigned int from, unsigned int extent,const char *name);
from23include/linux/ioport.hextern void release_region(unsigned int from, unsigned int extent);
from11include/linux/iso_fs.h#define ISODCL(from, to) (to - from + 1)
from180include/linux/mm.hextern int unmap_page_range(unsigned long from, unsigned long size);
from181include/linux/mm.hextern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, pgprot_t prot);
from182include/linux/mm.hextern int zeromap_page_range(unsigned long from, unsigned long size, pgprot_t prot);
from282include/linux/skbuff.hextern void      skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size);
from361kernel/module.cstruct internal_symbol *from;
from395kernel/module.cfrom = mp->symtab->symbol;
from396kernel/module.ci > 0; --i, ++from, ++to) {
from398kernel/module.cisym.value = (unsigned long)from->addr;
from399kernel/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;
from99kernel/resource.cvoid snarf_region(unsigned int from, unsigned int num)
from101kernel/resource.crequest_region(from,num,"No name given.");
from107kernel/resource.cvoid release_region(unsigned int from, unsigned int num)
from115kernel/resource.cif ((q->from == from) && (q->num == num)) {
from126kernel/resource.cint check_region(unsigned int from, unsigned int num)
from128kernel/resource.creturn (find_gap(&iolist, from, num) == NULL) ? -EBUSY : 0;
from62mm/memory.c#define copy_page(from,to) memcpy((void *) to, (void *) from, PAGE_SIZE)
from274mm/memory.cint unmap_page_range(unsigned long from, unsigned long size)
from280mm/memory.cif (from & ~PAGE_MASK) {
from285mm/memory.cdir = PAGE_DIR_OFFSET(current,from);
from286mm/memory.cpoff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1);
from328mm/memory.cint zeromap_page_range(unsigned long from, unsigned long size, pgprot_t prot)
from335mm/memory.cif (from & ~PAGE_MASK) {
from336mm/memory.cprintk("zeromap_page_range: from = %08lx\n",from);
from340mm/memory.cdir = PAGE_DIR_OFFSET(current,from);
from342mm/memory.cpoff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1);
from387mm/memory.cint remap_page_range(unsigned long from, unsigned long to, unsigned long size, pgprot_t prot)
from393mm/memory.cif ((from & ~PAGE_MASK) || (to & ~PAGE_MASK)) {
from394mm/memory.cprintk("remap_page_range: from = %08lx, to=%08lx\n",from,to);
from397mm/memory.cdir = PAGE_DIR_OFFSET(current,from);
from399mm/memory.cpoff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1);
from689mm/memory.cpte_t from, to;
from696mm/memory.cfrom = *from_table;
from698mm/memory.cif (!pte_present(from))
from701mm/memory.cif (pte_dirty(from)) {
from704mm/memory.cif (pte_write(from)) {
from710mm/memory.cif (pte_page(from) >= high_memory)
from712mm/memory.cif (mem_map[MAP_NR(pte_page(from))] & MAP_PAGE_RESERVED)
from726mm/memory.cif (in_swap_cache(pte_page(from))) {
from729mm/memory.cif (!pte_write(from)) {
from734mm/memory.ccopy_page(pte_page(from), newpage);
from747mm/memory.cif (in_swap_cache(pte_page(from))) {
from750mm/memory.c*from_table = pte_mkdirty(from);
from751mm/memory.cdelete_from_swap_cache(pte_page(from));
from753mm/memory.cmem_map[MAP_NR(pte_page(from))]++;
from754mm/memory.c*to_table = mk_pte(pte_page(from), to_area->vm_page_prot);
from756mm/memory.cif (!pte_write(from))
from761mm/memory.c*from_table = pte_wrprotect(from);
from140net/inet/packet.cstatic int packet_sendto(struct sock *sk, unsigned char *from, int len,
from204net/inet/packet.cmemcpy_fromfs(skb->data, from, len);
from126net/inet/raw.cstatic int raw_sendto(struct sock *sk, unsigned char *from, 
from191net/inet/raw.cmemcpy_fromfs(skb->data + tmp, from, len);
from219net/inet/sock.hunsigned char *from, int len, int noblock,
from223net/inet/sock.hunsigned char *from, int len, int noblock,
from1438net/inet/tcp.cstatic int tcp_write(struct sock *sk, unsigned char *from,
from1576net/inet/tcp.cmemcpy_fromfs(skb->data + skb->len, from, copy);
from1578net/inet/tcp.cfrom += copy;
from1724net/inet/tcp.cmemcpy_fromfs(buff+tmp, from, copy);
from1726net/inet/tcp.cfrom += copy;
from1767net/inet/tcp.cstatic int tcp_sendto(struct sock *sk, unsigned char *from,
from1783net/inet/tcp.creturn tcp_write(sk, from, len, nonblock, flags);
from252net/inet/udp.cunsigned char *from, int len, int rt)
from323net/inet/udp.cmemcpy_fromfs(buff, from, len);
from342net/inet/udp.cstatic int udp_sendto(struct sock *sk, unsigned char *from, int len, int noblock,
from390net/inet/udp.ctmp = udp_send(sk, &sin, from, len, flags);