tag | line | file | source code |
bytecount | 15 | arch/i386/kernel/ldt.c | static int read_ldt(void * ptr, unsigned long bytecount) |
bytecount | 28 | arch/i386/kernel/ldt.c | if (size > bytecount) |
bytecount | 29 | arch/i386/kernel/ldt.c | size = bytecount; |
bytecount | 62 | arch/i386/kernel/ldt.c | static int write_ldt(void * ptr, unsigned long bytecount) |
bytecount | 68 | arch/i386/kernel/ldt.c | if (bytecount != sizeof(ldt_info)) |
bytecount | 115 | arch/i386/kernel/ldt.c | asmlinkage int sys_modify_ldt(int func, void *ptr, unsigned long bytecount) |
bytecount | 118 | arch/i386/kernel/ldt.c | return read_ldt(ptr, bytecount); |
bytecount | 120 | arch/i386/kernel/ldt.c | return write_ldt(ptr, bytecount); |
bytecount | 256 | drivers/block/hd.c | static void fixstring (unsigned char *s, int bytecount) |
bytecount | 258 | drivers/block/hd.c | unsigned char *p, *end = &s[bytecount &= ~1]; /* bytecount must be even */ |
bytecount | 247 | drivers/block/ide-cd.c | void cdrom_in_bytes (ide_drive_t *drive, void *buffer, uint bytecount) |
bytecount | 249 | drivers/block/ide-cd.c | ++bytecount; |
bytecount | 250 | drivers/block/ide-cd.c | ide_input_data (drive, buffer, bytecount / 4); |
bytecount | 251 | drivers/block/ide-cd.c | if ((bytecount & 0x03) >= 2) { |
bytecount | 252 | drivers/block/ide-cd.c | insw (IDE_DATA_REG, ((byte *)buffer) + (bytecount & ~0x03), 1); |
bytecount | 258 | drivers/block/ide-cd.c | void cdrom_out_bytes (ide_drive_t *drive, void *buffer, uint bytecount) |
bytecount | 260 | drivers/block/ide-cd.c | ++bytecount; |
bytecount | 261 | drivers/block/ide-cd.c | ide_output_data (drive, buffer, bytecount / 4); |
bytecount | 262 | drivers/block/ide-cd.c | if ((bytecount & 0x03) >= 2) { |
bytecount | 264 | drivers/block/ide-cd.c | ((byte *)buffer) + (bytecount & ~0x03), 1); |
bytecount | 2124 | drivers/block/ide.c | void ide_fixstring (byte *s, const int bytecount, const int byteswap) |
bytecount | 2126 | drivers/block/ide.c | byte *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */ |
bytecount | 512 | drivers/block/ide.h | void ide_fixstring (byte *s, const int bytecount, const int byteswap); |
bytecount | 508 | drivers/net/pi2.c | int bytecount; |
bytecount | 527 | drivers/net/pi2.c | bytecount = lp->bufsiz - get_dma_residue(lp->dmachan); |
bytecount | 529 | drivers/net/pi2.c | if ((rse & CRC_ERR) || (lp->rstate > ACTIVE) || (bytecount < 10)) { |
bytecount | 530 | drivers/net/pi2.c | if ((bytecount >= 10) && (rse & CRC_ERR)) { |
bytecount | 543 | drivers/net/pi2.c | pkt_len = lp->rcvbuf->cnt = bytecount - 2 + 1; |
bytecount | 1268 | drivers/net/pt.c | int bytecount; |
bytecount | 1341 | drivers/net/pt.c | bytecount = lp->bufsiz - get_dma_residue(lp->dmachan); |
bytecount | 1343 | drivers/net/pt.c | bytecount = lp->rcvbuf->cnt; |
bytecount | 1349 | drivers/net/pt.c | if ((rse & CRC_ERR) || (lp->rstate > ACTIVE) || (bytecount < 10)) |
bytecount | 1351 | drivers/net/pt.c | if ((bytecount >= 10) && (rse & CRC_ERR)) |
bytecount | 1380 | drivers/net/pt.c | pkt_len = lp->rcvbuf->cnt = bytecount - 2 +1; |