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

1 2 3 4 5

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/
poly1305_donna64.h 69 unsigned long long h0, h1, h2; local in function:poly1305_blocks
78 h1 = st->h[1];
92 h1 += (((t0 >> 44) | (t1 << 20)) & 0xfffffffffff);
97 MUL(d, h1, s2);
102 MUL(d, h1, r0);
107 MUL(d, h1, r1);
117 h1 = LO(d1) & 0xfffffffffff;
124 h1 += c;
131 st->h[1] = h1;
138 unsigned long long h0, h1, h2, c local in function:poly1305_finish
    [all...]
poly1305_donna32.h 62 unsigned long h0, h1, h2, h3, h4; local in function:poly1305_blocks
78 h1 = st->h[1];
86 h1 += (LOAD32_LE(m + 3) >> 2) & 0x3ffffff;
92 d0 = ((unsigned long long) h0 * r0) + ((unsigned long long) h1 * s4) +
95 d1 = ((unsigned long long) h0 * r1) + ((unsigned long long) h1 * r0) +
98 d2 = ((unsigned long long) h0 * r2) + ((unsigned long long) h1 * r1) +
101 d3 = ((unsigned long long) h0 * r3) + ((unsigned long long) h1 * r2) +
104 d4 = ((unsigned long long) h0 * r4) + ((unsigned long long) h1 * r3) +
113 h1 = (unsigned long) d1 & 0x3ffffff;
126 h1 += c
142 unsigned long h0, h1, h2, h3, h4, c; local in function:poly1305_finish
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
fe_frombytes_sandy2x.c 34 uint64_t h1 = load_3(s + 4) << 6; local in function:fe_frombytes
55 carry1 = h1 >> 25; h2 += carry1; h1 &= 0x1FFFFFF;
60 carry0 = h0 >> 26; h1 += carry0; h0 &= 0x3FFFFFF;
67 h[1] = h1;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/
fe.h 9 int64_t h1 = load_3(s + 4) << 6; local in function:fe25519_frombytes
33 carry1 = (h1 + (int64_t)(1L << 24)) >> 25;
35 h1 -= carry1 * ((uint64_t) 1L << 25);
47 h1 += carry0;
63 h[1] = (int32_t) h1;
103 int32_t h1 = f[1]; local in function:fe25519_reduce
118 q = (h1 + q) >> 25;
133 h1 += carry0;
135 carry1 = h1 >> 25;
137 h1 -= carry1 * ((uint32_t) 1L << 25)
    [all...]
  /src/tools/xz-include/
Makefile 20 CLEANFILES+= config.log config.status config.h libtool stamp-h1
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/fe_51/
fe.h 9 uint64_t h0, h1, h2, h3, h4; local in function:fe25519_frombytes
12 h1 = (LOAD64_LE(s + 6) >> 3) & mask;
18 h[1] = h1;
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_51.h 36 uint64_t h1 = f[1] + g[1]; local in function:fe25519_add
42 h[1] = h1;
56 uint64_t h0, h1, h2, h3, h4; local in function:fe25519_sub
59 h1 = g[1];
64 h1 += h0 >> 51;
66 h2 += h1 >> 51;
67 h1 &= mask;
76 h1 = (f[1] + 0xffffffffffffeULL) - h1;
82 h[1] = h1;
498 uint64_t h0, h1, h2, h3, h4; local in function:fe25519_scalar_product
    [all...]
