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

1 2 3 4

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/
poly1305_donna32.h 62 unsigned long h0, h1, h2, h3, h4; local in function:poly1305_blocks
79 h2 = st->h[2];
87 h2 += (LOAD32_LE(m + 6) >> 4) & 0x3ffffff;
93 ((unsigned long long) h2 * s3) + ((unsigned long long) h3 * s2) +
96 ((unsigned long long) h2 * s4) + ((unsigned long long) h3 * s3) +
99 ((unsigned long long) h2 * r0) + ((unsigned long long) h3 * s4) +
102 ((unsigned long long) h2 * r1) + ((unsigned long long) h3 * r0) +
105 ((unsigned long long) h2 * r2) + ((unsigned long long) h3 * r1) +
116 h2 = (unsigned long) d2 & 0x3ffffff;
134 st->h[2] = h2;
142 unsigned long h0, h1, h2, h3, h4, c; local in function:poly1305_finish
    [all...]
poly1305_donna64.h 69 unsigned long long h0, h1, h2; local in function:poly1305_blocks
79 h2 = st->h[2];
93 h2 += (((t1 >> 24)) & 0x3ffffffffff) | hibit;
99 MUL(d, h2, s1);
104 MUL(d, h2, s2);
109 MUL(d, h2, r0);
120 h2 = LO(d2) & 0x3ffffffffff;
132 st->h[2] = h2;
138 unsigned long long h0, h1, h2, c; local in function:poly1305_finish
158 h2 = st->h[2]
    [all...]
  /src/sys/external/isc/libsodium/dist/test/default/
metamorphic.c 12 unsigned char *h, *h2; local in function:mm_generichash
32 h2 = (unsigned char *) sodium_malloc(hlen);
45 crypto_generichash(h2, hlen, m, mlen, k, klen);
47 assert(memcmp(h, h2, hlen) == 0);
49 sodium_free(h2);
60 unsigned char *h, *h2; local in function:mm_onetimeauth
72 h2 = (unsigned char *) sodium_malloc(crypto_onetimeauth_BYTES);
85 crypto_onetimeauth(h2, m, mlen, k);
87 assert(memcmp(h, h2, crypto_onetimeauth_BYTES) == 0);
89 sodium_free(h2);
100 unsigned char *h, *h2; local in function:mm_hmacsha256
140 unsigned char *h, *h2; local in function:mm_hmacsha512
    [all...]
  /src/libexec/httpd/
printenv.lua 44 httpd.print('<h2>Server Environment</h2>')
50 httpd.print('<h2>Request Headers</h2>')
56 httpd.print('<h2>Query Variables</h2>')
62 httpd.print('<h2>Form Test</h2>')
83 httpd.print('<h2>Form Variables</h2>')
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_scalarmult/curve25519/sandy2x/
fe_frombytes_sandy2x.c 35 uint64_t h2 = load_3(s + 7) << 5; local in function:fe_frombytes
55 carry1 = h1 >> 25; h2 += carry1; h1 &= 0x1FFFFFF;
61 carry2 = h2 >> 26; h3 += carry2; h2 &= 0x3FFFFFF;
68 h[2] = h2;
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/
fe.h 10 int64_t h2 = load_3(s + 7) << 5; local in function:fe25519_frombytes
34 h2 += carry1;
49 carry2 = (h2 + (int64_t)(1L << 25)) >> 26;
51 h2 -= carry2 * ((uint64_t) 1L << 26);
64 h[2] = (int32_t) h2;
104 int32_t h2 = f[2]; local in function:fe25519_reduce
119 q = (h2 + q) >> 26;
136 h2 += carry1;
138 carry2 = h2 >> 26;
140 h2 -= carry2 * ((uint32_t) 1L << 26)
    [all...]
  /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
