HomeSort by: relevance | last modified time | path
    Searched defs:dtype (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/lib/libm/src/
s_llrint.c 10 #define dtype long long macro
s_llrintf.c 10 #define dtype long long macro
s_lrintf.c 10 #define dtype long macro
s_lrintl.c 12 #define dtype long macro
s_llrintl.c 13 #define dtype long long macro
s_llround.c 10 #define dtype long long macro
s_llroundf.c 10 #define dtype long long macro
s_llroundl.c 10 #define dtype long long macro
s_lrint.c 41 #define dtype long macro
48 * that overflows depends on the rounding mode when 'dtype' has more
52 dtype
56 dtype d;
59 d = (dtype)roundit(x);
s_lroundf.c 10 #define dtype long macro
s_lroundl.c 10 #define dtype long macro
s_lround.c 42 #define dtype long macro
49 * If stype has more precision than dtype, the endpoints dtype_(min|max) are
51 * from 0. On the other hand, if stype has less precision than dtype, then
61 dtype
67 return ((dtype)x);
  /src/sbin/newfs_msdos/
newfs_msdos.c 95 char *fname, *dtype; local in function:main
192 dtype = *argv;
193 return mkfs_msdos(fname, dtype, &o);
  /src/sys/dev/scsipi/
atapiconf.c 308 const char *dtype; local in function:atapibusprint
315 dtype = scsipi_dtype(inqbuf->type & SID_TYPE);
318 inqbuf->product, inqbuf->revision, dtype,
scsipiconf.c 221 const char *dtype; local in function:scsipi_dtype
225 dtype = "disk";
228 dtype = "tape";
231 dtype = "printer";
234 dtype = "processor";
237 dtype = "worm";
240 dtype = "cdrom";
243 dtype = "scanner";
246 dtype = "optical";
249 dtype = "changer"
    [all...]
scsiconf.c 557 const char *dtype; local in function:scsibusprint
570 dtype = scsipi_dtype(type);
580 target, lun, vendor, product, revision, dtype,
sd.c 258 int error, result, dtype; local in function:sdattach
276 dtype = DKTYPE_SCSI;
281 dtype = DKTYPE_ATAPI;
284 dtype = DKTYPE_UNKNOWN;
289 dk_init(dksc, self, dtype);
  /src/sys/arch/hp300/stand/common/
ite.c 200 int dtype, fboff, slotno, i; local in function:iteconfig
214 for (dtype = 0; dtype < __arraycount(itesw); dtype++)
215 if (itesw[dtype].ite_hwid == fb->fbid)
217 if (dtype == __arraycount(itesw))
223 ip->isw = &itesw[dtype];
246 if (itesw[dtype].ite_probe != NULL &&
247 (*itesw[dtype].ite_probe)(ip) != 0)
266 for (dtype = 0; dtype < __arraycount(itesw); dtype++
    [all...]
  /src/sys/ufs/chfs/
media.h 127 uint8_t dtype; /* file type */ member in struct:chfs_flash_dirent_node
  /src/sys/dev/pcmcia/
pcmcia_cis.c 801 u_int reg, dtype, dspeed; local in function:decode_device
804 dtype = reg & PCMCIA_DTYPE_MASK;
809 switch (dtype) {
  /src/sys/arch/xen/xenbus/
xenbus_probe.c 446 char dtype[10]; local in function:xenbus_probe_device_type
448 "device-type", dtype, sizeof(dtype)) !=0) {
456 strcmp(dtype, "cdrom") == 0) {
  /src/sys/miscfs/specfs/
spec_vnops.c 730 int dtype; local in function:spec_open
1044 dtype = cdev_type(dev);
1048 dtype = bdev_type(dev);
1051 if (dtype == D_DISK) {
  /src/lib/librefuse/
refuse.c 250 uint8_t dtype)
262 if (puffs_nextdent(&dh->d, name, dino, dtype, &dh->reslen)) {
275 return !puffs_nextdent(&dh->d, name, dino, dtype, &dh->reslen);
286 uint8_t dtype; local in function:puffs_fuse_fill_dir
289 dtype = DT_UNKNOWN;
292 dtype = (uint8_t)puffs_vtype2dt(puffs_mode2vt(stbuf->st_mode));
305 return fill_dirbuf(deh, name, dino, dtype);
  /src/sys/arch/macppc/dev/
platinumfb.c 386 uint8_t dtype = 0; local in function:platinumfb_dac_type
389 dtype = platinumfb_read_cmap_reg(sc, PLATINUM_CMAP_D2_OFFSET);
391 switch (dtype) {
398 dtype, PLATINUM_DAC_0);
399 dtype = PLATINUM_DAC_0;
404 sc->sc_dac_type = dtype;
  /src/sys/dev/ata/
wd.c 316 int dtype = DKTYPE_UNKNOWN; local in function:wdattach
498 dtype = DKTYPE_ST506;
500 dtype = DKTYPE_ESDI;
506 dk_init(dksc, self, dtype);

Completed in 25 milliseconds

1 2