ed25519_ref10_fe_25_5.h 44 int32_t h1 = f[1] + g[1]; local in function:fe25519_add
55 h[1] = h1;
82 int32_t h1 = f[1] - g[1]; local in function:fe25519_sub
93 h[1] = h1;
118 int32_t h1 = -f[1]; local in function:fe25519_neg
129 h[1] = h1;
510 int64_t h1 = f0g1 + f1g0 + f2g9_19 + f3g8_19 + f4g7_19 + f5g6_19 + f6g5_19 + local in function:fe25519_mul
543 |h1| <= (1.65*1.65*2^51*(1+1+19+19+19+19+19+19+19+19))
544 i.e. |h1| <= 1.7*2^59; narrower ranges for h3, h5, h7, h9
548 h1 += carry0
722 int64_t h1 = f0f1_2 + f2f9_38 + f3f8_38 + f4f7_38 + f5f6_38; local in function:fe25519_sq
894 int64_t h1 = f0f1_2 + f2f9_38 + f3f8_38 + f4f7_38 + f5f6_38; local in function:fe25519_sq2
996 int64_t h1 = f1 * sn; local in function:fe25519_scalar_product
    [all...]
  /src/lib/libwrap/
socket.c 155 char h1[NI_MAXHOST], h2[NI_MAXHOST]; local in function:sock_hostname
175 if (getnameinfo(sa, sa->sa_len, h1, sizeof(h1), NULL, 0,
254 if (STR_EQ(h1, h2)) {
266 tcpd_warn("host name/address mismatch: %s != %s", h1,
  /src/sys/ufs/ext2fs/
ext2fs_hash.c 142 uint32_t h0, h1 = 0x12A3FE2D, h2 = 0x37ABE8F9; local in function:ext2fs_legacy_hash
154 h0 = h2 + (h1 ^ (val * multi));
157 h2 = h1;
158 h1 = h0;
161 return h1 << 1;
  /src/usr.sbin/lpr/pac/
pac.c 397 const struct hent *h1, *h2; local in function:qucmp
400 h1 = *(const struct hent *const *)a;
403 r = h1->h_feetpages < h2->h_feetpages ?
404 -1 : h1->h_feetpages > h2->h_feetpages;
406 r = strcmp(h1->h_name, h2->h_name);
  /src/sys/arch/ia64/include/
bus.h 790 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
791 ia64_bus_space_copy_region_1((t), (h1), (o1), (h2), (o2), (c))
793 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
795 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), uint16_t, "bus addr 1"); \
797 ia64_bus_space_copy_region_2((t), (h1), (o1), (h2), (o2), (c)); \
800 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
802 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), uint32_t, "bus addr 1"); \
804 ia64_bus_space_copy_region_4((t), (h1), (o1), (h2), (o2), (c)); \
807 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c) \
809 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), uint64_t, "bus addr 1");
    [all...]
  /src/sys/arch/atari/include/
