taglinefilesource code
bytecount15arch/i386/kernel/ldt.cstatic int read_ldt(void * ptr, unsigned long bytecount)
bytecount28arch/i386/kernel/ldt.cif (size > bytecount)
bytecount29arch/i386/kernel/ldt.csize = bytecount;
bytecount37arch/i386/kernel/ldt.cstatic int write_ldt(void * ptr, unsigned long bytecount)
bytecount44arch/i386/kernel/ldt.cif (bytecount != sizeof(ldt_info))
bytecount97arch/i386/kernel/ldt.casmlinkage int sys_modify_ldt(int func, void *ptr, unsigned long bytecount)
bytecount100arch/i386/kernel/ldt.creturn read_ldt(ptr, bytecount);
bytecount102arch/i386/kernel/ldt.creturn write_ldt(ptr, bytecount);
bytecount258drivers/block/hd.cstatic void fixstring (unsigned char *s, int bytecount)
bytecount260drivers/block/hd.cunsigned char *p, *end = &s[bytecount &= ~1];  /* bytecount must be even */
bytecount1673drivers/block/ide.cstatic void fixstring (byte *s, int bytecount, int byteswap)
bytecount1675drivers/block/ide.cbyte *p, *end = &s[bytecount &= ~1];  /* bytecount must be even */