Home
last modified time | relevance | path

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

123

/freebsd-12.1/contrib/binutils/binutils/
H A Dstabs.c685 debug_type dtype; in parse_stab_string() local
988 dtype = debug_name_type (dhandle, name, dtype); in parse_stab_string()
993 *slot = dtype; in parse_stab_string()
1023 dtype = debug_tag_type (dhandle, name, dtype); in parse_stab_string()
1027 *slot = dtype; in parse_stab_string()
1050 dtype = debug_name_type (dhandle, name, dtype); in parse_stab_string()
1055 *slot = dtype; in parse_stab_string()
1132 debug_type dtype; in parse_stab_type() local
1589 return dtype; in parse_stab_type()
3523 debug_type dtype; in stab_find_tagged_type() local
[all …]
/freebsd-12.1/sys/sparc64/pci/
H A Dofw_pcib.c98 const char *dtype, *pbdtype; in ofw_pcib_probe() local
100 #define ISDTYPE(dtype, type) \ in ofw_pcib_probe() argument
101 (((dtype) != NULL) && strcmp((dtype), (type)) == 0) in ofw_pcib_probe()
106 dtype = ofw_bus_get_type(dev); in ofw_pcib_probe()
111 ISDTYPE(dtype, OFW_TYPE_PCIE) ? "e" : ""); in ofw_pcib_probe()
/freebsd-12.1/contrib/bsnmp/lib/
H A Dsnmpcrypto.c67 const EVP_MD **dtype, uint32_t *keylen) in snmp_digest_init() argument
70 *dtype = EVP_md5(); in snmp_digest_init()
73 *dtype = EVP_sha1(); in snmp_digest_init()
83 if (EVP_DigestInit(ctx, *dtype) != 1) in snmp_digest_init()
96 const EVP_MD *dtype; in snmp_pdu_calc_digest() local
124 if (EVP_DigestInit(ctx, dtype) != 1 || in snmp_pdu_calc_digest()
251 const EVP_MD *dtype; in snmp_passwd_to_keys() local
262 err = snmp_digest_init(user, ctx, &dtype, &keylen); in snmp_passwd_to_keys()
297 const EVP_MD *dtype; in snmp_get_local_keys() local
311 err = snmp_digest_init(user, ctx, &dtype, &keylen); in snmp_get_local_keys()
[all …]
/freebsd-12.1/lib/msun/src/
H A Ds_lrint.c37 #define dtype long macro
48 dtype
52 dtype d; in fn()
55 d = (dtype)roundit(x); in fn()
H A Ds_lround.c38 #define dtype long macro
57 dtype
63 return ((dtype)x); in fn()
H A Ds_llrint.c6 #define dtype long long macro
H A Ds_llrintf.c6 #define dtype long long macro
H A Ds_lrintl.c6 #define dtype long macro
H A Ds_llrintl.c6 #define dtype long long macro
H A Ds_lrintf.c6 #define dtype long macro
H A Ds_lroundf.c6 #define dtype long macro
H A Ds_llroundl.c6 #define dtype long long macro
H A Ds_llround.c6 #define dtype long long macro
H A Ds_llroundf.c6 #define dtype long long macro
H A Ds_lroundl.c6 #define dtype long macro
/freebsd-12.1/contrib/nvi/common/
H A Drecover.c516 char *dtype, *data; in rcv_list() local
564 if (dtype == NULL) in rcv_list()
566 if (!strcmp(dtype, "file")) in rcv_list()
628 char *dtype, *data; in rcv_read() local
685 if (dtype == NULL) in rcv_read()
859 const char *dtype, in rcv_dlnwrite() argument
869 dlen = strlen(dtype); in rcv_dlnwrite()
915 char *dtype, *data; in rcv_dlnread() local
960 dtype = data + xlen + 1; in rcv_dlnread()
962 dtype[dlen] = '\0'; in rcv_dlnread()
[all …]
/freebsd-12.1/sys/dev/sound/pcm/
H A Dvchan.c357 char dtype[16]; in sysctl_dev_pcm_vchanmode() local
397 strlcpy(dtype, "passthrough", sizeof(dtype)); in sysctl_dev_pcm_vchanmode()
399 strlcpy(dtype, "adaptive", sizeof(dtype)); in sysctl_dev_pcm_vchanmode()
401 strlcpy(dtype, "fixed", sizeof(dtype)); in sysctl_dev_pcm_vchanmode()
404 ret = sysctl_handle_string(oidp, dtype, sizeof(dtype), req); in sysctl_dev_pcm_vchanmode()
406 if (strcasecmp(dtype, "passthrough") == 0 || in sysctl_dev_pcm_vchanmode()
407 strcmp(dtype, "1") == 0) in sysctl_dev_pcm_vchanmode()
409 else if (strcasecmp(dtype, "adaptive") == 0 || in sysctl_dev_pcm_vchanmode()
410 strcmp(dtype, "2") == 0) in sysctl_dev_pcm_vchanmode()
412 else if (strcasecmp(dtype, "fixed") == 0 || in sysctl_dev_pcm_vchanmode()
[all …]
/freebsd-12.1/crypto/openssh/
H A Ddns.c324 u_int8_t dtype; in export_dns_rr() local
329 for (dtype = SSHFP_HASH_SHA1; dtype < SSHFP_HASH_MAX; dtype++) { in export_dns_rr()
330 rdata_digest_type = dtype; in export_dns_rr()
/freebsd-12.1/lib/libusb/
H A Dlibusb10_desc.c371 uint8_t dtype; in libusb_parse_ss_endpoint_comp() local
374 dtype = ((const uint8_t *)buf)[1]; in libusb_parse_ss_endpoint_comp()
380 dtype == LIBUSB_DT_SS_ENDPOINT_COMPANION) { in libusb_parse_ss_endpoint_comp()
388 ptr->bDescriptorType = dtype; in libusb_parse_ss_endpoint_comp()
450 uint8_t dtype; in libusb_parse_bos_descriptor() local
453 dtype = ((const uint8_t *)buf)[1]; in libusb_parse_bos_descriptor()
459 dtype == LIBUSB_DT_BOS && in libusb_parse_bos_descriptor()
471 ptr->bDescriptorType = dtype; in libusb_parse_bos_descriptor()
488 dtype == LIBUSB_DT_DEVICE_CAPABILITY) { in libusb_parse_bos_descriptor()
508 dcap_20->bDescriptorType = dtype; in libusb_parse_bos_descriptor()
[all …]
/freebsd-12.1/sbin/newfs_msdos/
H A Dnewfs_msdos.c81 const char *fname, *dtype; in main() local
191 dtype = *argv; in main()
192 return !!mkfs_msdos(fname, dtype, &o); in main()
/freebsd-12.1/sys/mips/broadcom/
H A Dbcm_nvram_cfe.c262 int cerr, devinfo, dtype, rlen; in bcm_nvram_iocfe_init() local
287 dtype = devinfo & CFE_DEV_MASK; in bcm_nvram_iocfe_init()
288 switch (dtype) { in bcm_nvram_iocfe_init()
294 IOCFE_LOG(iocfe, "unknown device type: %d\n", dtype); in bcm_nvram_iocfe_init()
/freebsd-12.1/crypto/openssl/crypto/rsa/
H A Drsa_locl.h101 int (*rsa_verify) (int dtype, const unsigned char *m,
115 extern int int_rsa_verify(int dtype, const unsigned char *m,
H A Drsa_meth.c243 (int dtype, const unsigned char *m, in RSA_meth_get_verify()
251 int (*verify) (int dtype, const unsigned char *m, in RSA_meth_set_verify()
/freebsd-12.1/sys/netgraph/
H A Dng_message.h78 #define NG_GENERIC_NG_MESG_INFO(dtype) { \ argument
88 { "data", (dtype) }, \
/freebsd-12.1/contrib/unbound/services/
H A Dlocalzone.h257 uint8_t* name, size_t len, int labs, uint16_t dclass, uint16_t dtype,
273 uint8_t* name, size_t len, int labs, uint16_t dclass, uint16_t dtype);

123