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 | 37 | arch/i386/kernel/ldt.c | static int write_ldt(void * ptr, unsigned long bytecount) |
bytecount | 44 | arch/i386/kernel/ldt.c | if (bytecount != sizeof(ldt_info)) |
bytecount | 97 | arch/i386/kernel/ldt.c | asmlinkage int sys_modify_ldt(int func, void *ptr, unsigned long bytecount) |
bytecount | 100 | arch/i386/kernel/ldt.c | return read_ldt(ptr, bytecount); |
bytecount | 102 | 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 | 200 | drivers/block/ide-cd.c | void cdrom_in_bytes (ide_drive_t *drive, void *buffer, uint bytecount) |
bytecount | 202 | drivers/block/ide-cd.c | ++bytecount; |
bytecount | 203 | drivers/block/ide-cd.c | ide_input_data (drive, buffer, bytecount / 4); |
bytecount | 204 | drivers/block/ide-cd.c | if ((bytecount & 0x03) >= 2) |
bytecount | 206 | drivers/block/ide-cd.c | insw (IDE_DATA_REG, buffer + (bytecount & ~0x03), 1); |
bytecount | 212 | drivers/block/ide-cd.c | void cdrom_out_bytes (ide_drive_t *drive, void *buffer, uint bytecount) |
bytecount | 214 | drivers/block/ide-cd.c | ++bytecount; |
bytecount | 215 | drivers/block/ide-cd.c | ide_output_data (drive, buffer, bytecount / 4); |
bytecount | 216 | drivers/block/ide-cd.c | if ((bytecount & 0x03) >= 2) |
bytecount | 218 | drivers/block/ide-cd.c | outsw (IDE_DATA_REG, buffer + (bytecount & ~0x03), 1); |
bytecount | 485 | drivers/block/ide.c | void *ide_alloc (unsigned long bytecount, unsigned long within_area) |
bytecount | 495 | drivers/block/ide.c | if (fraction < bytecount) |
bytecount | 499 | drivers/block/ide.c | ide_mem_start += (bytecount + longsize_m1) & ~longsize_m1; |
bytecount | 1951 | drivers/block/ide.c | static void fixstring (byte *s, const int bytecount, const int byteswap) |
bytecount | 1953 | drivers/block/ide.c | byte *p = s, *end = &s[bytecount & ~1]; /* bytecount must be even */ |
bytecount | 431 | drivers/block/ide.h | void *ide_alloc (unsigned long bytecount, unsigned long within_area); |
bytecount | 510 | drivers/net/pi2.c | int bytecount; |
bytecount | 529 | drivers/net/pi2.c | bytecount = lp->bufsiz - get_dma_residue(lp->dmachan); |
bytecount | 531 | drivers/net/pi2.c | if ((rse & CRC_ERR) || (lp->rstate > ACTIVE) || (bytecount < 10)) { |
bytecount | 532 | drivers/net/pi2.c | if ((bytecount >= 10) && (rse & CRC_ERR)) { |
bytecount | 545 | drivers/net/pi2.c | pkt_len = lp->rcvbuf->cnt = bytecount - 2 + 1; |