Symbol: hv
sys/arch/alpha/stand/netboot/if_prom.c
159
int hv, lv;
sys/arch/alpha/stand/netboot/if_prom.c
166
hv = dval(*enet_addr); enet_addr++;
sys/arch/alpha/stand/netboot/if_prom.c
170
if (hv == -1 || lv == -1) {
sys/arch/alpha/stand/netboot/if_prom.c
175
desc->myea[i] = (hv << 4) | lv;
sys/arch/dreamcast/dev/maple/mlcd.c
245
funcdef.s.hv ? "vert" : "horiz",
sys/arch/dreamcast/dev/maple/mlcd.c
54
hv : 1, /* 0: horizontal, 1: vertical */
sys/arch/hppa/hppa/machdep.c
667
pdc_model.hv = 0;
sys/arch/hppa/hppa/machdep.c
670
pdc_model.hv));
sys/arch/hppa/include/pdc.h
352
u_int hv : 4;
sys/arch/hppa/include/pdc.h
499
u_int hv[9]; /* 0x00: HV dependent */
sys/arch/powerpc/oea/altivec.c
318
[lv] "n"(LO_VEC), [hv] "n"(HI_VEC));
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
145
const struct hvec hv[] = {
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
150
hash_df(D->C, sizeof D->C, hv, arraycount(hv));
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
184
const struct hvec hv[] = {
sys/crypto/nist_hash_drbg/nist_hash_drbg.c
189
hash_df(D->C, sizeof D->C, hv, arraycount(hv));
sys/dev/pci/if_txp.c
1645
struct txp_hostvar *hv = sc->sc_hostvar;
sys/dev/pci/if_txp.c
1695
idx = le32toh(hv->hv_resp_read_idx);
sys/dev/pci/if_txp.c
1696
if (idx != le32toh(hv->hv_resp_write_idx)) {
sys/dev/pci/if_txp.c
1719
struct txp_hostvar *hv = sc->sc_hostvar;
sys/dev/pci/if_txp.c
1722
while (ridx != le32toh(hv->hv_resp_write_idx)) {
sys/dev/pci/if_txp.c
1739
ridx = le32toh(hv->hv_resp_read_idx);
sys/dev/pci/if_txp.c
1756
ridx = le32toh(hv->hv_resp_read_idx);
sys/dev/pci/if_txp.c
1757
hv->hv_resp_read_idx = le32toh(ridx);
sys/dev/pci/if_txp.c
1768
struct txp_hostvar *hv = sc->sc_hostvar;
sys/dev/pci/if_txp.c
1771
ridx = le32toh(hv->hv_resp_read_idx);
sys/dev/pci/if_txp.c
1783
hv->hv_resp_read_idx = htole32(ridx);
sys/dev/pci/if_txp.c
1786
hv->hv_resp_read_idx = htole32(ridx);
sys/dev/pci/if_txp.c
1792
struct txp_hostvar *hv = sc->sc_hostvar;
sys/dev/pci/if_txp.c
1797
ridx = le32toh(hv->hv_cmd_read_idx);
sys/dev/pci/if_txp.c
627
struct txp_hostvar *hv = sc->sc_hostvar;
sys/dev/pci/if_txp.c
652
if (hv->hv_rx_buf_write_idx == hv->hv_rx_buf_read_idx)
sys/dev/pci/if_txp.c
829
struct txp_hostvar *hv = sc->sc_hostvar;
sys/dev/pci/if_txp.c
834
end = TXP_OFFSET2IDX(le32toh(hv->hv_rx_buf_read_idx));
sys/dev/pci/if_txp.c
835
i = TXP_OFFSET2IDX(le32toh(hv->hv_rx_buf_write_idx));
sys/dev/pci/if_txp.c
885
hv->hv_rx_buf_write_idx = htole32(TXP_IDX2OFFSET(i));
usr.bin/config/hash.c
179
h = hv(h, *str++);
usr.bin/config/hash.c
190
h = hv(h, HASH2DELIM);
usr.bin/m4/lib/ohash.c
106
i = (unsigned int)(h->t[j].hv % ns);
usr.bin/m4/lib/ohash.c
107
incr = ((h->t[j].hv % (ns - 2)) & ~1) + 1;
usr.bin/m4/lib/ohash.c
113
n[i].hv = h->t[j].hv;
usr.bin/m4/lib/ohash.c
230
uint32_t hv)
usr.bin/m4/lib/ohash.c
239
i = hv % h->size;
usr.bin/m4/lib/ohash.c
240
incr = ((hv % (h->size-2)) & ~1) + 1;
usr.bin/m4/lib/ohash.c
248
} else if (h->t[i].hv == hv &&
usr.bin/m4/lib/ohash.c
253
h->t[empty].hv = hv;
usr.bin/m4/lib/ohash.c
272
h->t[i].hv = hv;
usr.bin/m4/lib/ohash.c
277
ohash_lookup_memory(struct ohash *h, const char *k, size_t size, uint32_t hv)
usr.bin/m4/lib/ohash.c
286
i = hv % h->size;
usr.bin/m4/lib/ohash.c
287
incr = ((hv % (h->size-2)) & ~1) + 1;
usr.bin/m4/lib/ohash.c
295
} else if (h->t[i].hv == hv &&
usr.bin/m4/lib/ohash.c
298
h->t[empty].hv = hv;
usr.bin/m4/lib/ohash.c
316
h->t[i].hv = hv;
usr.bin/m4/lib/ohash.c
33
uint32_t hv;
usr.bin/m4/lib/ohash.c
330
uint32_t hv;
usr.bin/m4/lib/ohash.c
332
hv = ohash_interval(s, e);
usr.bin/m4/lib/ohash.c
333
return ohash_lookup_interval(h, s, *e, hv);