| /NextBSD/sys/i386/i386/ |
| HD | trap.c | 192 int i = 0, ucode = 0, code; in trap() local 324 ucode = ILL_PRVOPC; in trap() 340 ucode = (type == T_TRCTRAP ? TRAP_TRACE : TRAP_BRKPT); in trap() 345 ucode = npxtrap_x87(); in trap() 346 if (ucode == -1) in trap() 349 ucode = 0; in trap() 368 ucode = (type == T_PROTFLT) ? BUS_OBJERR : BUS_ADRERR; in trap() 372 ucode = BUS_ADRERR; in trap() 376 ucode = BUS_OBJERR; in trap() 380 ucode = BUS_ADRALN; in trap() [all …]
|
| /NextBSD/sys/amd64/amd64/ |
| HD | trap.c | 180 int i = 0, ucode = 0, code; in trap() local 276 ucode = ILL_PRVOPC; in trap() 292 ucode = (type == T_TRCTRAP ? TRAP_TRACE : TRAP_BRKPT); in trap() 296 ucode = fputrap_x87(); in trap() 297 if (ucode == -1) in trap() 304 ucode = BUS_OBJERR; in trap() 309 ucode = BUS_ADRERR; in trap() 313 ucode = BUS_OBJERR; in trap() 317 ucode = BUS_ADRALN; in trap() 322 ucode = BUS_OBJERR; in trap() [all …]
|
| /NextBSD/sys/powerpc/powerpc/ |
| HD | trap.c | 165 u_int ucode; local 173 type = ucode = frame->exc; 209 ucode = TRAP_TRACE; 218 ucode = SEGV_MAPERR; 226 ucode = SEGV_MAPERR; 275 ucode = BUS_ADRALN; 286 ucode = TRAP_TRACE; 307 ucode = TRAP_BRKPT; 312 ucode = ILL_PRVOPC; 314 ucode = ILL_ILLOPC; [all …]
|
| /NextBSD/tools/tools/locale/tools/ |
| HD | utf8-rollup.pl | 188 my $ucode = shift; 189 if (defined $seen{$ucode}) { 192 $pending_seen{$ucode} = 1; 197 my $ucode = shift; 198 if (defined $seen{$ucode}) {
|
| /NextBSD/sys/arm64/arm64/ |
| HD | trap.c | 156 int error, sig, ucode; in data_abort() local 214 ucode = SEGV_ACCERR; in data_abort() 216 ucode = SEGV_MAPERR; in data_abort() 217 call_trapsignal(td, sig, ucode, (void *)far); in data_abort()
|
| /NextBSD/contrib/groff/src/utils/hpftodit/ |
| HD | hpftodit.cpp | 1277 int ucode = int(strtol(ustr, &nonum, 16)); in hp_msl_to_ucode_name() local 1279 if (ucode >= 0xE000 && ucode <= 0xF8FF) in hp_msl_to_ucode_name() 1294 unicode_to_ucode_name(int ucode) in unicode_to_ucode_name() argument 1300 if (ucode >= 0xE000 && ucode <= 0xF8FF) in unicode_to_ucode_name() 1303 sprintf(codestr, "%04X", ucode); in unicode_to_ucode_name()
|
| /NextBSD/usr.sbin/lmcconfig/ |
| HD | lmcconfig.c | 496 load_xilinx_from_file(char *ucode, u_int32_t len) in load_xilinx_from_file() argument 504 ioctl.ucode = ucode; in load_xilinx_from_file() 2006 char *ucode; in load_xilinx() local 2017 ucode = (char *)malloc(8192); bzero(ucode, 8192); in load_xilinx() 2028 if (c=='1') ucode[length] |= 1<<i++; in load_xilinx() 2054 ucode[length++] = read_hex(f); in load_xilinx() 2077 load_xilinx_from_file(ucode, length); in load_xilinx()
|
| /NextBSD/sys/sys/mach/device/ |
| HD | ndd.h | 259 caddr_t ucode; member
|
| /NextBSD/sys/dev/fxp/ |
| HD | if_fxp.c | 3061 static const struct ucode { struct 3063 uint32_t *ucode; argument 3088 const struct ucode *uc; in fxp_load_ucode() argument 3095 for (uc = ucode_table; uc->ucode != NULL; uc++) in fxp_load_ucode() 3098 if (uc->ucode == NULL) in fxp_load_ucode() 3105 cbp->ucode[i] = htole32(uc->ucode[i]); in fxp_load_ucode() 3107 *(uint16_t *)&cbp->ucode[uc->int_delay_offset] = in fxp_load_ucode() 3110 *(uint16_t *)&cbp->ucode[uc->bundle_max_offset] = in fxp_load_ucode()
|
| HD | if_fxpreg.h | 245 uint32_t ucode[MAXUCODESIZE]; member
|
| /NextBSD/sys/mips/mips/ |
| HD | trap.c | 516 unsigned ucode = 0; in trap() local 742 ucode = ftype; in trap() 777 ucode = 0; /* XXX should be VM_PROT_something */ in trap() 1105 ksi.ksi_code = ucode; in trap()
|
| /NextBSD/sys/dev/usb/wlan/ |
| HD | if_rum.c | 2461 rum_load_microcode(struct rum_softc *sc, const uint8_t *ucode, size_t size) in rum_load_microcode() argument 2468 for (; size >= 4; reg += 4, ucode += 4, size -= 4) { in rum_load_microcode() 2469 err = rum_write(sc, reg, UGETDW(ucode)); in rum_load_microcode()
|
| /NextBSD/sys/dev/bwn/ |
| HD | if_bwnvar.h | 772 struct bwn_fwfile ucode; member
|
| HD | if_bwn.c | 7466 error = bwn_fw_get(mac, type, filename, &fw->ucode); in bwn_fw_gets() 7644 bwn_do_release_fw(&mac->mac_fw.ucode); in bwn_release_firmware() 7684 data = GETFWOFFSET(mac->mac_fw.ucode, sizeof(struct bwn_fwhdr)); in bwn_fw_loaducode() 7686 for (i = 0; i < GETFWSIZE(mac->mac_fw.ucode, sizeof(struct bwn_fwhdr)); in bwn_fw_loaducode()
|
| /NextBSD/sys/dev/lmc/ |
| HD | if_lmc.h | 909 char *ucode; /* user-land address of ucode */ member
|
| HD | if_lmc.c | 3491 error = load_xilinx_from_file(sc, ioctl->ucode, ioctl->data); in core_ioctl()
|
| /NextBSD/sys/dev/iwn/ |
| HD | if_iwn.c | 6435 cmd.ucode.once.enable = 0xffffffff; in iwn5000_runtime_calib() 6436 cmd.ucode.once.start = IWN5000_CALIB_DC; in iwn5000_runtime_calib() 7499 cmd.ucode.once.enable = htole32(0xffffffff); in iwn5000_query_calibration() 7500 cmd.ucode.once.start = htole32(0xffffffff); in iwn5000_query_calibration() 7501 cmd.ucode.once.send = htole32(0xffffffff); in iwn5000_query_calibration() 7502 cmd.ucode.flags = htole32(0xffffffff); in iwn5000_query_calibration() 7814 iwn4965_load_bootcode(struct iwn_softc *sc, const uint8_t *ucode, int size) in iwn4965_load_bootcode() argument 7825 (const uint32_t *)ucode, size); in iwn4965_load_bootcode()
|
| HD | if_iwnreg.h | 857 struct iwn5000_calib_status ucode; member
|
| /NextBSD/sys/dev/wpi/ |
| HD | if_wpi.c | 4879 wpi_load_bootcode(struct wpi_softc *sc, const uint8_t *ucode, uint32_t size) in wpi_load_bootcode() argument 4892 (const uint32_t *)ucode, size); in wpi_load_bootcode()
|
| /NextBSD/contrib/gcc/ |
| HD | ChangeLog-1998 | 6783 (ultrasparc_rescan_pipeline_state): Remove unused variable ucode.
|