Home
last modified time | relevance | path

Searched refs:h0 (Results 1 – 22 of 22) sorted by relevance

/freebsd-10-stable/crypto/openssh/
Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local
66 h0 = 0; in poly1305_auth()
83 h0 += t0 & 0x3ffffff; in poly1305_auth()
91 …t[0] = mul32x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x… in poly1305_auth()
92 …t[1] = mul32x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x… in poly1305_auth()
93 …t[2] = mul32x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x… in poly1305_auth()
94 …t[3] = mul32x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x… in poly1305_auth()
95 …t[4] = mul32x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x… in poly1305_auth()
97 h0 = (uint32_t)t[0] & 0x3ffffff; c = (t[0] >> 26); in poly1305_auth()
102 h0 += b * 5; in poly1305_auth()
[all …]
/freebsd-10-stable/crypto/openssl/crypto/sha/asm/
Dsha1-ia64.pl33 ($h0,$h1,$h2,$h3,$h4) = ("h0","h1","h2","h3","h4");
41 ($h0,$h1,$h2,$h3,$h4) = ("loc5","loc6","loc7","loc8","loc9");
249 { .mlx; ld4 $h0=[ctx],8
265 { .mmi; mov $A=$h0
287 { .mmb; add $h0=$h0,$A
293 { .mmi; st4 [ctx]=$h0,8
/freebsd-10-stable/sys/dev/patm/
Dif_patm_intr.c90 patm_fbq_write(struct patm_softc *sc, u_int queue, uint32_t h0, in patm_fbq_write() argument
94 queue, h0, p0, h1, p1); in patm_fbq_write()
95 patm_nor_write(sc, IDT_NOR_D0, h0); in patm_fbq_write()
270 uint32_t h0, h1; in patm_feed_sbufs() local
275 if ((v0 = mbp_alloc(sc->sbuf_pool, &p0, &h0)) == NULL) in patm_feed_sbufs()
282 h0 | MBUF_SHANDLE, (p0 + SMBUF_OFFSET), in patm_feed_sbufs()
298 uint32_t h0, h1; in patm_feed_vbufs() local
303 if ((v0 = mbp_alloc(sc->vbuf_pool, &p0, &h0)) == NULL) in patm_feed_vbufs()
310 h0 | MBUF_VHANDLE, (p0 + VMBUF_OFFSET), in patm_feed_vbufs()
/freebsd-10-stable/sys/gnu/fs/reiserfs/
Dreiserfs_hashes.c44 b0 = h0; \
53 h0 += b0; \
62 uint32_t h0, h1; in keyed_hash() local
67 h0 = k[0]; in keyed_hash()
153 return (h0 ^ h1); in keyed_hash()
/freebsd-10-stable/sys/fs/ext2fs/
Dext2_hash.c171 uint32_t h0, h1 = 0x12A3FE2D, h2 = 0x37ABE8F9; in ext2_legacy_hash() local
183 h0 = h2 + (h1 ^ (val * multi)); in ext2_legacy_hash()
184 if (h0 & 0x80000000) in ext2_legacy_hash()
185 h0 -= 0x7FFFFFFF; in ext2_legacy_hash()
187 h1 = h0; in ext2_legacy_hash()
/freebsd-10-stable/sys/dev/atkbdc/
Datkbdc.c107 bus_space_handle_t h0, bus_space_handle_t h1);
158 bus_space_handle_t h0; in atkbdc_configure() local
208 h0 = sparc64_fake_bustag(space, port0, tag); in atkbdc_configure()
209 bus_space_subregion(tag, h0, KBD_DATA_PORT, 1, &h0); in atkbdc_configure()
219 bus_space_map(tag, port0, IO_KBDSIZE, 0, &h0); in atkbdc_configure()
222 h0 = (bus_space_handle_t)port0; in atkbdc_configure()
246 return atkbdc_setup(atkbdc_softc[0], tag, h0, h1); in atkbdc_configure()
250 atkbdc_setup(atkbdc_softc_t *sc, bus_space_tag_t tag, bus_space_handle_t h0, in atkbdc_setup() argument
272 sc->ioh0 = h0; in atkbdc_setup()
/freebsd-10-stable/contrib/wpa/src/crypto/
Dfips_prf_openssl.c20 os_memcpy(&context.h0, state, 5 * 4); in sha1_transform()
22 os_memcpy(state, &context.h0, 5 * 4); in sha1_transform()
/freebsd-10-stable/crypto/openssl/crypto/sha/
Dsha_locl.h72 ll=(c)->h0; (void)HOST_l2c(ll,(s)); \
132 c->h0 = INIT_DATA_h0; in fips_md_init()
223 A = c->h0; in HASH_BLOCK_DATA_ORDER()
395 c->h0 = (c->h0 + E) & 0xffffffffL; in HASH_BLOCK_DATA_ORDER()
404 A = c->h0; in HASH_BLOCK_DATA_ORDER()
453 A = c->h0; in HASH_BLOCK_DATA_ORDER()
481 c->h0 = (c->h0 + A) & 0xffffffffL; in HASH_BLOCK_DATA_ORDER()
490 A = c->h0; in HASH_BLOCK_DATA_ORDER()
Dsha.h101 SHA_LONG h0, h1, h2, h3, h4; member
/freebsd-10-stable/lib/libmd/
Dsha0c.c108 c->h0=INIT_DATA_h0;
297 A=c->h0;
389 c->h0=(c->h0+E)&0xffffffffL;
398 A=c->h0;
443 l=c->h0; nl2c(l,cp);
Dsha1c.c135 c->h0=INIT_DATA_h0;
328 A=c->h0;
420 c->h0=(c->h0+E)&0xffffffffL;
429 A=c->h0;
479 l=c->h0; nl2c(l,cp);
Dsha.h74 u_int32_t h0, h1, h2, h3, h4; member
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
DHashing.h267 uint64_t h0, h1, h2, h3, h4, h5, h6; member
298 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1; in mix()
300 h0 ^= h6; in mix()
304 h4 = h0 + h5; in mix()
309 std::swap(h2, h0); in mix()
316 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize()
/freebsd-10-stable/contrib/file/magic/Magdir/
Dsccs18 # Further, you can't just say '\001h0', because the five-digit number
/freebsd-10-stable/crypto/openssl/crypto/evp/
De_aes_cbc_hmac_sha1.c348 pmac->u[0] |= key->md.h0 & mask; in aesni_cbc_hmac_sha1_cipher()
364 pmac->u[0] |= key->md.h0 & mask; in aesni_cbc_hmac_sha1_cipher()
376 pmac->u[0] |= key->md.h0 & mask; in aesni_cbc_hmac_sha1_cipher()
/freebsd-10-stable/sys/dev/drm2/radeon/
Dr600_cs.c1542 unsigned w0, unsigned h0, unsigned d0, unsigned nsamples, unsigned format, in r600_texture_size() argument
1556 h0 = r600_mip_minify(h0, 0); in r600_texture_size()
1564 height = r600_mip_minify(h0, i); in r600_texture_size()
1609 u32 dim, nfaces, llevel, blevel, w0, h0, d0; in r600_check_texture_resource() local
1641 h0 = G_038004_TEX_HEIGHT(word1) + 1; in r600_check_texture_resource()
1722 r600_texture_size(nfaces, blevel, llevel, w0, h0, d0, array_check.nsamples, format, in r600_check_texture_resource()
1728 w0, h0, pitch_align, height_align, in r600_check_texture_resource()
/freebsd-10-stable/contrib/tcsh/
Dsh.hist.c366 hashhist(struct wordent *h0) in hashhist() argument
369 struct wordent *firstWord = h0->next; in hashhist()
374 for (; h != h0; h = h->next) { in hashhist()
DPorted1055 CFLAGS : -h0,ansi,novector,float0 # for NEC SX-4
/freebsd-10-stable/contrib/gcc/config/i386/
Di386.md749 "test{b}\t%h0, %h0"
776 "cmp{b}\t{%1, %h0|%h0, %1}"
790 "cmp{b}\t{%1, %h0|%h0, %1}"
808 "cmp{b}\t{%h1, %h0|%h0, %h1}"
1815 "mov{b}\t{%b1, %h0|%h0, %b1}"
1825 "mov{b}\t{%b1, %h0|%h0, %b1}"
1836 "mov{b}\t{%h1, %h0|%h0, %h1}"
6414 return "inc{b}\t%h0";
6420 return "dec{b}\t%h0";
6424 return "add{b}\t{%2, %h0|%h0, %2}";
[all …]
/freebsd-10-stable/crypto/openssl/ssl/
Ds3_cbc.c328 l2n(sha1->h0, md_out); in tls1_sha1_final_raw()
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/
DAArch64RegisterInfo.td125 // b0-b31, h0-h31, s0-s31, d0-d31, q0-q31
/freebsd-10-stable/contrib/subversion/subversion/libsvn_fs_fs/
Dstructure-indexes344 h0 = fnv_1a([b0 b4 b8 ..]), ..., h3 = fnv_1a([b3 b7 b11 ..])