13 h2 = (LOAD64_LE(s + 12) >> 6) & mask;
19 h[2] = h2;
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/private/
ed25519_ref10_fe_51.h 37 uint64_t h2 = f[2] + g[2]; local in function:fe25519_add
43 h[2] = h2;
56 uint64_t h0, h1, h2, h3, h4; local in function:fe25519_sub
60 h2 = g[2];
66 h2 += h1 >> 51;
68 h3 += h2 >> 51;
69 h2 &= mask;
77 h2 = (f[2] + 0xffffffffffffeULL) - h2;
83 h[2] = h2;
498 uint64_t h0, h1, h2, h3, h4; local in function:fe25519_scalar_product
    [all...]
ed25519_ref10_fe_25_5.h 45 int32_t h2 = f[2] + g[2]; local in function:fe25519_add
56 h[2] = h2;
83 int32_t h2 = f[2] - g[2]; local in function:fe25519_sub
94 h[2] = h2;
119 int32_t h2 = -f[2]; local in function:fe25519_neg
130 h[2] = h2;
512 int64_t h2 = f0g2 + f1g1_2 + f2g0 + f3g9_38 + f4g8_19 + f5g7_38 + f6g6_19 + local in function:fe25519_mul
542 i.e. |h0| <= 1.4*2^60; narrower ranges for h2, h4, h6, h8
559 h2 += carry1;
566 /* |h2| <= 1.41*2^60 *
723 int64_t h2 = f0f2_2 + f1f1_2 + f3f9_76 + f4f8_38 + f5f7_76 + f6f6_19; local in function:fe25519_sq
895 int64_t h2 = f0f2_2 + f1f1_2 + f3f9_76 + f4f8_38 + f5f7_76 + f6f6_19; local in function:fe25519_sq2
997 int64_t h2 = f2 * sn; local in function:fe25519_scalar_product
    [all...]
  /src/usr.sbin/lpr/pac/
pac.c 397 const struct hent *h1, *h2; local in function:qucmp
401 h2 = *(const struct hent *const *)b;
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) \
796 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), uint16_t, "bus addr 2"); \
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) \
803 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), uint32_t, "bus addr 2"); \
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) \
810 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), uint64_t, "bus addr 2");
    [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) \
96 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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) \
96 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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) \
109 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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) \
101 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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) \
100 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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) \
96 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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/lib/libwrap/
socket.c 155 char h1[NI_MAXHOST], h2[NI_MAXHOST]; local in function:sock_hostname
250 if (getnameinfo(res->ai_addr, res->ai_addrlen, h2, sizeof(h2),
254 if (STR_EQ(h1, h2)) {
  /src/sys/arch/luna68k/include/
bus.h 519 bus_space_handle_t h2, \
525 if ((h1 + o1) >= (h2 + o2)) { \
528 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
533 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + 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)) { \
528 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
533 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
  /src/sys/arch/next68k/include/
bus_space.h 480 bus_space_handle_t h2, \
486 if ((h1 + o1) >= (h2 + o2)) { \
489 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
494 __CONCAT(bus_space_write_,BYTES)(t, h2, o2 + o, \
  /src/sys/dtb/arm/
Makefile 40 DTS+= sun8i-h2-plus-bananapi-p2-zero.dts
  /src/sys/arch/ews4800mips/include/
bus.h 391 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) \
394 if ((h1 + o1) >= (h2 + o2)) { \
397 __write_##BYTES(VADDR(h2, o2 + o), \
402 __write_##BYTES(VADDR(h2, o2 + o), \
482 #define __ebs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
485 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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 433 bus_size_t o1, bus_space_handle_t h2, bus_size_t o2, bus_size_t c) \
436 if ((h1 + o1) >= (h2 + o2)) { \
439 __write_##BYTES(VADDR(h2, o2 + o), \
444 __write_##BYTES(VADDR(h2, o2 + o), \
524 #define __pbs_copy(sz, tn, t, h1, o1, h2, o2, cnt) \
527 __BUS_SPACE_ADDRESS_SANITY((h2) + (o2), tn, "bus addr 2"); \
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...]

Completed in 132 milliseconds

1 2 3 4