Home
last modified time | relevance | path

Searched refs:dtype (Results 1 – 25 of 131) sorted by relevance

123456

/netbsd/src/sys/dev/scsipi/
Dscsipiconf.c221 const char *dtype; in scsipi_dtype() local
225 dtype = "disk"; in scsipi_dtype()
228 dtype = "tape"; in scsipi_dtype()
231 dtype = "printer"; in scsipi_dtype()
234 dtype = "processor"; in scsipi_dtype()
237 dtype = "worm"; in scsipi_dtype()
240 dtype = "cdrom"; in scsipi_dtype()
243 dtype = "scanner"; in scsipi_dtype()
246 dtype = "optical"; in scsipi_dtype()
249 dtype = "changer"; in scsipi_dtype()
[all …]
Datapiconf.c308 const char *dtype; in atapibusprint() local
315 dtype = scsipi_dtype(inqbuf->type & SID_TYPE); in atapibusprint()
318 inqbuf->product, inqbuf->revision, dtype, in atapibusprint()
/netbsd/src/external/ibm-public/postfix/dist/src/global/
Ddsn_buf.c183 dsb->dtype = vstring_alloc(10); in dsb_create()
198 vstring_free(dsb->dtype); in dsb_free()
231 DSB_TRUNCATE((dsb)->dtype); \
234 vstring_strcpy((dsb)->dtype, (type)); \
243 const char *dtype, const char *dtext, in dsb_update() argument
251 DSB_DIAG(dsb, dtype, dtext); in dsb_update()
268 DSB_TRUNCATE(dsb->dtype); in vdsb_simple()
298 vstring_strcpy(dsb->dtype, DSB_DTYPE_UNIX); in dsb_unix()
311 const char *dtype, const char *dtext) in dsb_formal() argument
316 DSB_DIAG(dsb, dtype, dtext); in dsb_formal()
[all …]
Ddsn.c128 const char *dtype, const char *dtext, in dsn_create() argument
162 if (NULL_OR_EMPTY(dtype) || NULL_OR_EMPTY(dtext)) { in dsn_create()
163 dsn->dtype = mystrdup(""); in dsn_create()
166 dsn->dtype = mystrdup(dtype); in dsn_create()
186 myfree((void *) dsn->dtype); in dsn_free()
Ddsn.h23 const char *dtype; /* Null / RFC 3464 diagnostic type */ member
37 ((dsn)->dtype = (_dtype)), \
47 ((dsn)->dtype = DSN_NO_DTYPE), \
72 (dsn)->dtype, (dsn)->dtext, \
Ddsn_buf.h36 VSTRING *dtype; /* null, smtp, x-unix */ member
75 vstring_str((dsb)->dtype), \
/netbsd/src/sys/arch/hp300/stand/common/
Dite.c129 int dtype, fboff, slotno, i; in iteconfig() local
143 for (dtype = 0; dtype < nitesw; dtype++) in iteconfig()
144 if (itesw[dtype].ite_hwid == fb->fbid) in iteconfig()
146 if (dtype == nitesw) in iteconfig()
152 ip->isw = &itesw[dtype]; in iteconfig()
191 for (dtype = 0; dtype < __arraycount(itesw); dtype++) { in iteconfig()
192 if (itesw[dtype].ite_hwid == GID_STI) in iteconfig()
195 if (dtype == __arraycount(itesw)) in iteconfig()
211 ip->isw = &itesw[dtype]; in iteconfig()
/netbsd/src/external/gpl3/binutils/dist/binutils/
Dstabs.c722 debug_type dtype; in parse_stab_string() local
826 dtype = parse_stab_type (dhandle, info, (const char *) NULL, in parse_stab_string()
828 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string()
835 if (! debug_record_typed_const (dhandle, name, dtype, atoi (p))) in parse_stab_string()
847 dtype = parse_stab_type (dhandle, info, (const char *) NULL, in parse_stab_string()
849 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string()
851 if (! debug_record_label (dhandle, name, dtype, value)) in parse_stab_string()
858 dtype = parse_stab_type (dhandle, info, (const char *) NULL, &p, in parse_stab_string()
860 if (dtype == DEBUG_TYPE_NULL) in parse_stab_string()
862 if (! debug_record_function (dhandle, name, dtype, type == 'F', value)) in parse_stab_string()
[all …]
/netbsd/src/lib/libm/src/
Ds_lrint.c41 #define dtype long macro
52 dtype
56 dtype d; in fn()
59 d = (dtype)roundit(x); in fn()
Ds_lround.c42 #define dtype long macro
61 dtype
67 return ((dtype)x); in fn()
Ds_lrintf.c10 #define dtype long macro
Ds_lrintl.c12 #define dtype long macro
Ds_llrintf.c10 #define dtype long long macro
Ds_llrint.c10 #define dtype long long macro
/netbsd/src/sys/arch/atari/stand/ahdilabel/
Dwritedtab.c42 ahdi_writedisktab (struct ahdi_ptable *ptable, char *disktype, char *disktab, char *dtype) in ahdi_writedisktab() argument
52 strlen (dtype) ? dtype : "SCSI", disktype); in ahdi_writedisktab()
54 strlen (dtype) ? dtype : "SCSI", ptable->nsectors, in ahdi_writedisktab()
/netbsd/src/external/gpl3/gdb/dist/include/vms/
Ddsc.h89 unsigned char dtype; member
97 unsigned char dtype; member
107 unsigned char dtype; member
123 unsigned char dtype; member
/netbsd/src/external/gpl3/binutils/dist/include/vms/
Ddsc.h89 unsigned char dtype; member
97 unsigned char dtype; member
107 unsigned char dtype; member
123 unsigned char dtype; member
/netbsd/src/crypto/external/bsd/openssh/dist/
Ddns.c312 u_int8_t dtype; in export_dns_rr() local
317 for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) { in export_dns_rr()
318 if (alg != -1 && dtype != alg) in export_dns_rr()
320 rdata_digest_type = dtype; in export_dns_rr()
/netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/lib/
Dcl_util.c200 cl_device_type dtype; in print_clinfo() local
226 clGetDeviceInfo (devices[j], CL_DEVICE_TYPE, sizeof (dtype), &dtype, NULL); in print_clinfo()
227 if (dtype & CL_DEVICE_TYPE_CPU) in print_clinfo()
229 if (dtype & CL_DEVICE_TYPE_GPU) in print_clinfo()
231 if (dtype & CL_DEVICE_TYPE_ACCELERATOR) in print_clinfo()
233 if (dtype & CL_DEVICE_TYPE_DEFAULT) in print_clinfo()
/netbsd/src/sys/arch/alpha/tlsb/
Dtlsb.c243 tlsb_node_type_str(uint32_t dtype, char *buf, size_t buflen) in tlsb_node_type_str() argument
245 switch (dtype & TLDEV_DTYPE_MASK) { in tlsb_node_type_str()
268 snprintf(buf, buflen, "unknown, dtype 0x%04x", dtype); in tlsb_node_type_str()
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dcp-objcp-common.cc137 tree dtype = NULL_TREE; in cp_get_debug_type() local
140 dtype = build_offset_type (TYPE_PTRMEMFUNC_OBJECT_TYPE (type), in cp_get_debug_type()
149 if (dtype) in cp_get_debug_type()
154 hash_map_safe_put<hm_ggc> (debug_type_map, ktype, dtype); in cp_get_debug_type()
157 return dtype; in cp_get_debug_type()
/netbsd/src/sbin/newfs_msdos/
Dnewfs_msdos.c95 char *fname, *dtype; in main() local
192 dtype = *argv; in main()
193 return mkfs_msdos(fname, dtype, &o); in main()
/netbsd/src/external/ibm-public/postfix/dist/src/bounce/
Dbounce_append_service.c139 if (NOT_NULL_EMPTY(dsn->dtype) && NOT_NULL_EMPTY(dsn->dtext)) { in bounce_append_service()
140 vstream_fprintf(log, "%s=%s\n", MAIL_ATTR_DSN_DTYPE, dsn->dtype); in bounce_append_service()
/netbsd/src/sbin/iscsid/
Discsid_targets.c60 iscsi_portal_types_t dtype, uint32_t did) in create_portal() argument
79 portal->portaltype = dtype; in create_portal()
429 iscsi_portal_types_t dtype, uint32_t did) in add_discovered_target() argument
441 portal = create_portal(target, addr, dtype, did); in add_discovered_target()
448 } else if ((portal = create_portal(target, addr, dtype, did)) == NULL) { in add_discovered_target()
451 portal->portaltype = dtype; in add_discovered_target()
/netbsd/src/sys/arch/macppc/dev/
Dplatinumfb.c386 uint8_t dtype = 0; in platinumfb_dac_type() local
389 dtype = platinumfb_read_cmap_reg(sc, PLATINUM_CMAP_D2_OFFSET); in platinumfb_dac_type()
391 switch (dtype) { in platinumfb_dac_type()
398 dtype, PLATINUM_DAC_0); in platinumfb_dac_type()
399 dtype = PLATINUM_DAC_0; in platinumfb_dac_type()
404 sc->sc_dac_type = dtype; in platinumfb_dac_type()

123456