HomeSort by: relevance | last modified time | path
    Searched refs:ha (Results 1 - 25 of 136) sorted by relevancy

1 2 3 4 5 6

  /src/sys/arch/news68k/dev/
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...]
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,
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);
  /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 */
85 ha -= DESW(MAX_EXP/2+88); hb -= DESW(MAX_EXP/2+88)
    [all...]
  /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);
hilms.c 80 struct hil_attach_args *ha = aux; local in function:hilmsprobe
82 if (ha->ha_type != HIL_DEVICE_MOUSE)
89 if (ha->ha_infolen > 1 && (ha->ha_info[1] & HIL_AXMASK) == 0)
99 struct hil_attach_args *ha = aux; local in function:hilmsattach
104 sc->hd_code = ha->ha_code;
105 sc->hd_type = ha->ha_type;
106 sc->hd_infolen = ha->ha_infolen;
107 memcpy(sc->hd_info, ha->ha_info, ha->ha_infolen)
    [all...]
  /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/arch/powerpc/oea/
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...]
  /src/sys/arch/newsmips/dev/
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...]
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,
  /src/sys/arch/hp300/dev/
hpib.c 135 struct hpibdev_attach_args *ha = aux; local in function:hpibbusattach
141 sc->sc_ops = ha->ha_ops;
142 sc->sc_type = ha->ha_type; /* XXX */
143 sc->sc_ba = ha->ha_ba;
144 *(ha->ha_softcpp) = sc; /* XXX */
166 struct hpibbus_attach_args ha; local in function:hpibbus_attach_children
189 ha.ha_id = id;
190 ha.ha_slave = slave;
191 ha.ha_punit = punit;
192 config_found(sc->sc_dev, &ha, hpibbusprint
201 struct hpibbus_attach_args *ha = aux; local in function:hpibbussubmatch
216 struct hpibbus_attach_args *ha = aux; local in function:hpibbusprint
    [all...]
  /src/sys/arch/sandpoint/sandpoint/
locore.S 93 lis 7,_C_LABEL(startsym)@ha
96 lis 7,_C_LABEL(endsym)@ha
100 lis 4,_C_LABEL(end)@ha
106 lis 8,edata@ha
108 lis 9,end@ha
119 lis 3,__start@ha
  /src/sys/arch/mvmeppc/include/
asm.h 30 #define LDCONST(r,v) lis r,v@ha ; addi r,r,v@l
31 #define LDVAR(r,a) lis r,a@ha ; lwz r,a@l(r)
  /src/usr.sbin/sysinst/arch/alpha/
msg.md.es 44 {Si ha iniciado desde disquette, ahora deber�a retirar el disco.
  /src/usr.sbin/sysinst/arch/amiga/
msg.md.es 42 {Si ha iniciado desde disquette, ahora deber�a retirar el disco.
  /src/usr.sbin/sysinst/arch/emips/
msg.md.es 43 {Si ha iniciado desde disquette, ahora deberia retirar el disco.
  /src/usr.sbin/sysinst/arch/mipsco/
msg.md.es 43 {Si ha iniciado desde disquette, ahora deberia retirar el disco.
  /src/usr.sbin/sysinst/arch/newsmips/
msg.md.es 44 {Si ha iniciado desde disquette, ahora deber�a retirar el disco.
  /src/usr.sbin/sysinst/arch/vax/
msg.md.es 44 {Si ha iniciado desde disquette, ahora deber�a retirar el disco.
  /src/sys/arch/evbppc/ev64260/
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...]
  /src/sys/arch/evbppc/obs405/
obs600_locore.S 82 lis %r3, _C_LABEL(_edata)-4@ha
85 lis %r8, _C_LABEL(end)@ha
95 lis %r7, _C_LABEL(startsym)@ha
98 lis %r7, _C_LABEL(endsym)@ha
111 lis %r3, __start@ha
  /src/sys/arch/x68k/stand/xxboot/
bootmain.c 77 int ha; local in function:get_scsi_host_adapter
96 ha = (X68K_BOOT_SCSIIF_SPC << 4) | 0;
98 ha = (X68K_BOOT_SCSIIF_MHA << 4) | 0;
104 ha = (X68K_BOOT_SCSIIF_SPC << 4) | 1;
110 return ha;
205 int major, ha, part; local in function:bootmain
206 ha = get_scsi_host_adapter(bootdevstr);
215 bootdev = X68K_MAKESCSIBOOTDEV(major, ha >> 4, ha & 15,

Completed in 20 milliseconds

1 2 3 4 5 6