Home
last modified time | relevance | path

Searched refs:hb (Results 1 – 21 of 21) sorted by relevance

/illumos-gate/usr/src/cmd/tcpd/
H A Dscaffold.c51 struct hostent_block *hb; local
59 if ((hb = (struct hostent_block *) malloc(sizeof(struct hostent_block)
64 memset((char *) &hb->host, 0, sizeof(hb->host));
65 hb->host.h_addrtype = hp->h_addrtype;;
66 hb->host.h_length = hp->h_length;
67 hb->host.h_addr_list = hb->addr_list;
68 hb->host.h_addr_list[count] = 0;
69 data = (char *) (hb->host.h_addr_list + count + 1);
72 hb->host.h_addr_list[count] = data + hp->h_length * count;
73 memcpy(hb->host.h_addr_list[count], addr, hp->h_length);
[all …]
/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_cplx_div_ix.c93 int hb, hc, hd, hw, i, j; local
107 hb = bb.i[0] & ~0x80000000;
142 if (hb >= 0x7fff0000) { /* a is inf or nan */
159 hb = (hb - 0x3fff0000) >> 16;
160 _Q_scl(&b, -hb);
162 hb -= (hw + hw);
167 hc += hb;
172 hd += hb;
H A D_D_cplx_div_ix.c101 int hb, hc, hd, hw, i, j; in _D_cplx_div_ix() local
113 hb = bb.i[0] & ~0x80000000; in _D_cplx_div_ix()
162 if (hb >= 0x7ff00000) { /* a is inf or nan */ in _D_cplx_div_ix()
177 hb = (hb - 0x38000000) >> 28; in _D_cplx_div_ix()
178 b = (b * scl[hb + 4].d) / r; in _D_cplx_div_ix()
179 hb -= (hw + hw); in _D_cplx_div_ix()
183 hc += hb; in _D_cplx_div_ix()
187 hd += hb; in _D_cplx_div_ix()
H A D_Q_cplx_div.c98 int ha, hb, hc, hd, hz, hw, hs, i, j; local
115 hb = bb.i[0] & ~0x80000000;
116 hz = (ha > hb)? ha : hb;
H A D_D_cplx_div.c91 int ha, hb, hc, hd, hz, hw, hs, i, j; in _D_cplx_div() local
108 hb = bb.i[0] & ~0x80000000; in _D_cplx_div()
109 hz = (ha > hb)? ha : hb; in _D_cplx_div()
/illumos-gate/usr/src/lib/fm/topo/modules/i86pc/hostbridge/
H A Dhb_i86pc.c39 tnode_t *hb; in hb_process() local
44 if ((hb = pcihostbridge_declare(mod, ptn, bn, hbi)) == NULL) in hb_process()
47 hb, PCI_BUS, PCI_BUS, 0, MAX_HB_BUSES, (void *)hbdid) < 0) { in hb_process()
48 topo_node_unbind(hb); in hb_process()
58 tnode_t *hb; in rc_process() local
64 if ((hb = pciexhostbridge_declare(mod, ptn, bn, hbi)) == NULL) in rc_process()
66 if ((rc = pciexrc_declare(mod, hb, bn, hbi)) == NULL) in rc_process()
70 topo_node_unbind(hb); in rc_process()
/illumos-gate/usr/src/cmd/eqn/
H A Dmatrix.c35 int nrow, ncol, i, j, k, hb, b, val[100]; in matrix() local
46 hb = b = 0; in matrix()
49 hb = max(hb, eht[lp[j]]-ebase[lp[j]]); in matrix()
53 if (dbg) printf(".\trow %d: b=%d, hb=%d\n", k, b, hb); in matrix()
57 eht[lp[j]] = b + hb; in matrix()
/illumos-gate/usr/src/cmd/hal/hald/
H A Dhald_runner.c426 HelperData *hb = (HelperData *)user_data; in call_notify() local
456 hb->cb(hb->d, exitt, return_code, in call_notify()
457 (gchar **)error->data, hb->data1, hb->data2); in call_notify()
459 g_object_unref (hb->d); in call_notify()
469 hb->cb(hb->d, HALD_RUN_FAILED, return_code, NULL, hb->data1, hb->data2); in call_notify()
471 g_object_unref (hb->d); in call_notify()
/illumos-gate/usr/src/uts/common/ipp/
H A Dippconf.c2134 int hb; in find_mod() local
2153 hb = hash(modname); in find_mod()
2154 rp = ipp_mod_byname[hb]; in find_mod()
2193 int hb; in alloc_mod() local
2204 hb = hash(modname); in alloc_mod()
2205 rpp = &ipp_mod_byname[hb]; in alloc_mod()
2278 int hb; in free_mod() local
2286 hb = hash(imp->ippm_name); in free_mod()
2287 rpp = &ipp_mod_byname[hb]; in free_mod()
2816 int hb; in find_action() local
[all …]
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/
H A DT.expr175 2 1 a hb
176 3 1 a hb
/illumos-gate/usr/src/uts/common/os/
H A Dvmem.c922 int hb; in vmem_canalloc() local
928 else if ((hb = highbit(size)) < VMEM_FREELISTS) in vmem_canalloc()
929 flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb)); in vmem_canalloc()
949 int hb, flist, resv; in vmem_xalloc() local
1004 hb = highbit(size); in vmem_xalloc()
1005 if ((vmp->vm_freemap >> hb) == 0 || in vmem_xalloc()
1006 hb == VMEM_FREELISTS || in vmem_xalloc()
1008 hb--; in vmem_xalloc()
1009 flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb)); in vmem_xalloc()
1276 int hb; in vmem_alloc() local
[all …]
/illumos-gate/usr/src/lib/fm/topo/modules/common/hostbridge/
H A Dhostbridge.c320 tnode_t *hb; in specific_hb_enum() local
336 if ((hb = pcihostbridge_declare(mod, pn, did_dinode(didp), imin)) in specific_hb_enum()
343 hb, PCI_BUS, PCI_BUS, bus, bus, didp) != 0) { in specific_hb_enum()
/illumos-gate/usr/src/lib/libadutils/common/
H A Dadutils.c261 uchar_t *binsid, b, hb; in adutils_txtsid2hexbinsid() local
346 hb = (b >> 4) & 0xF; in adutils_txtsid2hexbinsid()
347 *ecp++ = (hb <= 0x9 ? hb + '0' : hb - 10 + 'A'); in adutils_txtsid2hexbinsid()
348 hb = b & 0xF; in adutils_txtsid2hexbinsid()
349 *ecp++ = (hb <= 0x9 ? hb + '0' : hb - 10 + 'A'); in adutils_txtsid2hexbinsid()
/illumos-gate/usr/src/lib/fm/topo/modules/common/pcibus/
H A Dpcibus.c799 int rc, hb; in pciexbus_enum() local
809 hb = topo_node_instance(hbtn); in pciexbus_enum()
811 hb = rc; in pciexbus_enum()
821 if ((did_create(mp, pdn, 0, hb, rc, TRUST_BDF)) == NULL) in pciexbus_enum()
824 retval = pci_children_instantiate(mp, ptn, pdn, 0, hb, rc, in pciexbus_enum()
/illumos-gate/usr/src/lib/libumem/common/
H A Dvmem.c824 int hb, flist, resv; in vmem_xalloc() local
884 hb = highbit(size); in vmem_xalloc()
885 if ((vmp->vm_freemap >> hb) == 0 || in vmem_xalloc()
886 hb == VMEM_FREELISTS || in vmem_xalloc()
888 hb--; in vmem_xalloc()
889 flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb)); in vmem_xalloc()
1075 int hb; in vmem_alloc() local
1105 else if ((hb = highbit(size)) < VMEM_FREELISTS) in vmem_alloc()
1106 flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb)); in vmem_alloc()
/illumos-gate/usr/src/uts/common/io/scsi/adapters/smartpqi/
H A Dsmartpqi_hw.c60 uint32_t hb; in pqi_watchdog() local
65 hb = read_heartbeat_counter(s); in pqi_watchdog()
67 (s->s_last_heartbeat_count == hb)) { in pqi_watchdog()
77 s->s_last_heartbeat_count = hb; in pqi_watchdog()
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzap_micro.c1472 int hb; in zap_cursor_retrieve() local
1484 hb = zap_hashbits(zc->zc_zap); in zap_cursor_retrieve()
1485 zc->zc_hash = zc->zc_serialized << (64 - hb); in zap_cursor_retrieve()
1486 zc->zc_cd += zc->zc_serialized >> hb; in zap_cursor_retrieve()
/illumos-gate/usr/src/pkg/manifests/
H A Dsystem-data-terminfo.p5m76 hardlink path=usr/share/lib/terminfo/9/955-hb target=../t/tvi955-hb
1351 file path=usr/share/lib/terminfo/m/mime-hb
2170 file path=usr/share/lib/terminfo/t/tvi955-hb
/illumos-gate/usr/src/uts/common/io/bnx/570x/common/include/
H A D5706_reg.h13606 hb_reg_t hb; member
/illumos-gate/usr/src/data/terminfo/
H A Dtermcap.src7446 tvi955-hb|955-hb|televideo955 half-bright:\
13549 mime-hb|half bright mime1:\
H A Dterminfo.src8303 tvi955-hb|955-hb|televideo955 half-bright,
15242 mime-hb|half bright mime1,