taglinefilesource code
bytecount14arch/i386/kernel/ldt.cstatic int read_ldt(void * ptr, unsigned long bytecount)
bytecount27arch/i386/kernel/ldt.cif (size > bytecount)
bytecount28arch/i386/kernel/ldt.csize = bytecount;
bytecount36arch/i386/kernel/ldt.cstatic int write_ldt(void * ptr, unsigned long bytecount)
bytecount43arch/i386/kernel/ldt.cif (bytecount != sizeof(ldt_info))
bytecount95arch/i386/kernel/ldt.casmlinkage int sys_modify_ldt(int func, void *ptr, unsigned long bytecount)
bytecount98arch/i386/kernel/ldt.creturn read_ldt(ptr, bytecount);
bytecount100arch/i386/kernel/ldt.creturn write_ldt(ptr, bytecount);
bytecount263drivers/block/hd.cstatic void fixstring (unsigned char *s, int bytecount)
bytecount265drivers/block/hd.cunsigned char *p, *end = &s[bytecount &= ~1];  /* bytecount must be even */
bytecount1535drivers/block/ide.cstatic void fixstring (byte *s, int bytecount, int byteswap)
bytecount1537drivers/block/ide.cbyte *p, *end = &s[bytecount &= ~1];  /* bytecount must be even */