/src/sys/arch/news68k/dev/ |
mkclock_hb.c | 62 struct hb_attach_args *ha = aux; local in function:mkclock_hb_match 69 if (strcmp(ha->ha_name, mkclock_cd.cd_name)) 72 ha->ha_size = MK48T02_CLKSZ; 83 struct hb_attach_args *ha = aux; local in function:mkclock_hb_attach 86 sc->sc_bst = ha->ha_bust; 87 if (bus_space_map(sc->sc_bst, (bus_addr_t)ha->ha_address, ha->ha_size,
|
hb.c | 68 struct hb_attach_args ha; local in function:hb_attach 71 memset(&ha, 0, sizeof(ha)); 73 config_search(self, &ha, 80 struct hb_attach_args *ha = aux; local in function:hb_search 82 ha->ha_name = cf->cf_name; 83 ha->ha_address = cf->cf_addr; 84 ha->ha_ipl = cf->cf_ipl; 85 ha->ha_vect = cf->cf_vect; 88 ha->ha_bust = ISIIOPA(ha->ha_address) 104 struct hb_attach_args *ha = args; local in function:hb_print [all...] |
kbc.c | 58 struct hb_attach_args *ha = aux; local in function:kbc_match 61 if (strcmp(ha->ha_name, "kbc")) 65 if (ha->ha_address == (u_int)-1) 68 addr = ha->ha_address; /* XXX */ 79 struct hb_attach_args *ha = aux; local in function:kbc_attach 81 bus_space_tag_t bt = ha->ha_bust; 84 if (bus_space_map(bt, ha->ha_address, KBC_SIZE, 0, &bh) != 0) { 93 ka.ka_ipl = ha->ha_ipl;
|
timer_hb.c | 82 struct hb_attach_args *ha = aux; local in function:timer_hb_match 89 if (strcmp(ha->ha_name, timer_cd.cd_name)) 92 if (ha->ha_ipl == -1) 93 ha->ha_ipl = TIMER_LEVEL; 95 ha->ha_size = TIMER_SIZE; 105 struct hb_attach_args *ha = aux; local in function:timer_hb_attach 107 if (ha->ha_ipl != TIMER_LEVEL) 110 ctrl_timer = (uint8_t *)(ha->ha_address); /* XXX needs bus_space */ 117 vec_set_entry(VECI_INTRAV0 + ha->ha_ipl, _isr_clock);
|
if_le.c | 134 struct hb_attach_args *ha = aux; local in function:le_match 137 if (strcmp(ha->ha_name, "le")) 140 addr = (ha->ha_address); 153 struct hb_attach_args *ha = aux; local in function:le_attach 157 lesc->sc_r1 = (void *)(ha->ha_address); 159 if (ISIIOPA(ha->ha_address)) {
|
kb_hb.c | 67 struct hb_attach_args *ha = aux; local in function:kb_hb_match 70 if (strcmp(ha->ha_name, "kb")) 74 if (ha->ha_address == (u_int)-1) 77 addr = (ha->ha_address); /* XXX */ 89 struct hb_attach_args *ha = aux; local in function:kb_hb_attach 90 bus_space_tag_t bt = ha->ha_bust; 97 if (bus_space_map(bt, ha->ha_address, KB_SIZE, 0, &bh) != 0) { 109 ipl = ha->ha_ipl;
|
ms_hb.c | 96 struct hb_attach_args *ha = aux; local in function:ms_hb_match 99 if (strcmp(ha->ha_name, "ms")) 103 if (ha->ha_address == (u_int)-1) 106 addr = ha->ha_address; /* XXX */ 118 struct hb_attach_args *ha = aux; local in function:ms_hb_attach 119 bus_space_tag_t bt = ha->ha_bust; 125 if (bus_space_map(bt, ha->ha_address, MS_SIZE, 0, &bh) != 0) { 135 ipl = ha->ha_ipl;
|
/src/sys/arch/newsmips/dev/ |
mkclock_hb.c | 60 struct hb_attach_args *ha = aux; local in function:mkclock_hb_match 67 if (strcmp(ha->ha_name, mkclock_cd.cd_name)) 79 struct hb_attach_args *ha = aux; local in function:mkclock_hb_attach 82 if (bus_space_map(sc->sc_bst, (bus_addr_t)ha->ha_addr, MK48T02_CLKSZ,
|
hb.c | 44 struct hb_attach_args ha; local in function:hb_attach 50 memset(&ha, 0, sizeof(ha)); 56 config_search(self, &ha, 63 struct hb_attach_args *ha = aux; local in function:hb_search 65 ha->ha_name = cf->cf_name; 66 ha->ha_addr = cf->cf_addr; 67 ha->ha_level = cf->cf_level; 69 if (config_probe(parent, cf, ha)) 70 config_attach(parent, cf, ha, hb_print, CFARGS_NONE) 82 struct hb_attach_args *ha = args; local in function:hb_print [all...] |
if_le.c | 126 struct hb_attach_args *ha = aux; local in function:le_match 128 if (strcmp(ha->ha_name, "le")) 131 if (hb_badaddr((void *)ha->ha_addr, 1)) /* XXX */ 142 struct hb_attach_args *ha = aux; local in function:le_attach 147 intlevel = ha->ha_level; 154 switch (ha->ha_addr) { 177 lesc->sc_r1 = (void *)ha->ha_addr;
|
/src/lib/libm/src/ |
e_hypot.c | 57 int32_t j,k,ha,hb; local in function:__ieee754_hypot 59 GET_HIGH_WORD(ha,x); 60 ha &= 0x7fffffff; 63 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} 64 SET_HIGH_WORD(a,ha); /* a <- |a| */ 66 if((ha-hb)>0x3c00000) {return a+b;} /* x/y > 2**60 */ 68 if(ha > 0x5f300000) { /* a>2**500 */ 69 if(ha >= 0x7ff00000) { /* Inf or NaN * [all...] |
e_hypotf.c | 28 int32_t j,k,ha,hb; local in function:__ieee754_hypotf 30 GET_FLOAT_WORD(ha,x); 31 ha &= 0x7fffffff; 34 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} 35 SET_FLOAT_WORD(a,ha); /* a <- |a| */ 37 if((ha-hb)>0xf000000) {return a+b;} /* x/y > 2**30 */ 39 if(ha > 0x58800000) { /* a>2**50 */ 40 if(ha >= 0x7f800000) { /* Inf or NaN * [all...] |
e_hypotl.c | 61 int32_t j,k,ha,hb; local in function:hypotl 63 GET_HIGH_WORD(ha,x); 64 ha &= 0x7fff; 67 if(hb > ha) {a=y;b=x;j=ha; ha=hb;hb=j;} else {a=x;b=y;} 70 if((ha-hb)>DESW(MANT_DIG+7)) {return a+b;} /* x/y > 2**(MANT_DIG+7) */ 72 if(ha > ESW(MAX_EXP/2-12)) { /* a>2**(MAX_EXP/2-12) */ 73 if(ha >= ESW(MAX_EXP)) { /* Inf or NaN */ 84 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88) [all...] |
s_fma.c | 153 double ha, hb, la, lb, p, q; local in function:dd_mul 156 ha = a - p; 157 ha += p; 158 la = a - ha; 165 p = ha * hb; 166 q = ha * lb + la * hb;
|
s_fmal.c | 146 long double ha, hb, la, lb, p, q; local in function:dd_mul 149 ha = a - p; 150 ha += p; 151 la = a - ha; 158 p = ha * hb; 159 q = ha * lb + la * hb;
|
/src/sys/arch/hpcsh/dev/hd64461/ |
hd64461.c | 96 struct hd64461_attach_args ha; local in function:hd64461_attach 128 ha.ha_module_id = i; 129 config_found(self, &ha, hd64461_print, CFARGS_NONE); 140 struct hd64461_attach_args *ha = aux; local in function:hd64461_print 144 hd64461_modules[ha->ha_module_id].name, pnp);
|
hd64461uart.c | 159 struct hd64461_attach_args *ha = aux; local in function:hd64461uart_match 161 return ha->ha_module_id == HD64461_MODULE_UART; 167 struct hd64461_attach_args *ha = aux; local in function:hd64461uart_attach 176 sc->sc_module_id = ha->ha_module_id;
|
/src/sys/arch/hpcsh/dev/hd64465/ |
hd64465.c | 95 struct hd64465_attach_args ha; local in function:hd64465_attach 122 ha.ha_module_id = i; 123 config_found(self, &ha, hd64465_print, CFARGS_NONE); 130 struct hd64465_attach_args *ha = aux; local in function:hd64465_print 134 hd64465_modules[ha->ha_module_id].name, pnp);
|
hd64465uart.c | 143 struct hd64465_attach_args *ha = aux; local in function:hd64465uart_match 145 return (ha->ha_module_id == HD64465_MODULE_UART); 151 struct hd64465_attach_args *ha = aux; local in function:hd64465uart_attach 159 sc->sc_module_id = ha->ha_module_id;
|
/src/sys/arch/sgimips/hpc/ |
button.c | 74 struct hpc_attach_args *ha = aux; local in function:button_match 76 if (strcmp(ha->ha_name, match->cf_name) != 0)
|
pckbc_hpc.c | 74 struct hpc_attach_args *ha = aux; local in function:pckbc_hpc_match 76 if (strcmp(ha->ha_name, cf->cf_name) == 0)
|
/src/sys/arch/x68k/stand/libsa/ |
devopen.c | 42 * [ha@]<dev><unit><part>:<file> 43 * ha - host adaptor ("spc0", "spc1", "mha0") 49 devparse(const char *fname, int *ha, int *dev, int *unit, int *part, 58 *ha = (X68K_BOOT_SCSIIF_SPC << 4) | 0; 61 *ha = (X68K_BOOT_SCSIIF_SPC << 4) | 1; 64 *ha = (X68K_BOOT_SCSIIF_MHA << 4) | 0; 67 *ha = 0; 112 int ha, dev, unit, part; local in function:devopen 115 error = devparse(fname, &ha, &dev, &unit, &part, file);
|
/src/sys/dev/hil/ |
hilid.c | 59 struct hil_attach_args *ha = aux; local in function:hilidprobe 61 if (ha->ha_type != HIL_DEVICE_IDMODULE) 72 struct hil_attach_args *ha = aux; local in function:hilidattach 76 sc->hd_code = ha->ha_code; 77 sc->hd_type = ha->ha_type; 78 sc->hd_infolen = ha->ha_infolen; 79 memcpy(sc->hd_info, ha->ha_info, ha->ha_infolen);
|
/src/sys/arch/hpcarm/dev/ |
ipaq_lcd.c | 101 struct hpcfb_attach_args ha; local in function:ipaqlcd_attach 116 ha.ha_console = console_flag; 117 ha.ha_accessops = &ipaqlcd_ha; 118 ha.ha_accessctx = sc; 119 ha.ha_curfbconf = 0; 120 ha.ha_nfbconf = 1; 121 ha.ha_fbconflist = &sc->sc_fbconf; 122 ha.ha_curdspconf = 0; 123 ha.ha_ndspconf = 1; 124 ha.ha_dspconflist = &sc->sc_dspconf [all...] |
sed_saip.c | 124 struct hpcfb_attach_args ha; local in function:sed1356_attach 171 ha.ha_console = console; 172 ha.ha_accessops = &sed1356_ha; 173 ha.ha_accessctx = sc; 174 ha.ha_curfbconf = 0; 175 ha.ha_nfbconf = 1; 176 ha.ha_fbconflist = &sc->sc_fbconf; 177 ha.ha_curdspconf = 0; 178 ha.ha_ndspconf = 1; 179 ha.ha_dspconflist = &sc->sc_dspconf [all...] |