Home
last modified time | relevance | path

Searched refs:uhp (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/common/ucode/
H A Ducode_utils_intel.c51 ucode_header_validate_intel(ucode_header_intel_t *uhp) in ucode_header_validate_intel() argument
55 if (uhp == NULL) in ucode_header_validate_intel()
61 if (uhp->uh_header_ver != 0x1) in ucode_header_validate_intel()
65 total_size = UCODE_TOTAL_SIZE_INTEL(uhp->uh_total_size); in ucode_header_validate_intel()
66 body_size = UCODE_BODY_SIZE_INTEL(uhp->uh_body_size); in ucode_header_validate_intel()
122 ucode_checksum_intel_extsig(ucode_header_intel_t *uhp, in ucode_checksum_intel_extsig() argument
139 diff -= uhp->uh_signature + uhp->uh_proc_flags + in ucode_checksum_intel_extsig()
140 uhp->uh_checksum; in ucode_checksum_intel_extsig()
156 ucode_header_intel_t *uhp; in ucode_validate_intel() local
160 uhp = (ucode_header_intel_t *)curbuf; in ucode_validate_intel()
[all …]
/illumos-gate/usr/src/uts/intel/os/
H A Dmicrocode_intel.c111 ucode_header_intel_t *uhp, ucode_ext_table_intel_t *uetp) in ucode_match_intel() argument
113 if (uhp == NULL) in ucode_match_intel()
116 if (UCODE_MATCH_INTEL(cpi_sig, uhp->uh_signature, in ucode_match_intel()
117 uinfop->cui_platid, uhp->uh_proc_flags)) { in ucode_match_intel()
119 if (uinfop->cui_rev >= uhp->uh_rev && !ucode_force_update) in ucode_match_intel()
134 if (uinfop->cui_rev >= uhp->uh_rev && in ucode_match_intel()
219 ucode_header_intel_t *uhp = ucodefp->uf_header; in ucode_locate_intel() local
227 if ((rc = ucode_header_validate_intel(uhp)) == EM_OK) { in ucode_locate_intel()
228 total_size = UCODE_TOTAL_SIZE_INTEL(uhp->uh_total_size); in ucode_locate_intel()
229 body_size = UCODE_BODY_SIZE_INTEL(uhp->uh_body_size); in ucode_locate_intel()
[all …]
/illumos-gate/usr/src/cmd/ucodeadm/
H A Ducodeadm.c393 ucode_header_intel_t *uhp; in ucode_gen_files_intel() local
396 uhp = (ucode_header_intel_t *)(uintptr_t)curbuf; in ucode_gen_files_intel()
398 total_size = UCODE_TOTAL_SIZE_INTEL(uhp->uh_total_size); in ucode_gen_files_intel()
399 body_size = UCODE_BODY_SIZE_INTEL(uhp->uh_body_size); in ucode_gen_files_intel()
404 common_path, uhp->uh_signature, uhp->uh_proc_flags); in ucode_gen_files_intel()
407 if (ucode_should_update_intel(firstname, uhp->uh_rev) != 0) { in ucode_gen_files_intel()
433 uint32_t platid = uhp->uh_proc_flags & (1 << i); in ucode_gen_files_intel()
435 if (platid == 0 && uhp->uh_proc_flags != 0) in ucode_gen_files_intel()
439 "%s/%08X-%02X", path, uhp->uh_signature, platid); in ucode_gen_files_intel()
442 uhp->uh_proc_flags, platid, name); in ucode_gen_files_intel()
[all …]
/illumos-gate/usr/src/uts/common/io/sfxge/
H A Dsfxge_tcp.c162 struct udphdr *uhp; in sfxge_pkthdr_parse() local
170 uhp = (struct udphdr *)(mp->b_rptr + off); in sfxge_pkthdr_parse()
171 dport = uhp->uh_dport; in sfxge_pkthdr_parse()
172 sport = uhp->uh_sport; in sfxge_pkthdr_parse()
/illumos-gate/usr/src/cmd/fs.d/ufs/repquota/
H A Drepquota.c406 struct username *up, **uhp; in adduid() local
414 uhp = &uhead[uid % UHASH]; in adduid()
415 up->u_next = *uhp; in adduid()
416 *uhp = up; in adduid()
/illumos-gate/usr/src/cmd/fs.d/ufs/quot/
H A Dquot.c537 struct du *up, **uhp; in adduid() local
546 uhp = &duhashtbl[HASH(uid)]; in adduid()
547 up->next = *uhp; in adduid()
548 *uhp = up; in adduid()