Searched refs:vendor (Results 26 - 50 of 391) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dsunddi.h60 int _ddi_log_sysevent(char *vendor, char *class_name, char *subclass_name,
62 #define ddi_log_sysevent(dip, vendor, class_name, subclass_name, \
64 _ddi_log_sysevent((vendor), (class_name), (subclass_name), \
/freebsd-11-stable/lib/libkiconv/
H A Dquirks.c67 int vendor; /* reserved for non MS mapping */ member in struct:__anon6826
118 kiconv_quirkcs(const char* base, int vendor) argument
128 if (quirk_list[i].vendor == vendor &&
190 kiconv_quirkcs(const char* base __unused, int vendor __unused)
/freebsd-11-stable/sys/dev/puc/
H A Dpuc_pci.c89 uint16_t vendor, device; local
92 vendor = pci_get_vendor(dev);
97 while (desc->vendor != 0xffff) {
98 if (desc->vendor == vendor && desc->device == device) {
H A Dpuc_cfg.h73 uint16_t vendor; member in struct:puc_cfg
/freebsd-11-stable/sys/dev/uart/
H A Duart_bus_pci.c65 uint16_t vendor; member in struct:pci_id
169 uint16_t device, subdev, subven, vendor; local
171 vendor = pci_get_vendor(dev);
173 while (id->vendor != 0xffff &&
174 (id->vendor != vendor || id->device != device))
176 if (id->vendor == 0xffff)
182 while (id->vendor == vendor && id->device == device &&
185 return ((id->vendor
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_common/
H A Deap_common.c52 * @vendor: Expected EAP Vendor-Id (0 = IETF)
66 const u8 * eap_hdr_validate(int vendor, EapType eap_type, argument
93 if (exp_vendor != vendor || exp_type != (u32) eap_type) {
102 if (vendor != EAP_VENDOR_IETF || *pos != eap_type) {
114 * @vendor: Vendor-Id (0 = IETF)
128 struct wpabuf * eap_msg_alloc(int vendor, EapType type, size_t payload_len, argument
135 len = sizeof(struct eap_hdr) + (vendor == EAP_VENDOR_IETF ? 1 : 8) +
146 if (vendor == EAP_VENDOR_IETF) {
150 wpabuf_put_be24(buf, vendor);
H A Deap_gpsk_common.c20 * @vendor: CSuite/Vendor
24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier) argument
26 if (vendor == EAP_GPSK_VENDOR_IETF &&
30 if (vendor == EAP_GPSK_VENDOR_IETF &&
263 * @vendor: CSuite/Vendor
279 int eap_gpsk_derive_keys(const u8 *psk, size_t psk_len, int vendor, argument
291 vendor, specifier);
293 if (vendor != EAP_GPSK_VENDOR_IETF)
332 "key derivation", vendor, specifier);
404 * @vendor
417 eap_gpsk_derive_session_id(const u8 *psk, size_t psk_len, int vendor, int specifier, const u8 *rand_peer, const u8 *rand_server, const u8 *id_peer, size_t id_peer_len, const u8 *id_server, size_t id_server_len, u8 method_type, u8 *sid, size_t *sid_len) argument
482 eap_gpsk_mic_len(int vendor, int specifier) argument
524 eap_gpsk_compute_mic(const u8 *sk, size_t sk_len, int vendor, int specifier, const u8 *data, size_t len, u8 *mic) argument
[all...]
/freebsd-11-stable/usr.sbin/cpucontrol/
H A Dvia.c56 char vendor[13]; local
67 ((uint32_t *)vendor)[0] = idargs.data[1];
68 ((uint32_t *)vendor)[1] = idargs.data[3];
69 ((uint32_t *)vendor)[2] = idargs.data[2];
70 vendor[12] = '\0';
71 if (strncmp(vendor, CENTAUR_VENDOR_ID, sizeof(CENTAUR_VENDOR_ID)) != 0)
H A Damd.c55 char vendor[13]; local
66 ((uint32_t *)vendor)[0] = idargs.data[1];
67 ((uint32_t *)vendor)[1] = idargs.data[3];
68 ((uint32_t *)vendor)[2] = idargs.data[2];
69 vendor[12] = '\0';
70 if (strncmp(vendor, AMD_VENDOR_ID, sizeof(AMD_VENDOR_ID)) != 0)
/freebsd-11-stable/usr.sbin/mlxcontrol/
H A Dutil.c114 char *type, *device, *vendor, *revision; local
153 if (!mlx_scsi_inquiry(0, chn, targ, &vendor, &device, &revision)) {
154 printf("'%8.8s' '%16.16s' '%4.4s'", vendor, device, revision);
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-openflow.c63 of_vendor_name(const uint32_t vendor) argument
65 const struct tok *table = (vendor & 0xff000000) == 0 ? oui_values : onf_exp_str;
66 return tok2str(table, "unknown", vendor);
H A Dconfig.sub1535 # The value should be what the vendor currently ships out the door with their
1725 vendor=unknown
1730 vendor=acorn
1733 vendor=sun
1736 vendor=ibm
1739 vendor=be
1742 vendor=hp
1745 vendor=hp
1748 vendor=hitachi
1751 vendor
[all...]
/freebsd-11-stable/sys/sys/
H A Defiio.h46 struct uuid vendor; /* Vendor's UUID for variable */ member in struct:efi_var_ioc
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_reset.c49 u16 vendor; local
128 &vendor) && vendor != 0xffff)
134 if (vendor == 0xffff) {
/freebsd-11-stable/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_mlx_sender.h39 #include <vendor/osm_vendor_mlx.h>
40 #include <vendor/osm_vendor_mlx_txn.h>
H A Dosm_umadt.h47 #include <vendor/osm_vendor_api.h>
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_gpsk.c32 int vendor; /* CSuite/Specifier */ member in struct:eap_gpsk_data
201 data->vendor = EAP_GPSK_VENDOR_IETF;
205 int vendor, specifier; local
206 vendor = WPA_GET_BE32(csuite->vendor);
209 i, vendor, specifier);
210 if (data->vendor == EAP_GPSK_VENDOR_IETF &&
212 eap_gpsk_supported_ciphersuite(vendor, specifier) &&
215 data->vendor = vendor;
491 int vendor, specifier; local
[all...]
/freebsd-11-stable/contrib/netbsd-tests/modules/
H A Dt_modload.sh56 check_sysctl vendor.k_helper.present 1
57 check_sysctl vendor.k_helper.prop_int_ok 0
58 check_sysctl vendor.k_helper.prop_str_ok 0
150 check_sysctl vendor.k_helper.prop_int_ok 1
151 check_sysctl vendor.k_helper.prop_int_val "${v}"
189 check_sysctl vendor.k_helper.prop_str_ok 1
190 check_sysctl vendor.k_helper.prop_str_val "${v}"
/freebsd-11-stable/contrib/ofed/opensm/libvendor/
H A Dosm_vendor_mlx_hca_anafa.c48 #include <vendor/osm_vendor_api.h>
52 #include <vendor/osm_vendor_mlx_transport_anafa.h>
53 #include <vendor/osm_ts_useraccess.h>
149 * Update the vendor object list of ca_info structs
H A Dosm_vendor_mlx_ts_anafa.c57 #include <vendor/osm_vendor_api.h>
58 #include <vendor/osm_vendor_mlx_transport.h>
59 #include <vendor/osm_vendor_mlx_transport_anafa.h>
60 #include <vendor/osm_vendor_mlx_dispatcher.h>
61 #include <vendor/osm_vendor_mlx_svc.h>
62 #include <vendor/osm_ts_useraccess.h>
/freebsd-11-stable/contrib/libpcap/
H A Dconfig.sub1535 # The value should be what the vendor currently ships out the door with their
1725 vendor=unknown
1730 vendor=acorn
1733 vendor=sun
1736 vendor=ibm
1739 vendor=be
1742 vendor=hp
1745 vendor=hp
1748 vendor=hitachi
1751 vendor
[all...]
/freebsd-11-stable/contrib/wpa/src/eap_server/
H A Deap_server_gpsk.c34 int vendor; /* CSuite/Vendor */ member in struct:eap_gpsk_data
77 WPA_PUT_BE32(data->csuite_list[data->csuite_count].vendor,
85 WPA_PUT_BE32(data->csuite_list[data->csuite_count].vendor,
154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier);
174 WPA_PUT_BE32(csuite->vendor, data->vendor);
181 if (eap_gpsk_compute_mic(data->sk, data->sk_len, data->vendor,
373 WPA_GET_BE32(csuite->vendor),
378 data->vendor = WPA_GET_BE32(csuite->vendor);
[all...]
/freebsd-11-stable/contrib/ofed/opensm/include/opensm/
H A Dosm_path.h42 #include <vendor/osm_vendor_api.h>
/freebsd-11-stable/lib/ofed/libibmad/
H A DMakefile25 vendor.c
/freebsd-11-stable/sys/dev/drm2/i915/
H A Ddvo_ch7xxx.c184 uint8_t vendor, device; local
195 if (!ch7xxx_readb(dvo, CH7xxx_REG_VID, &vendor))
198 name = ch7xxx_get_id(vendor);
202 vendor, device_get_nameunit(adapter), dvo->slave_addr);
213 vendor, device_get_nameunit(adapter), dvo->slave_addr);
218 DRM_DEBUG_KMS("Detected %s chipset, vendor/device ID 0x%02x/0x%02x\n",
219 name, vendor, device);

Completed in 430 milliseconds

1234567891011>>