taglinefilesource code
from431drivers/block/floppy.c#define copy_buffer(from,to) \
from434drivers/block/floppy.c:"c" (BLOCK_SIZE/4),"S" ((long)(from)),"D" ((long)(to)) \
from50drivers/char/pty.cstatic inline void pty_copy(struct tty_struct * from, struct tty_struct * to)
from54drivers/char/pty.cwhile (!from->stopped && !EMPTY(&from->write_q)) {
from61drivers/char/pty.cc = get_tty_queue(&from->write_q);
from67drivers/char/pty.cif (!FULL(&from->write_q))
from68drivers/char/pty.cwake_up_interruptible(&from->write_q.proc_list);
from69drivers/char/pty.cif (from->write_data_cnt) {
from70drivers/char/pty.cset_bit(from->line, &tty_check_write);
from40drivers/char/vt.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int on);
from823fs/buffer.c#define COPYBLK(size,from,to) \
from825fs/buffer.c:"c" (((unsigned long) size) >> 2),"S" (from),"D" (to) \
from599fs/namei.cchar * from, * to;
from601fs/namei.cerror = getname(oldname,&from);
from605fs/namei.cerror = do_symlink(from,to);
from608fs/namei.cputname(from);
from729fs/namei.cchar * from, * to;
from731fs/namei.cerror = getname(oldname,&from);
from735fs/namei.cerror = do_rename(from,to);
from738fs/namei.cputname(from);
from37fs/nfs/mmap.cextern int file_mmap_share(struct vm_area_struct * from, struct vm_area_struct * to,
from55include/asm/segment.hstatic inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long n)
from71include/asm/segment.h:"c" (n),"D" ((long) to),"S" ((long) from)
from75include/asm/segment.hstatic inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long n)
from81include/asm/segment.hput_user_byte(*(const char *) from, (char *) to);
from84include/asm/segment.hput_user_word(*(const short *) from, (short *) to);
from87include/asm/segment.hput_user_word(*(const short *) from, (short *) to);
from88include/asm/segment.hput_user_byte(*(2+(const char *) from), 2+(char *) to);
from91include/asm/segment.hput_user_long(*(const int *) from, (int *) to);
from103include/asm/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from123include/asm/segment.hstatic inline void __generic_memcpy_fromfs(void * to, const void * from, unsigned long n)
from135include/asm/segment.h:"c" (n),"D" ((long) to),"S" ((long) from)
from139include/asm/segment.hstatic inline void __constant_memcpy_fromfs(void * to, const void * from, unsigned long n)
from145include/asm/segment.h*(char *)to = get_user_byte((const char *) from);
from148include/asm/segment.h*(short *)to = get_user_word((const short *) from);
from151include/asm/segment.h*(short *) to = get_user_word((const short *) from);
from152include/asm/segment.h*(char *) to = get_user_byte(2+(const char *) from);
from155include/asm/segment.h*(int *) to = get_user_long((const int *) from);
from163include/asm/segment.h:"c" (n/4),"D" ((long) to),"S" ((long) from) \
from183include/asm/segment.h#define memcpy_fromfs(to, from, n) \
from185include/asm/segment.h__constant_memcpy_fromfs((to),(from),(n)) : \
from186include/asm/segment.h__generic_memcpy_fromfs((to),(from),(n)))
from188include/asm/segment.h#define memcpy_tofs(to, from, n) \
from190include/asm/segment.h__constant_memcpy_tofs((to),(from),(n)) : \
from191include/asm/segment.h__generic_memcpy_tofs((to),(from),(n)))
from19include/linux/ioport.hextern int check_region(unsigned int from, unsigned int extent);
from20include/linux/ioport.hextern void snarf_region(unsigned int from, unsigned int extent);
from11include/linux/iso_fs.h#define ISODCL(from, to) (to - from + 1)
from47include/linux/mm.hint (*share)(struct vm_area_struct * from, struct vm_area_struct * to, unsigned long address);
from97include/linux/mm.hextern int unmap_page_range(unsigned long from, unsigned long size);
from98include/linux/mm.hextern int remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask);
from99include/linux/mm.hextern int zeromap_page_range(unsigned long from, unsigned long size, int mask);
from335include/linux/string.hextern inline void * memcpy(void * to, const void * from, size_t n)
from349include/linux/string.h:"d" (n),"D" ((long) to),"S" ((long) from)
from114kernel/ioport.casmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
from116kernel/ioport.cif (from + num <= from)
from118kernel/ioport.cif (from + num > IO_BITMAP_SIZE*32)
from124kernel/ioport.cprintk("io: from=%d num=%d %s\n", from, num, (turn_on ? "on" : "off"));
from126kernel/ioport.cset_bitmap((unsigned long *)current->tss.io_bitmap, from, num, !turn_on);
from158kernel/ioport.cvoid snarf_region(unsigned int from, unsigned int num)
from160kernel/ioport.cif (from > IO_BITMAP_SIZE*32)
from162kernel/ioport.cif (from + num > IO_BITMAP_SIZE*32)
from163kernel/ioport.cnum = IO_BITMAP_SIZE*32 - from;
from164kernel/ioport.cset_bitmap(ioport_registrar, from, num, 1);
from168kernel/ioport.cint check_region(unsigned int from, unsigned int num)
from170kernel/ioport.cif (from > IO_BITMAP_SIZE*32)
from172kernel/ioport.cif (from + num > IO_BITMAP_SIZE*32)
from173kernel/ioport.cnum = IO_BITMAP_SIZE*32 - from;
from174kernel/ioport.creturn check_bitmap(ioport_registrar, from, num);
from145kernel/module.cstruct symbol *from;
from150kernel/module.cfrom = symbol_table;
from156kernel/module.csym.value = from->addr;
from157kernel/module.cstrncpy(sym.name, from->name, sizeof sym.name);
from159kernel/module.cfrom++, to++;
from63mm/memory.c#define copy_page(from,to) \
from64mm/memory.c__asm__("cld ; rep ; movsl": :"S" (from),"D" (to),"c" (1024):"cx","di","si")
from272mm/memory.cint unmap_page_range(unsigned long from, unsigned long size)
from278mm/memory.cif (from & ~PAGE_MASK) {
from283mm/memory.cdir = PAGE_DIR_OFFSET(current->tss.cr3,from);
from284mm/memory.cpoff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1);
from324mm/memory.cint zeromap_page_range(unsigned long from, unsigned long size, int mask)
from337mm/memory.cif (from & ~PAGE_MASK) {
from338mm/memory.cprintk("zeromap_page_range: from = %08lx\n",from);
from341mm/memory.cdir = PAGE_DIR_OFFSET(current->tss.cr3,from);
from343mm/memory.cpoff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1);
from387mm/memory.cint remap_page_range(unsigned long from, unsigned long to, unsigned long size, int mask)
from399mm/memory.cif ((from & ~PAGE_MASK) || (to & ~PAGE_MASK)) {
from400mm/memory.cprintk("remap_page_range: from = %08lx, to=%08lx\n",from,to);
from403mm/memory.cdir = PAGE_DIR_OFFSET(current->tss.cr3,from);
from405mm/memory.cpoff = (from >> PAGE_SHIFT) & (PTRS_PER_PAGE-1);
from705mm/memory.cunsigned long from;
from713mm/memory.cfrom = *(unsigned long *) from_page;
from714mm/memory.cif (!(from & PAGE_PRESENT))
from716mm/memory.cfrom &= PAGE_MASK;
from717mm/memory.cfrom_page = from + PAGE_PTR(address);
from718mm/memory.cfrom = *(unsigned long *) from_page;
from720mm/memory.cif ((from & (PAGE_PRESENT | PAGE_DIRTY)) != PAGE_PRESENT)
from722mm/memory.cif (from >= high_memory)
from724mm/memory.cif (mem_map[MAP_NR(from)] & MAP_PAGE_RESERVED)
from738mm/memory.ccopy_page((from & PAGE_MASK),newpage);
from741mm/memory.cmem_map[MAP_NR(from)]++;
from742mm/memory.cfrom &= ~PAGE_RW;
from743mm/memory.cto = from;
from747mm/memory.c*(unsigned long *) from_page = from;
from94net/inet/packet.cstatic int packet_sendto(struct sock *sk, unsigned char *from, int len,
from122net/inet/packet.cerr=verify_area(VERIFY_READ,from,len);
from148net/inet/packet.cmemcpy_fromfs (skb+1, from, len);
from159net/inet/raw.cstatic int raw_sendto(struct sock *sk, unsigned char *from, int len,
from170net/inet/raw.c"            usin=%X, addr_len = %d)\n", sk, from, len, noblock,
from179net/inet/raw.cerr=verify_area(VERIFY_READ,from,len);
from263net/inet/raw.cmemcpy_fromfs ((unsigned char *)(skb+1)+tmp, from, len);
from169net/inet/sock.hunsigned char *from, int len, int noblock,
from173net/inet/sock.hunsigned char *from, int len, int noblock,
from58net/inet/sockinet.hunsigned char *from, int len, int noblock,
from62net/inet/sockinet.hunsigned char *from, int len, int noblock,
from758net/inet/tcp.cstatic int tcp_write(struct sock *sk, unsigned char *from,
from770net/inet/tcp.csk, from, len, nonblock, flags));
from894net/inet/tcp.cmemcpy_fromfs((unsigned char *)(skb+1) + skb->len, from, copy);
from896net/inet/tcp.cfrom += copy;
from1063net/inet/tcp.cmemcpy_fromfs(buff+tmp, from, copy);
from1065net/inet/tcp.cfrom += copy;
from1138net/inet/tcp.cstatic int tcp_sendto(struct sock *sk, unsigned char *from,
from1155net/inet/tcp.creturn(tcp_write(sk, from, len, nonblock, flags));
from225net/inet/udp.cunsigned char *from, int len)
from237net/inet/udp.cfrom, len));
from239net/inet/udp.cerr=verify_area(VERIFY_READ, from, len);
from290net/inet/udp.cmemcpy_fromfs(buff, from, len);
from302net/inet/udp.cstatic int udp_sendto(struct sock *sk, unsigned char *from, int len, int noblock,
from347net/inet/udp.ctmp = udp_send(sk, &sin, from, len);
from109net/socket/skbuff.hextern void      skb_copy_datagram(struct sk_buff *from, int offset, char *to,int size);