bus_funcs.h 115 #define __abs_copy(sz, t, h1, o1, h2, o2, cnt) \
116 (*(t)->__abs_opname(c,sz))(t, h1, o1, h2, o2, cnt)
118 #define __abs_copy(sz, t, h1, o1, h2, o2, cnt) do { \
119 memcpy((void*)(h2 + o2), (void *)(h1 + o1), sz * cnt); \
294 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
295 __abs_copy(1, (t), (h1), (o1), (h2), (o2), (c))
296 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
297 __abs_copy(2, (t), (h1), (o1), (h2), (o2), (c))
298 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
299 __abs_copy(4, (t), (h1), (o1), (h2), (o2), (c)
    [all...]
  /src/sys/arch/alpha/include/
bus_funcs.h 93 #define __abs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
95 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
97 (*(t)->__abs_opname(c,sz))((t)->abs_cookie, h1, o1, h2, o2, cnt); \
249 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
250 __abs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
251 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
252 __abs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
253 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
254 __abs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
255 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/dreamcast/include/
bus_funcs.h 93 #define __dbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
95 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
97 (*(t)->__dbs_opname(c,sz))((t)->dbs_cookie, h1, o1, h2, o2, cnt); \
237 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
238 __dbs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
239 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
240 __dbs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
241 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
242 __dbs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
243 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/evbsh3/include/
bus_funcs.h 106 #define __bs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
108 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
110 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt); \
292 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
293 __bs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
294 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
295 __bs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
296 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
297 __bs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
298 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/hpcsh/include/
bus_funcs.h 98 #define __hbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
100 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
102 (*(t)->__hbs_opname(c,sz))((t)->hbs_cookie, h1, o1, h2, o2, cnt); \
236 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
237 __hbs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
238 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
239 __hbs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
240 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
241 __hbs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
242 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/landisk/include/
bus_funcs.h 97 #define __bs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
99 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
101 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt); \
242 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
243 __bs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
244 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
245 __bs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
246 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
247 __bs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
248 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/mips/include/
bus_space_funcs.h 93 #define __bs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
95 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
97 (*(t)->__bs_opname(c,sz))((t)->bs_cookie, h1, o1, h2, o2, cnt); \
302 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
303 __bs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
304 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c) \
305 __bs_copy(2, uint16_t, (t), (h1), (o1), (h2), (o2), (c))
306 #define bus_space_copy_region_4(t, h1, o1, h2, o2, c) \
307 __bs_copy(4, uint32_t, (t), (h1), (o1), (h2), (o2), (c))
308 #define bus_space_copy_region_8(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/luna68k/include/
bus.h 517 bus_space_handle_t h1, \
525 if ((h1 + o1) >= (h2 + o2)) { \
529 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
534 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
  /src/sys/arch/news68k/include/
bus.h 520 bus_space_handle_t h1, bus_space_handle_t h2, \
525 if ((h1 + o1) >= (h2 + o2)) { \
529 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
534 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
  /src/sys/arch/next68k/include/
bus_space.h 478 bus_space_handle_t h1, \
486 if ((h1 + o1) >= (h2 + o2)) { \
490 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
495 __CONCAT(bus_space_read_,BYTES)(t, h1, o1 + o)); \
  /src/sys/arch/ews4800mips/include/
bus.h 390 PREFIX##_copy_region_##BYTES(void *t, bus_space_handle_t h1, \
394 if ((h1 + o1) >= (h2 + o2)) { \
398 __read_##BYTES(VADDR(h1, o1 + o))); \
403 __read_##BYTES(VADDR(h1, o1 + o))); \
482 #define __ebs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
484 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
486 (*(t)->__ebs_opname(c,sz))((t)->ebs_cookie, h1, o1, h2, o2, cnt); \
642 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
643 __ebs_copy(1, uint8_t, (t), (h1), (o1), (h2), (o2), (c))
644 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/arch/playstation2/include/
bus.h 432 PREFIX##_copy_region_##BYTES(void *t, bus_space_handle_t h1, \
436 if ((h1 + o1) >= (h2 + o2)) { \
440 __read_##BYTES(VADDR(h1, o1 + o))); \
445 __read_##BYTES(VADDR(h1, o1 + o))); \
524 #define __pbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
526 __BUS_SPACE_ADDRESS_SANITY((h1) + (o1), tn, "bus addr 1"); \
528 (*(t)->__pbs_opname(c,sz))((t)->pbs_cookie, h1, o1, h2, o2, cnt); \
683 #define bus_space_copy_region_1(t, h1, o1, h2, o2, c) \
684 __pbs_copy(1, u_int8_t, (t), (h1), (o1), (h2), (o2), (c))
685 #define bus_space_copy_region_2(t, h1, o1, h2, o2, c)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/sse2/
poly1305_sse2.c 206 xmmi H0, H1, H2, H3, H4;
229 H1 = _mm_and_si128(MMASK, _mm_srli_epi64(T5, 26));
243 H1 = _mm_shuffle_epi32(T0, _MM_SHUFFLE(3, 3, 2, 2));
327 v03 = H1;
344 v13 = H1;
363 v23 = H1;
366 v33 = H1;
383 v43 = H1;
525 H1 = T1;
563 v03 = H1;
686 uint64_t h0, h1, h2, g0, g1, g2, c, nc; local in function:poly1305_blocks
806 uint64_t h0, h1, h2; local in function:poly1305_finish_ext
    [all...]

Completed in 25 milliseconds

1 2 3 4 5