| /netbsd/src/usr.sbin/bootp/bootpd/ |
| D | bootptab.cmu | 16 # ha -- hardware address 70 carnegie:tc=.subnet13:ht=ieee802:ha=7FF8100000AF: 71 baldwin:tc=.subnet19:ha=0800200159C3: 72 wylie:tc=.subnet232:ha=00DD00CADF00: 73 arnold:tc=.subnet19:ha=0800200102AD: 74 bairdford:tc=.subnet19:ha=08002B02A2F9: 75 bakerstown:tc=.subnet19:ha=08002B0287C8: 76 butlerjct:tc=.subnet232:ha=08002001560D: 77 gastonville:tc=.subnet232:ht=ieee802:ha=7FFF81000A47: 78 hahntown:tc=.subnet13:ht=ieee802:ha=7FFF81000434: [all …]
|
| /netbsd/src/sys/arch/news68k/dev/ |
| D | hb.c | 68 struct hb_attach_args ha; in hb_attach() local 71 memset(&ha, 0, sizeof(ha)); in hb_attach() 73 config_search(self, &ha, in hb_attach() 80 struct hb_attach_args *ha = aux; in hb_search() local 82 ha->ha_name = cf->cf_name; in hb_search() 83 ha->ha_address = cf->cf_addr; in hb_search() 84 ha->ha_ipl = cf->cf_ipl; in hb_search() 85 ha->ha_vect = cf->cf_vect; in hb_search() 88 ha->ha_bust = ISIIOPA(ha->ha_address) ? in hb_search() 91 if (config_probe(parent, cf, ha)) in hb_search() [all …]
|
| D | timer_hb.c | 82 struct hb_attach_args *ha = aux; in timer_hb_match() local 89 if (strcmp(ha->ha_name, timer_cd.cd_name)) in timer_hb_match() 92 if (ha->ha_ipl == -1) in timer_hb_match() 93 ha->ha_ipl = TIMER_LEVEL; in timer_hb_match() 95 ha->ha_size = TIMER_SIZE; in timer_hb_match() 105 struct hb_attach_args *ha = aux; in timer_hb_attach() local 107 if (ha->ha_ipl != TIMER_LEVEL) in timer_hb_attach() 110 ctrl_timer = (uint8_t *)(ha->ha_address); /* XXX needs bus_space */ in timer_hb_attach() 117 vec_set_entry(VECI_INTRAV0 + ha->ha_ipl, _isr_clock); in timer_hb_attach()
|
| D | kbc.c | 58 struct hb_attach_args *ha = aux; in kbc_match() local 61 if (strcmp(ha->ha_name, "kbc")) in kbc_match() 65 if (ha->ha_address == (u_int)-1) in kbc_match() 68 addr = ha->ha_address; /* XXX */ in kbc_match() 79 struct hb_attach_args *ha = aux; in kbc_attach() local 81 bus_space_tag_t bt = ha->ha_bust; in kbc_attach() 84 if (bus_space_map(bt, ha->ha_address, KBC_SIZE, 0, &bh) != 0) { in kbc_attach() 93 ka.ka_ipl = ha->ha_ipl; in kbc_attach()
|
| D | mkclock_hb.c | 62 struct hb_attach_args *ha = aux; in mkclock_hb_match() local 69 if (strcmp(ha->ha_name, mkclock_cd.cd_name)) in mkclock_hb_match() 72 ha->ha_size = MK48T02_CLKSZ; in mkclock_hb_match() 83 struct hb_attach_args *ha = aux; in mkclock_hb_attach() local 86 sc->sc_bst = ha->ha_bust; in mkclock_hb_attach() 87 if (bus_space_map(sc->sc_bst, (bus_addr_t)ha->ha_address, ha->ha_size, in mkclock_hb_attach()
|
| D | kb_hb.c | 67 struct hb_attach_args *ha = aux; in kb_hb_match() local 70 if (strcmp(ha->ha_name, "kb")) in kb_hb_match() 74 if (ha->ha_address == (u_int)-1) in kb_hb_match() 77 addr = (ha->ha_address); /* XXX */ in kb_hb_match() 89 struct hb_attach_args *ha = aux; in kb_hb_attach() local 90 bus_space_tag_t bt = ha->ha_bust; in kb_hb_attach() 97 if (bus_space_map(bt, ha->ha_address, KB_SIZE, 0, &bh) != 0) { in kb_hb_attach() 109 ipl = ha->ha_ipl; in kb_hb_attach()
|
| D | ms_hb.c | 96 struct hb_attach_args *ha = aux; in ms_hb_match() local 99 if (strcmp(ha->ha_name, "ms")) in ms_hb_match() 103 if (ha->ha_address == (u_int)-1) in ms_hb_match() 106 addr = ha->ha_address; /* XXX */ in ms_hb_match() 118 struct hb_attach_args *ha = aux; in ms_hb_attach() local 119 bus_space_tag_t bt = ha->ha_bust; in ms_hb_attach() 125 if (bus_space_map(bt, ha->ha_address, MS_SIZE, 0, &bh) != 0) { in ms_hb_attach() 135 ipl = ha->ha_ipl; in ms_hb_attach()
|
| /netbsd/src/lib/libm/src/ |
| D | e_hypotf.c | 28 int32_t j,k,ha,hb; in __ieee754_hypotf() local 30 GET_FLOAT_WORD(ha,x); in __ieee754_hypotf() 31 ha &= 0x7fffffff; in __ieee754_hypotf() 34 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypotf() 35 SET_FLOAT_WORD(a,ha); /* a <- |a| */ in __ieee754_hypotf() 37 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */ in __ieee754_hypotf() 39 if(ha > 0x58800000) { /* a>2**50 */ in __ieee754_hypotf() 40 if(ha >= 0x7f800000) { /* Inf or NaN */ in __ieee754_hypotf() 42 if(ha == 0x7f800000) w = a; in __ieee754_hypotf() 47 ha -= 0x22000000; hb -= 0x22000000; k += 68; in __ieee754_hypotf() [all …]
|
| D | e_hypot.c | 57 int32_t j,k,ha,hb; in __ieee754_hypot() local 59 GET_HIGH_WORD(ha,x); in __ieee754_hypot() 60 ha &= 0x7fffffff; in __ieee754_hypot() 63 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in __ieee754_hypot() 64 SET_HIGH_WORD(a,ha); /* a <- |a| */ in __ieee754_hypot() 66 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ in __ieee754_hypot() 68 if(ha > 0x5f300000) { /* a>2**500 */ in __ieee754_hypot() 69 if(ha >= 0x7ff00000) { /* Inf or NaN */ in __ieee754_hypot() 73 if(((ha&0xfffff)|low)==0) w = a; in __ieee754_hypot() 79 ha -= 0x25800000; hb -= 0x25800000; k += 600; in __ieee754_hypot() [all …]
|
| D | e_hypotl.c | 61 int32_t j,k,ha,hb; in hypotl() local 63 GET_HIGH_WORD(ha,x); in hypotl() 64 ha &= 0x7fff; in hypotl() 67 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} in hypotl() 70 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */ in hypotl() 72 if(ha > ESW(MAX_EXP/2-12)) { /* a>2**(MAX_EXP/2-12) */ in hypotl() 73 if(ha >= ESW(MAX_EXP)) { /* Inf or NaN */ in hypotl() 84 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88); in hypotl() 86 SET_HIGH_WORD(a,ha); in hypotl() 100 ha += DESW(MAX_EXP/2+88); in hypotl() [all …]
|
| /netbsd/src/sys/arch/powerpc/oea/ |
| D | ofw_subr.S | 84 lis %r9,ofwreal_incharge@ha 91 lis %r8,ofentry@ha 98 lis %r8,oftramp@ha 103 lis %r9,ofwmsr@ha 106 lis %r8,OF_buffer@ha 108 lis %r9,_C_LABEL(OF_buf)@ha 114 lis %r8,_C_LABEL(ofw_bootstrap)@ha 123 lis %r5,_C_LABEL(openfirmware_trampoline)@ha 125 lis %r8,oftramp@ha 152 lis %r4,ofwreal_incharge@ha [all …]
|
| /netbsd/src/sys/dev/hil/ |
| D | hilms.c | 80 struct hil_attach_args *ha = aux; in hilmsprobe() local 82 if (ha->ha_type != HIL_DEVICE_MOUSE) in hilmsprobe() 89 if (ha->ha_infolen > 1 && (ha->ha_info[1] & HIL_AXMASK) == 0) in hilmsprobe() 99 struct hil_attach_args *ha = aux; in hilmsattach() local 104 sc->hd_code = ha->ha_code; in hilmsattach() 105 sc->hd_type = ha->ha_type; in hilmsattach() 106 sc->hd_infolen = ha->ha_infolen; in hilmsattach() 107 memcpy(sc->hd_info, ha->ha_info, ha->ha_infolen); in hilmsattach() 114 if (ha->ha_infolen > 1) { in hilmsattach() 115 sc->sc_features = ha->ha_info[1]; in hilmsattach() [all …]
|
| D | hilid.c | 59 struct hil_attach_args *ha = aux; in hilidprobe() local 61 if (ha->ha_type != HIL_DEVICE_IDMODULE) in hilidprobe() 72 struct hil_attach_args *ha = aux; in hilidattach() local 76 sc->hd_code = ha->ha_code; in hilidattach() 77 sc->hd_type = ha->ha_type; in hilidattach() 78 sc->hd_infolen = ha->ha_infolen; in hilidattach() 79 memcpy(sc->hd_info, ha->ha_info, ha->ha_infolen); in hilidattach()
|
| D | hilkbd.c | 128 struct hil_attach_args *ha = aux; in hilkbdprobe() local 130 if (ha->ha_type != HIL_DEVICE_KEYBOARD && in hilkbdprobe() 131 ha->ha_type != HIL_DEVICE_BUTTONBOX) in hilkbdprobe() 141 struct hil_attach_args *ha = aux; in hilkbdattach() local 147 sc->hd_code = ha->ha_code; in hilkbdattach() 148 sc->hd_type = ha->ha_type; in hilkbdattach() 149 sc->hd_infolen = ha->ha_infolen; in hilkbdattach() 150 memcpy(sc->hd_info, ha->ha_info, ha->ha_infolen); in hilkbdattach() 153 if (ha->ha_type == HIL_DEVICE_KEYBOARD) { in hilkbdattach() 158 layoutcode = ha->ha_id & (MAXHILKBDLAYOUT - 1); in hilkbdattach() [all …]
|
| /netbsd/src/sys/arch/newsmips/dev/ |
| D | hb.c | 44 struct hb_attach_args ha; in hb_attach() local 50 memset(&ha, 0, sizeof(ha)); in hb_attach() 56 config_search(self, &ha, in hb_attach() 63 struct hb_attach_args *ha = aux; in hb_search() local 65 ha->ha_name = cf->cf_name; in hb_search() 66 ha->ha_addr = cf->cf_addr; in hb_search() 67 ha->ha_level = cf->cf_level; in hb_search() 69 if (config_probe(parent, cf, ha)) in hb_search() 70 config_attach(parent, cf, ha, hb_print, CFARGS_NONE); in hb_search() 82 struct hb_attach_args *ha = args; in hb_print() local [all …]
|
| /netbsd/src/sys/arch/hp300/dev/ |
| D | hpib.c | 135 struct hpibdev_attach_args *ha = aux; in hpibbusattach() local 141 sc->sc_ops = ha->ha_ops; in hpibbusattach() 142 sc->sc_type = ha->ha_type; /* XXX */ in hpibbusattach() 143 sc->sc_ba = ha->ha_ba; in hpibbusattach() 144 *(ha->ha_softcpp) = sc; /* XXX */ in hpibbusattach() 166 struct hpibbus_attach_args ha; in hpibbus_attach_children() local 189 ha.ha_id = id; in hpibbus_attach_children() 190 ha.ha_slave = slave; in hpibbus_attach_children() 191 ha.ha_punit = punit; in hpibbus_attach_children() 192 config_found(sc->sc_dev, &ha, hpibbusprint, in hpibbus_attach_children() [all …]
|
| /netbsd/src/lib/libc/nls/ |
| D | ca.msg | 21 10 No hi ha processos fills 23 11 S'ha evitat el bloqueig del recurs 47 23 Hi ha massa arxius oberts al sistema 49 24 Hi ha massa arxius oberts 105 52 La connexi� a la xarxa s'ha perdut durant la reinicialitzaci� 107 53 El programari ha causat l'avort de la connexi� 109 54 L'interlocutor ha reinicialitzat la comunicaci� 111 55 No hi ha prou espai per a la memoria interm�dia (buffer) 119 59 Hi ha massa refer�ncies: no es poden unir 121 60 El temps de connexi� s'ha esgotat [all …]
|
| /netbsd/src/sys/arch/evbppc/ev64260/ |
| D | ev64260_locore.S | 95 lis 8, dink_stack@ha 97 lis 8, dink_return@ha 103 lis 8, 0xf100f104@ha 115 lis 8,edata@ha 117 lis 9,end@ha 208 lis 8,_C_LABEL(end)@ha 211 lis 7,_C_LABEL(startsym)@ha 214 lis 7,_C_LABEL(endsym)@ha 222 lis 3,__start@ha 272 lis 4, dink_stack@ha [all …]
|
| /netbsd/src/sys/arch/sandpoint/stand/altboot/ |
| D | entry.S | 33 lis 11,_start@ha 37 lis 12,(_edata+31)@ha 51 lis 5,0xfec00000@ha /* CONFIG_ADDR of PCI */ 52 lis 6,0xfee00000@ha /* CONFIG_DATA of PCI */ 79 lis 1,BAT123@ha 103 lis 8,edata@ha 105 lis 9,end@ha 115 lis 1,_start@ha 117 addis 1,1,0x100000@ha 142 andis. 3,3,0xfffe0000@ha /* BAT_EPI */ [all …]
|
| /netbsd/src/sys/arch/sgimips/hpc/ |
| D | hpc.c | 398 struct hpc_attach_args ha; in hpc_attach() local 512 MIPS_PHYS_TO_KSEG1(sc->sc_base), ha.hpc_eeprom, in hpc_attach() 513 sizeof(ha.hpc_eeprom)); in hpc_attach() 520 ha.ha_name = hd->hd_name; in hpc_attach() 521 ha.ha_devoff = hd->hd_devoff; in hpc_attach() 522 ha.ha_dmaoff = hd->hd_dmaoff; in hpc_attach() 523 ha.ha_irq = hd->hd_irq; in hpc_attach() 526 ha.ha_st = normal_memt; in hpc_attach() 528 BUS_SPACE_MAP_LINEAR, &ha.ha_sh) != 0) in hpc_attach() 530 ha.ha_dmat = &sgimips_default_bus_dma_tag; in hpc_attach() [all …]
|
| /netbsd/src/sys/arch/x68k/stand/xxboot/ |
| D | bootmain.c | 77 int ha; in get_scsi_host_adapter() local 96 ha = (X68K_BOOT_SCSIIF_SPC << 4) | 0; in get_scsi_host_adapter() 98 ha = (X68K_BOOT_SCSIIF_MHA << 4) | 0; in get_scsi_host_adapter() 104 ha = (X68K_BOOT_SCSIIF_SPC << 4) | 1; in get_scsi_host_adapter() 110 return ha; in get_scsi_host_adapter() 205 int major, ha, part; in bootmain() local 206 ha = get_scsi_host_adapter(bootdevstr); in bootmain() 215 bootdev = X68K_MAKESCSIBOOTDEV(major, ha >> 4, ha & 15, in bootmain()
|
| /netbsd/src/sys/arch/x68k/stand/libsa/ |
| D | devopen.c | 49 devparse(const char *fname, int *ha, int *dev, int *unit, int *part, in devparse() argument 58 *ha = (X68K_BOOT_SCSIIF_SPC << 4) | 0; in devparse() 61 *ha = (X68K_BOOT_SCSIIF_SPC << 4) | 1; in devparse() 64 *ha = (X68K_BOOT_SCSIIF_MHA << 4) | 0; in devparse() 67 *ha = 0; in devparse() 112 int ha, dev, unit, part; in devopen() local 115 error = devparse(fname, &ha, &dev, &unit, &part, file); in devopen()
|
| /netbsd/src/sys/dev/spi/ |
| D | mcp23xxxgpio_spi.c | 86 #define OP_READ(ha) (0x41 | ((ha) << 1)) argument 87 #define OP_WRITE(ha) (0x40 | ((ha) << 1)) argument 191 int bank, nchips, error, ha; in mcpgpio_spi_attach() local 279 for (bank = 0; spi_present_mask != 0; spi_present_mask &= ~__BIT(ha)) { in mcpgpio_spi_attach() 282 ha = ffs32(spi_present_mask) - 1; in mcpgpio_spi_attach() 284 ssc->sc_ha[bank++] = ha; in mcpgpio_spi_attach() 286 ssc->sc_ha[bank++] = ha; in mcpgpio_spi_attach() 290 ha_first, ha_last, ha); in mcpgpio_spi_attach()
|
| /netbsd/src/sys/arch/x68k/stand/boot_ufs/ |
| D | bootmain.c | 161 int ha; local 180 ha = (X68K_BOOT_SCSIIF_SPC << 4) | 0; 185 ha = (X68K_BOOT_SCSIIF_MHA << 4) | 0; 193 ha = (X68K_BOOT_SCSIIF_SPC << 4) | 1; 203 return ha; 289 int part, ha; in bootufs() local 300 ha = get_scsi_host_adapter(); in bootufs() 302 ha = get_scsi_host_adapter(bootdevstr); in bootufs() 306 bootdev = X68K_MAKESCSIBOOTDEV(X68K_MAJOR_SD, ha >> 4, ha & 15, in bootufs()
|
| /netbsd/src/external/bsd/file/dist/magic/magdir/ |
| D | ringdove | 6 0 regex/128l ha:rnd-menu-v[0-9]+[\ \t\r\n]*[{] librnd menu system (lihata) 7 0 regex/128l ha:rnd-menu-patch-v[0-9]+[\ \t\r\n]*[{] librnd menu patch (lihata) 8 0 regex/128l ha:coraleda-project-v[0-9]+[\ \t\r\n]*[{] CoralEDA/Ringdove p… 9 0 regex/128l ha:ringdove-project-v[0-9]+[\ \t\r\n]*[{] Ringdove project fi… 12 0 regex/128l ha:pcb-rnd-board-v[0-9]+[\ \t\r\n]*[{] pcb-rnd board file (lihata) 14 0 regex/128l ha:pcb-rnd-buffer-v[0-9]+[\ \t\r\n]*[{] pcb-rnd paste buffer content … 16 0 regex/128l ha:pcb-rnd-drc-query-v[0-9]+[\ \t\r\n]*[{] pcb-rnd drc query s… 18 0 regex/128l ha:pcb-rnd-log-v[0-9]+[\ \t\r\n]*[{] pcb-rnd message log dump (lih… 19 0 regex/128l ha:pcb-rnd-padstack-v[0-9]+[\ \t\r\n]*[{] pcb-rnd padstack (l… 27 0 regex/128l ha:std_devmap.v[0-9]+[\ \t\r\n]*[{] sch-rnd devmap (device mappin… [all …]
|