taglinefilesource code
base22fs/namei.cstruct inode * _namei(const char * filename, struct inode * base,
base115fs/namei.cint * namelen, const char ** name, struct inode * base)
base122fs/namei.cif (!base) {
base123fs/namei.cbase = current->pwd;
base124fs/namei.cbase->i_count++;
base127fs/namei.ciput(base);
base128fs/namei.cbase = current->root;
base130fs/namei.cbase->i_count++;
base138fs/namei.cbase->i_count++;
base139fs/namei.cerror = lookup(base,thisname,len,&inode);
base141fs/namei.ciput(base);
base144fs/namei.cif (!(base = follow_link(base,inode)))
base149fs/namei.creturn base;
base152fs/namei.cstruct inode * _namei(const char * pathname, struct inode * base,
base159fs/namei.cif (!(base = dir_namei(pathname,&namelen,&basename,base)))
base161fs/namei.cbase->i_count++;  /* lookup uses up base */
base162fs/namei.cerror = lookup(base,basename,namelen,&inode);
base164fs/namei.ciput(base);
base168fs/namei.cinode = follow_link(base,inode);
base170fs/namei.ciput(base);
base42include/asm/system.h#define _set_seg_desc(gate_addr,type,dpl,base,limit) {\
base43include/asm/system.h*(gate_addr) = ((base) & 0xff000000) | \
base44include/asm/system.h(((base) & 0x00ff0000)>>16) | \
base49include/asm/system.h*((gate_addr)+1) = (((base) & 0x0000ffff)<<16) | \
base245include/linux/fs.hextern struct inode * _namei(const char * filename, struct inode * base,
base36include/linux/lp.h#define LP_B(minor)  lp_table[(minor)].base
base45include/linux/lp.hint base;
base283include/linux/sched.h#define _set_base(addr,base) \
base291include/linux/sched.h"d" (base) \
base306include/linux/sched.h#define set_base(ldt,base) _set_base( ((char *)&(ldt)) , base )
base1110kernel/blk_drv/floppy.cstruct floppy_struct *base;
base1113kernel/blk_drv/floppy.cbase = &floppy_types[(code-1)*2];
base1114kernel/blk_drv/floppy.cprintk("fd%d is %s",drive,base->name);
base1115kernel/blk_drv/floppy.creturn base;
base38kernel/blk_drv/scsi/aha1542.h#define STATUS base
base1246kernel/chr_drv/console.clong base;
base1313kernel/chr_drv/console.cbase = (long)vc_scrmembuf;
base1315kernel/chr_drv/console.cpos = origin = video_mem_start = base;
base1316kernel/chr_drv/console.cscr_end = video_mem_end = (base += screen_size);
base31kernel/math/ea.cunsigned char ss,index,base;
base34kernel/math/ea.cbase = get_fs_byte((char *) EIP);
base36kernel/math/ea.css = base >> 6;
base37kernel/math/ea.cindex = (base >> 3) & 7;
base38kernel/math/ea.cbase &= 7;
base44kernel/math/ea.cif (mod || base != 5)
base45kernel/math/ea.coffset += REG(base);
base49kernel/math/ea.c} else if (mod == 2 || base == 5) {
base36kernel/vsprintf.c#define do_div(n,base) ({ \
base38kernel/vsprintf.c__asm__("divl %4":"=a" (n),"=d" (__res):"0" (n),"1" (0),"r" (base)); \
base41kernel/vsprintf.cstatic char * number(char * str, int num, int base, int size, int precision
base50kernel/vsprintf.cif (base<2 || base>36)
base60kernel/vsprintf.cif (base==16) size -= 2;
base61kernel/vsprintf.celse if (base==8) size--;
base66kernel/vsprintf.ctmp[i++]=digits[do_div(num,base)];
base75kernel/vsprintf.cif (base==8)
base77kernel/vsprintf.celse if (base==16) {
base88mm/mmap.cunsigned long base, addr;
base133mm/mmap.cbase = get_base(current->ldt[1]);  /* cs */
base136mm/mmap.cbase = get_base(current->ldt[2]);  /* ds */
base171mm/mmap.caddr = (unsigned long)mmap_chr(base + addr, len, prot, flags,
base176mm/mmap.caddr -= base;
base183mm/mmap.cunsigned long base, limit;
base185mm/mmap.cbase = get_base(current->ldt[2]);  /* map into ds */
base191mm/mmap.cif (unmap_page_range(base + addr, len))