/linux-2.4.37.9/drivers/ide/ |
D | ide-timing.h | 118 short best = 0; in ide_find_best_mode() local 126 if ((best = (id->dma_ultra & 0x0040) ? XFER_UDMA_6 : 0)) return best; in ide_find_best_mode() 129 if ((best = (id->dma_ultra & 0x0020) ? XFER_UDMA_5 : 0)) return best; in ide_find_best_mode() 132 if ((best = (id->dma_ultra & 0x0010) ? XFER_UDMA_4 : in ide_find_best_mode() 133 (id->dma_ultra & 0x0008) ? XFER_UDMA_3 : 0)) return best; in ide_find_best_mode() 135 if ((best = (id->dma_ultra & 0x0004) ? XFER_UDMA_2 : in ide_find_best_mode() 137 (id->dma_ultra & 0x0001) ? XFER_UDMA_0 : 0)) return best; in ide_find_best_mode() 142 if ((best = (id->dma_mword & 0x0004) ? XFER_MW_DMA_2 : in ide_find_best_mode() 144 (id->dma_mword & 0x0001) ? XFER_MW_DMA_0 : 0)) return best; in ide_find_best_mode() 151 if ((best = (id->dma_1word & 0x0004) ? XFER_SW_DMA_2 : in ide_find_best_mode() [all …]
|
D | ide-io.c | 662 ide_drive_t *drive, *best; in choose_drive() local 665 best = NULL; in choose_drive() 669 if (!best in choose_drive() 670 || (drive->sleep && (!best->sleep || 0 < (signed long)(best->sleep - drive->sleep))) in choose_drive() 671 || (!best->sleep && 0 < (signed long)(WAKEUP(best) - WAKEUP(drive)))) in choose_drive() 674 best = drive; in choose_drive() 678 …if (best && best->nice1 && !best->sleep && best != hwgroup->drive && best->service_time > WAIT_MIN… in choose_drive() 679 long t = (signed long)(WAKEUP(best) - jiffies); in choose_drive() 685 drive = best->next; in choose_drive() 688 && 0 < (signed long)(WAKEUP(drive) - (jiffies - best->service_time)) in choose_drive() [all …]
|
/linux-2.4.37.9/drivers/block/paride/ |
D | paride.c | 272 { int best, range; in pi_probe_mode() local 282 best = -1; in pi_probe_mode() 288 if (!pi_test_proto(pi,scratch,verbose)) best = pi->mode; in pi_probe_mode() 290 pi->mode = best; in pi_probe_mode() 291 return (best > -1); in pi_probe_mode()
|
/linux-2.4.37.9/drivers/mtd/ |
D | ftl.c | 710 u_int32_t best; in reclaim_block() local 716 best = 0xffffffff; xfer = 0xffff; in reclaim_block() 739 if (part->XferInfo[i].EraseCount <= best) { in reclaim_block() 740 best = part->XferInfo[i].EraseCount; in reclaim_block() 771 best = 0xffffffff; in reclaim_block() 773 if (part->EUNInfo[i].EraseCount <= best) { in reclaim_block() 774 best = part->EUNInfo[i].EraseCount; in reclaim_block() 778 best = 0; in reclaim_block() 780 if (part->EUNInfo[i].Deleted >= best) { in reclaim_block() 781 best = part->EUNInfo[i].Deleted; in reclaim_block() [all …]
|
/linux-2.4.37.9/drivers/sound/ |
D | opl3.c | 1002 int i, p, best, first, avail, best_time = 0x7fffffff; in opl3_alloc_voice() local 1038 best = first; in opl3_alloc_voice() 1049 best = p; in opl3_alloc_voice() 1058 if (best < 0) in opl3_alloc_voice() 1059 best = 0; in opl3_alloc_voice() 1060 if (best > devc->nr_voice) in opl3_alloc_voice() 1061 best -= devc->nr_voice; in opl3_alloc_voice() 1063 return best; /* All devc->voc in use. Select the first one. */ in opl3_alloc_voice()
|
D | sequencer.c | 1000 int i, best; in sequencer_open() local 1002 best = -1; in sequencer_open() 1004 if (sound_timer_devs[i] && sound_timer_devs[i]->priority > best) in sequencer_open() 1007 best = sound_timer_devs[i]->priority; in sequencer_open()
|
/linux-2.4.37.9/net/ipv4/netfilter/ |
D | ip_nat_core.c | 274 } best = { NULL, 0xFFFFFFFF }; in find_best_ips_proto() local 332 if (score < best.score) { in find_best_ips_proto() 339 best.score = score; in find_best_ips_proto() 340 best.tuple = *tuple; in find_best_ips_proto() 341 best.range = &mr->range[i]; in find_best_ips_proto() 345 *tuple = best.tuple; in find_best_ips_proto() 348 return (struct ip_nat_range *)best.range; in find_best_ips_proto()
|
/linux-2.4.37.9/drivers/video/ |
D | vga16fb.c | 212 } *ptr, *best, vgaclocks[] = { in vga16fb_clock_chip() local 220 best = vgaclocks; in vga16fb_clock_chip() 221 err = pixclock - best->pixclock; in vga16fb_clock_chip() 230 best = ptr; in vga16fb_clock_chip() 233 par->misc |= best->misc; in vga16fb_clock_chip() 234 par->seq[VGA_SEQ_CLOCK_MODE] |= best->seq_clock_mode; in vga16fb_clock_chip() 235 par->var.pixclock = best->pixclock; in vga16fb_clock_chip()
|
D | clgenfb.c | 635 static void bestclock (long freq, long *best, 3296 static void bestclock (long freq, long *best, long *nom, in bestclock() argument 3301 assert (best != NULL); in bestclock() 3319 *best = 0; in bestclock() 3328 if (abs (h - freq) < abs (*best - freq)) { in bestclock() 3329 *best = h; in bestclock() 3345 if (abs (h - freq) < abs (*best - freq)) { in bestclock() 3346 *best = h; in bestclock()
|
/linux-2.4.37.9/fs/devfs/ |
D | Makefile | 34 gzip --best *.9
|
/linux-2.4.37.9/fs/reiserfs/ |
D | README | 40 fair, ask. (Last I spoke with him Richard was contemplating how best 71 vendors. Select from the best in the world, not the best in your 89 writing the cleanest code. He always made the effort to be the best he 90 could be, and to make his code the best that it could be. What resulted
|
/linux-2.4.37.9/arch/x86_64/boot/compressed/ |
D | head.S | 54 * XXX - best to initialize before switching to protected mode.
|
/linux-2.4.37.9/arch/i386/boot/compressed/ |
D | head.S | 50 * XXX - best to initialize before switching to protected mode.
|
/linux-2.4.37.9/Documentation/networking/ |
D | tcp.txt | 27 Frames are queued for output by tcp_write. We do our best to send the frames
|
/linux-2.4.37.9/net/ipv4/ |
D | udp.c | 117 int best_size_so_far, best, result, i; in udp_v4_get_port() local 123 best = result = udp_port_rover; in udp_v4_get_port() 142 best = result; in udp_v4_get_port() 145 result = best; in udp_v4_get_port()
|
/linux-2.4.37.9/drivers/scsi/ |
D | README.53c700 | 69 consistent with the best operation of the chip (although some choose 71 of an extra clock chip). The best operation clock speeds are:
|
D | README.FlashPoint | 100 it was best that these issues be addressed directly. I sent an email 124 and has all the best features of both the BT-946C and FlashPoint LT,
|
D | README.qlogicfas | 60 The best way to test if your cables, termination, etc. are good is to
|
/linux-2.4.37.9/Documentation/sound/ |
D | SoundPro | 38 settings can have unexpected effects. Use the WSS mixer for best results. 77 my best to help.
|
/linux-2.4.37.9/net/ipv6/ |
D | udp.c | 63 int best_size_so_far, best, result, i; in udp_v6_get_port() local 69 best = result = udp_port_rover; in udp_v6_get_port() 88 best = result; in udp_v6_get_port() 91 result = best; in udp_v6_get_port()
|
/linux-2.4.37.9/Documentation/vm/ |
D | numa | 26 it deems best.
|
/linux-2.4.37.9/Documentation/filesystems/ |
D | cramfs.txt | 43 decided what the best fix is. For the moment if you have larger pages
|
/linux-2.4.37.9/Documentation/usb/ |
D | ibmcam.txt | 232 an approximate setting (in terms of "worst" ... "best") 290 array, so it's the best resolution the camera can 291 yield. The best resolution of Model 2 is 176x144, and
|
/linux-2.4.37.9/Documentation/isdn/ |
D | INTERFACE.fax | 158 automatic "best capabilities" connection in the eicon HL-driver)
|
/linux-2.4.37.9/Documentation/ |
D | magic-number.txt | 3 file, since it is best if the magic numbers used by various structures
|