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);
bytecount256drivers/block/hd.cstatic void fixstring (unsigned char *s, int bytecount)
bytecount258drivers/block/hd.cunsigned char *p, *end = &s[bytecount &= ~1];  /* bytecount must be even */
bytecount199drivers/block/ide-cd.cvoid cdrom_in_bytes (ide_drive_t *drive, void *buffer, uint bytecount)
bytecount201drivers/block/ide-cd.c++bytecount;
bytecount202drivers/block/ide-cd.cide_input_data (drive, buffer, bytecount / 4);
bytecount203drivers/block/ide-cd.cif ((bytecount & 0x03) >= 2)
bytecount205drivers/block/ide-cd.cinsw (IDE_DATA_REG, buffer + (bytecount & ~0x03), 1);
bytecount211drivers/block/ide-cd.cvoid cdrom_out_bytes (ide_drive_t *drive, void *buffer, uint bytecount)
bytecount213drivers/block/ide-cd.c++bytecount;
bytecount214drivers/block/ide-cd.cide_output_data (drive, buffer, bytecount / 4);
bytecount215drivers/block/ide-cd.cif ((bytecount & 0x03) >= 2)
bytecount217drivers/block/ide-cd.coutsw (IDE_DATA_REG, buffer + (bytecount & ~0x03), 1);
bytecount1953drivers/block/ide.cstatic void fixstring (byte *s, const int bytecount, const int byteswap)
bytecount1955drivers/block/ide.cbyte *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */
bytecount436drivers/block/ide.hvoid *ide_alloc (unsigned long bytecount, unsigned long within_area);
bytecount508drivers/net/pi2.cint bytecount;
bytecount527drivers/net/pi2.cbytecount = lp->bufsiz - get_dma_residue(lp->dmachan);
bytecount529drivers/net/pi2.cif ((rse & CRC_ERR) || (lp->rstate > ACTIVE) || (bytecount < 10)) {
bytecount530drivers/net/pi2.cif ((bytecount >= 10) && (rse & CRC_ERR)) {
bytecount543drivers/net/pi2.cpkt_len = lp->rcvbuf->cnt = bytecount - 2 + 1;