Home
last modified time | relevance | path

Searched full:hv (Results 1 – 25 of 136) sorted by relevance

123456

/freebsd/lib/libopenbsd/
H A Dohash.c27 uint32_t hv; member
100 i = h->t[j].hv % ns; in ohash_resize()
101 incr = ((h->t[j].hv % (ns - 2)) & ~1) + 1; in ohash_resize()
107 n[i].hv = h->t[j].hv; in ohash_resize()
224 uint32_t hv) in ohash_lookup_interval() argument
233 i = hv % h->size; in ohash_lookup_interval()
234 incr = ((hv % (h->size-2)) & ~1) + 1; in ohash_lookup_interval()
242 } else if (h->t[i].hv == hv && in ohash_lookup_interval()
247 h->t[empty].hv = hv; in ohash_lookup_interval()
266 h->t[i].hv = hv; in ohash_lookup_interval()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/arm/tegra/
H A Dnvidia,tegra186-pmc.txt62 hdmi-dp0 hdmi-dp1 pex-cntrl sdmmc2-hv
65 dsif spi ufs dmic-hv
66 edp sdmmc1-hv sdmmc3-hv conn
67 audio-hv ao-hv
82 for ao-hv. Following pads have software configurable signaling
83 voltages: sdmmc2-hv, dmic-hv, sdmmc1-hv, sdmmc3-hv, audio-hv,
84 ao-hv.
98 pins = "sdmmc1-hv";
103 pins = "sdmmc1-hv";
H A Dnvidia,tegra186-pmc.yaml107 hdmi-dp0, hdmi-dp1, pex-cntrl, sdmmc2-hv, sdmmc4, cam, dsib,
108 dsic, dsid, csic, csid, csie, dsif, spi, ufs, dmic-hv, edp,
109 sdmmc1-hv, sdmmc3-hv, conn, audio-hv, ao-hv
119 spi, ufs, csig, csih, edp, sdmmc1-hv, sdmmc3-hv, conn,
120 audio-hv, ao-hv
148 except for ao-hv. Following pads have software configurable
149 signaling voltages: sdmmc2-hv, dmic-hv, sdmmc1-hv, sdmmc3-hv,
150 audio-hv, ao-hv.
190 pins = "sdmmc1-hv";
195 pins = "sdmmc1-hv";
/freebsd/contrib/mandoc/
H A Dcompat_ohash.c29 uint32_t hv; member
102 i = h->t[j].hv % ns; in ohash_resize()
103 incr = ((h->t[j].hv % (ns - 2)) & ~1) + 1; in ohash_resize()
109 n[i].hv = h->t[j].hv; in ohash_resize()
226 uint32_t hv) in ohash_lookup_interval() argument
235 i = hv % h->size; in ohash_lookup_interval()
236 incr = ((hv % (h->size-2)) & ~1) + 1; in ohash_lookup_interval()
244 } else if (h->t[i].hv == hv && in ohash_lookup_interval()
249 h->t[empty].hv = hv; in ohash_lookup_interval()
268 h->t[i].hv = hv; in ohash_lookup_interval()
[all …]
H A Dmandoc_xr.c72 uint32_t hv; in mandoc_xr_add() local
91 hv = ohash_interval(xr->hashkey, &pend); in mandoc_xr_add()
92 slot = ohash_lookup_memory(xr_hash, xr->hashkey, tsz, hv); in mandoc_xr_add()
/freebsd/contrib/sendmail/src/
H A Dratectrl.c179 unsigned int hv; local
187 hv = 0xABC3D20F;
210 hv = (hv << 5) ^ (hv >> 23) ^ *p;
211 hv = (hv ^ (hv >> 16));
217 hv += (c<<11) ^ (c>>1);
218 hv ^= (d<<14) + (d<<7) + (d<<4) + d;
222 hv = (hv << 4) + *p;
223 d = hv & 0xf0000000;
226 hv ^= (d >> 24);
227 hv ^= d;
[all …]
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_state.c1033 u_int hv; in ipf_state_insert() local
1050 hv = is->is_hv % softs->ipf_state_size; in ipf_state_insert()
1051 /* TRACE is, hv */ in ipf_state_insert()
1052 is->is_hv = hv; in ipf_state_insert()
1096 if (softs->ipf_state_table[hv] != NULL) in ipf_state_insert()
1097 softs->ipf_state_table[hv]->is_phnext = &is->is_hnext; in ipf_state_insert()
1100 is->is_phnext = softs->ipf_state_table + hv; in ipf_state_insert()
1101 is->is_hnext = softs->ipf_state_table[hv]; in ipf_state_insert()
1102 softs->ipf_state_table[hv] = is; in ipf_state_insert()
1103 softs->ipf_state_stats.iss_bucketlen[hv]++; in ipf_state_insert()
[all …]
H A Dip_sync.c645 u_int hv; in ipf_sync_state() local
648 hv = sp->sm_num & (softs->ipf_sync_state_tab_sz - 1); in ipf_sync_state()
702 sl->sl_pnext = softs->syncstatetab + hv; in ipf_sync_state()
703 sl->sl_next = softs->syncstatetab[hv]; in ipf_sync_state()
704 if (softs->syncstatetab[hv] != NULL) in ipf_sync_state()
705 softs->syncstatetab[hv]->sl_pnext = &sl->sl_next; in ipf_sync_state()
706 softs->syncstatetab[hv] = sl; in ipf_sync_state()
728 for (sl = softs->syncstatetab[hv]; (sl != NULL); in ipf_sync_state()
872 u_int hv = 0; in ipf_sync_nat() local
908 sl->sl_pnext = softs->syncnattab + hv; in ipf_sync_nat()
[all …]
H A Dip_nat6.c210 u_int hv; in ipf_nat6_addrdr() local
217 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_rdrrules_sz); in ipf_nat6_addrdr()
223 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_rdrrules_sz); in ipf_nat6_addrdr()
226 hv = 0; in ipf_nat6_addrdr()
231 np = softn->ipf_nat_rdr_rules + hv; in ipf_nat6_addrdr()
236 n->in_hv[0] = hv; in ipf_nat6_addrdr()
257 u_int hv; in ipf_nat6_addmap() local
264 hv = NAT_HASH_FN6(&j, 0, softn->ipf_nat_maprules_sz); in ipf_nat6_addmap()
267 hv = 0; in ipf_nat6_addmap()
272 np = softn->ipf_nat_map_rules + hv; in ipf_nat6_addmap()
[all …]
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/
H A Daead_aes256gcm_aesni.c425 const __m128i hv = hv_; \
444 MULREDUCE4(rev, hv, h2v, h3v, h4v, temp3, temp2, temp1, temp0, accv_); \
445 MULREDUCE4(rev, hv, h2v, h3v, h4v, temp7, temp6, temp5, temp4, accv_); \
453 const __m128i hv = hv_; \
461 MULREDUCE4(rev, hv, h2v, h3v, h4v, in3, in2, in1, in0, accv_); \
462 MULREDUCE4(rev, hv, h2v, h3v, h4v, in7, in6, in5, in4, accv_); \
515 __m128i Hv, H2v, H3v, H4v, accv; in crypto_aead_aes256gcm_encrypt_detached_afternm() local
541 Hv = _mm_shuffle_epi8(_mm_load_si128((const __m128i *) H), rev); in crypto_aead_aes256gcm_encrypt_detached_afternm()
542 _mm_store_si128((__m128i *) H, Hv); in crypto_aead_aes256gcm_encrypt_detached_afternm()
543 H2v = mulv(Hv, Hv); in crypto_aead_aes256gcm_encrypt_detached_afternm()
[all …]
/freebsd/sbin/ipf/libipf/
H A Dprinthostmap.c13 printhostmap(hostmap_t *hmp, u_int hv) in printhostmap() argument
26 PRINTF(" hv = %u", hv); in printhostmap()
H A Dprinthashnode.c16 u_int hv; local
22 hv = IPE_V4_HASH_FN(ipe.ipe_addr.i6[0], ipe.ipe_mask.i6[0],
43 PRINTF("\t%d\tAddress: %s", hv, str);
58 PRINTF("\t%d\tAddress: %s", hv,
/freebsd/sys/contrib/device-tree/Bindings/powerpc/
H A Dibm,powerpc-cpu-features.txt101 bit 2 - HV (hypervisor state)
110 - hv-support
118 This property describes the HV privilege support required to enable the
153 This property exists when the hv-support property HFSCR bit is set. This
227 hv-support = <0>;
234 hv-support = <0>;
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/
H A Dtegra210-p2571.dts22 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
31 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
40 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
49 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
58 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
312 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
321 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
482 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
491 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
500 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
[all …]
H A Dtegra210-p2595.dtsi21 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
30 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
39 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
48 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
57 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
311 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
320 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
476 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
485 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
494 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
[all …]
H A Dtegra210-p2597.dtsi55 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
64 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
73 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
82 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
91 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
335 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
344 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
502 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
511 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
520 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
[all …]
H A Dtegra210-p2894.dtsi37 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
46 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
55 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
64 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
73 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
326 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
335 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
498 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
507 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
516 nvidia,io-hv
[all...]
H A Dtegra210-smaug.dts83 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
92 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
101 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
110 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
119 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
368 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
377 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
537 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
546 nvidia,io-hv = <TEGRA_PIN_DISABLE>;
555 nvidia,io-hv = <TEGRA_PIN_ENABLE>;
[all …]
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/
H A Dinterlaken-lac.txt54 "fsl,interlaken-lac-hv". This node represents the protected
58 - fsl,non-hv-node
59 Usage: required in "fsl,interlaken-lac-hv"
71 Usage: required in non-hv node only
82 lac-hv@228000 {
83 compatible = "fsl,interlaken-lac-hv"
85 fsl,non-hv-node = <&lac>;
/freebsd/sys/contrib/device-tree/Bindings/soc/tegra/
H A Dnvidia,tegra20-pmc.yaml273 hsic, hv, lvds, mipi-bias, nand, pex-bias, pex-clk1, pex-clk2,
279 audio, audio-hv, cam, csia, csib, csic, csid, csie, csif, dbg,
282 sdmmc1, sdmmc3, spi, spi-hv, uart, usb0, usb1, usb2, usb3, usb-bias
312 audio, audio-hv, cam, dbg, dmic, gpio, pex-cntrl, sdmmc1, sdmmc3,
313 spi, spi-hv, uart
340 dsic, dsid, hdmi, hsic, hv, lvds, mipi-bias, nand,
358 enum: [ audio, audio-hv, cam, csia, csib, csic, csid, csie,
362 sdmmc3, spi, spi-hv, uart, usb0, usb1, usb2, usb3,
/freebsd/sys/contrib/device-tree/src/powerpc/fsl/
H A Dinterlaken-lac.dtsi41 lac-hv@228000 {
42 compatible = "fsl,interlaken-lac-hv";
44 fsl,non-hv-node = <&lac>;
/freebsd/sys/powerpc/ps3/
H A Dps3-hv-asm.awk1 # This script generates the PS3 hypervisor call stubs from an HV
2 # interface definition file. The PS3 HV calling convention is very
6 # Invoke like so: awk -f ps3-hv-asm.awk < ps3-hvcall.master > ps3-hvcall.S
/freebsd/sys/contrib/device-tree/src/arm/nvidia/
H A Dtegra114-tn7.dts105 regulator-name = "va-lcd-hv";
177 regulator-name = "vd-ts-hv";
185 regulator-name = "va-cam2-hv";
191 regulator-name = "va-sns-hv";
197 regulator-name = "va-cam1-hv";
/freebsd/sys/powerpc/pseries/
H A Dphyp-hvcall.S31 * Simple HV calls take the same arguments, with the same ABI, as this
51 * PFT HV calls take a special ABI (see PAPR 14.5.4.1)
54 * HV takes the same r3-r7, but returns values in r3, r4-r6
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_ccert_single_rsa.c105 unsigned char hv[64]; in cc_do_sign() local
110 memcpy(hv, data, hv_len); in cc_do_sign()
122 return zc->irsasign(hash_oid, hv, hv_len, zc->sk, data) ? sig_len : 0; in cc_do_sign()

123456