Home
last modified time | relevance | path

Searched refs:idd (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/lib/msun/tests/
H A Dnext_test.c72 static double idd(double);
227 test(idd(nextafter(DBL_MAX, INFINITY)), INFINITY, ex_over); in ATF_TC_BODY()
228 test(idd(nextafter(INFINITY, 0.0)), DBL_MAX, 0); in ATF_TC_BODY()
229 test(idd(nexttoward(DBL_MAX, DBL_MAX * 2.0L)), INFINITY, ex_over); in ATF_TC_BODY()
231 test(idd(nexttoward(INFINITY, DBL_MAX * 2.0L)), DBL_MAX, 0); in ATF_TC_BODY()
267 idd(double x) in idd() function
/freebsd-13.1/sys/cam/nvme/
H A Dnvme_xpt.c312 struct scsi_vpd_id_descriptor *idd; in nvme_probe_done() local
442 idd = (struct scsi_vpd_id_descriptor *)(did + 1); in nvme_probe_done()
444 idd->proto_codeset = SVPD_ID_CODESET_BINARY; in nvme_probe_done()
445 idd->id_type = SVPD_ID_ASSOC_LUN | SVPD_ID_TYPE_EUI64; in nvme_probe_done()
446 idd->length = 16; in nvme_probe_done()
447 bcopy(nvme_data->nguid, idd->identifier, 16); in nvme_probe_done()
448 idd = (struct scsi_vpd_id_descriptor *) in nvme_probe_done()
449 &idd->identifier[16]; in nvme_probe_done()
452 idd->proto_codeset = SVPD_ID_CODESET_BINARY; in nvme_probe_done()
454 idd->length = 8; in nvme_probe_done()
[all …]
/freebsd-13.1/sys/cam/
H A Dcam_xpt.c1274 if (idd == NULL) in xpt_getattr()
1277 if (idd == NULL) in xpt_getattr()
1280 if (idd == NULL) in xpt_getattr()
1284 idd = NULL; in xpt_getattr()
1286 if (idd == NULL) in xpt_getattr()
1289 if (idd == NULL) in xpt_getattr()
1292 if (idd == NULL) in xpt_getattr()
1298 if (idd->length < len) { in xpt_getattr()
1309 l = strnlen(idd->identifier, idd->length); in xpt_getattr()
1327 idd->identifier[l]); in xpt_getattr()
[all …]
/freebsd-13.1/sys/cam/ctl/
H A Dctl_tpc.c1977 struct scsi_vpd_id_descriptor *idd = NULL; in tpc_create_token() local
1986 idd = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) in tpc_create_token()
1989 if (idd == NULL && lun->lun_devid) in tpc_create_token()
1990 idd = scsi_get_devid_desc((struct scsi_vpd_id_descriptor *) in tpc_create_token()
1993 if (idd != NULL) { in tpc_create_token()
1997 memcpy(&cscd->codeset, idd, 4 + idd->length); in tpc_create_token()
/freebsd-13.1/contrib/ldns/
H A Dstr2host.c757 uint8_t idd[2]; in ldns_str2rdf_cert_alg() local
762 ldns_write_uint16(idd, (uint16_t) lt->id); in ldns_str2rdf_cert_alg()
764 LDNS_RDF_TYPE_INT16, sizeof(uint16_t), idd); in ldns_str2rdf_cert_alg()
/freebsd-13.1/sys/cam/scsi/
H A Dscsi_enc_ses.c1090 struct scsi_vpd_id_descriptor *idd; in ses_set_physpath() local
1120 idd = scsi_get_devid((struct scsi_vpd_device_id *)cdai.buf, in ses_set_physpath()
1122 if (idd == NULL) in ses_set_physpath()
1131 scsi_8btou64(idd->identifier), iter->type_index, in ses_set_physpath()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsHexagonDep.def303 TARGET_BUILTIN(__builtin_HEXAGON_F2_dfcmpeq, "idd", "", V5)
304 TARGET_BUILTIN(__builtin_HEXAGON_F2_dfcmpge, "idd", "", V5)
305 TARGET_BUILTIN(__builtin_HEXAGON_F2_dfcmpgt, "idd", "", V5)
306 TARGET_BUILTIN(__builtin_HEXAGON_F2_dfcmpuo, "idd", "", V5)
/freebsd-13.1/sbin/camcontrol/
H A Dcamcontrol.c8945 struct scsi_vpd_id_descriptor *idd; in findsasdevice() local
8950 idd = scsi_get_devid(item->device_id, in findsasdevice()
8953 if (idd == NULL) in findsasdevice()
8956 if (scsi_8btou64(idd->identifier) == sasaddr) in findsasdevice()