Home
last modified time | relevance | path

Searched refs:h4 (Results 1 – 25 of 137) sorted by relevance

123456

/external/boringssl/src/ssl/test/runner/poly1305/
Dsum_ref.go16 h0, h1, h2, h3, h4 uint32 // the hash accumulators
34 h4 += (binary.LittleEndian.Uint32(msg[12:]) >> 8) | (1 << 24)
37 …d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) …
38 …+ (uint64(h0) * r1) + (uint64(h1) * r0) + (uint64(h2) * R4) + (uint64(h3) * R3) + (uint64(h4) * R2)
39 …+ (uint64(h0) * r2) + (uint64(h1) * r1) + (uint64(h2) * r0) + (uint64(h3) * R4) + (uint64(h4) * R3)
40 …+ (uint64(h0) * r3) + (uint64(h1) * r2) + (uint64(h2) * r1) + (uint64(h3) * r0) + (uint64(h4) * R4)
41 …+ (uint64(h0) * r4) + (uint64(h1) * r3) + (uint64(h2) * r2) + (uint64(h3) * r1) + (uint64(h4) * r0)
48 h4 = uint32(d4) & 0x3ffffff
67 h4 += (binary.LittleEndian.Uint32(block[12:]) >> 8)
70 …d0 := (uint64(h0) * r0) + (uint64(h1) * R4) + (uint64(h2) * R3) + (uint64(h3) * R2) + (uint64(h4) …
[all …]
/external/openssh/
Dpoly1305.c36 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local
70 h4 = 0; in poly1305_auth()
87 h4 += (t3 >> 8) | (1 << 24); in poly1305_auth()
91 …2x32_64(h0,r0) + mul32x32_64(h1,s4) + mul32x32_64(h2,s3) + mul32x32_64(h3,s2) + mul32x32_64(h4,s1); in poly1305_auth()
92 …2x32_64(h0,r1) + mul32x32_64(h1,r0) + mul32x32_64(h2,s4) + mul32x32_64(h3,s3) + mul32x32_64(h4,s2); in poly1305_auth()
93 …2x32_64(h0,r2) + mul32x32_64(h1,r1) + mul32x32_64(h2,r0) + mul32x32_64(h3,s4) + mul32x32_64(h4,s3); in poly1305_auth()
94 …2x32_64(h0,r3) + mul32x32_64(h1,r2) + mul32x32_64(h2,r1) + mul32x32_64(h3,r0) + mul32x32_64(h4,s4); in poly1305_auth()
95 …2x32_64(h0,r4) + mul32x32_64(h1,r3) + mul32x32_64(h2,r2) + mul32x32_64(h3,r1) + mul32x32_64(h4,r0); in poly1305_auth()
101 t[4] += b; h4 = (uint32_t)t[4] & 0x3ffffff; b = (uint32_t)(t[4] >> 26); in poly1305_auth()
124 h4 += (t3 >> 8); in poly1305_auth()
[all …]
/external/libxml2/result/HTML/
Dtest3.html.sax76 SAX.startElement(h4)
81 SAX.endElement(h4)
86 SAX.startElement(h4)
91 SAX.endElement(h4)
96 SAX.startElement(h4)
101 SAX.endElement(h4)
106 SAX.startElement(h4)
111 SAX.endElement(h4)
116 SAX.startElement(h4)
121 SAX.endElement(h4)
[all …]
Dtest3.html.err7 ./test/HTML/test3.html:27: HTML parser error : Opening and ending tag mismatch: h4 and b
8 <h4><b>Links</h4></b>
11 <h4><b>Links</h4></b>
/external/dtc/tests/
Dphandle_format.c39 uint32_t h4; in main() local
60 h4 = fdt_get_phandle(fdt, n4); in main()
61 if ((h4 == 0) || (h4 == -1)) in main()
62 FAIL("/node4 has bad phandle 0x%x\n", h4); in main()
65 check_getprop_cell(fdt, n4, "linux,phandle", h4); in main()
71 check_getprop_cell(fdt, n4, "phandle", h4); in main()
Dreferences.c80 uint32_t h1, h2, h4, h5; in main() local
103 h4 = fdt_get_phandle(fdt, n4); in main()
112 if ((h4 == 0x2000) || (h4 == 0x1) || (h4 == 0)) in main()
113 FAIL("/node4 has bad phandle, 0x%x", h4); in main()
117 if ((h5 == h4) || (h5 == h2) || (h5 == h1)) in main()
122 check_ref(fdt, n3, h4); in main()
/external/boringssl/src/crypto/poly1305/
Dpoly1305.c47 uint32_t h0, h1, h2, h3, h4; member
87 state->h4 += (t3 >> 8) | (1 << 24); in poly1305_update()
92 mul32x32_64(state->h4, state->s1); in poly1305_update()
95 mul32x32_64(state->h4, state->s2); in poly1305_update()
98 mul32x32_64(state->h4, state->s3); in poly1305_update()
101 mul32x32_64(state->h4, state->s4); in poly1305_update()
104 mul32x32_64(state->h4, state->r0); in poly1305_update()
118 state->h4 = (uint32_t)t[4] & 0x3ffffff; in poly1305_update()
150 state->h4 += (t3 >> 8); in poly1305_update()
195 state->h4 = 0; in CRYPTO_poly1305_init()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dhash.h165 uint32_t h4 = seed; in hash_x86_128() local
195 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128()
198 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128()
200 h4 = hash_rotl_32(h4, 13); h4 += h1; in hash_x86_128()
201 h4 = h4*5 + 0x32ac3b17; in hash_x86_128()
217 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128()
240 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len; in hash_x86_128()
242 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128()
243 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128()
248 h4 = hash_fmix_32(h4); in hash_x86_128()
[all …]
/external/clang/test/Sema/
Dwarn-missing-prototypes.c19 int h4(int);
20 int h4();
25 int h4(); in test()
30 int h4(int x) { return x; } in h4() function
/external/clang/test/Analysis/diagnostics/Inputs/include/
Dreport-issues-within-main-file.h38 int h4 = 0; in cause_div_by_zero_in_header4() local
39 h4 = in/h4; in cause_div_by_zero_in_header4()
40 h4++; in cause_div_by_zero_in_header4()
/external/boringssl/src/ssl/test/runner/curve25519/
Dcurve25519.go91 h4 := load3(src[13:]) << 2
106 h4 += carry[3]
121 carry[4] = (h4 + 1<<25) >> 26
123 h4 -= carry[4] << 26
135 dst[4] = int32(h4)
421 h4 := f0g4 + f1g3_2 + f2g2 + f3g1_2 + f4g0 + f5g9_38 + f6g8_19 + f7g7_38 + f8g6_19 + f9g5_38
437 carry[4] = (h4 + (1 << 25)) >> 26
439 h4 -= carry[4] << 26
468 h4 += carry[3]
478 carry[4] = (h4 + (1 << 25)) >> 26
[all …]
/external/llvm/test/CodeGen/Thumb2/
Dconstant-islands-jump-table.ll16 i32 2, label %h4
28 br label %h4
30 h4:
36 %a2 = phi i32 [%b1, %h1], [%c3, %h4]
/external/llvm/test/CodeGen/PowerPC/
Dpeephole-align.ll16 %struct.h4 = type<{ i16, i16, i16, i16 }>
26 @h4v = global %struct.h4 <{ i16 1, i16 2, i16 3, i16 4 }>, align 8
238 %0 = load i16, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 0), align 2
240 store i16 %inc0, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 0), align 2
241 %1 = load i16, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 1), align 2
243 store i16 %inc1, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 1), align 2
244 %2 = load i16, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 2), align 2
246 store i16 %inc2, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 2), align 2
247 %3 = load i16, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 3), align 2
249 store i16 %inc3, i16* getelementptr inbounds (%struct.h4, %struct.h4* @h4v, i32 0, i32 3), align 2
/external/fmtlib/doc/bootstrap/
Dtype.less9 h1, h2, h3, h4, h5, h6,
10 .h1, .h2, .h3, .h4, .h5, .h6 {
35 h4, .h4,
50 h4, .h4 { font-size: @font-size-h4; }
Dalerts.less16 h4 {
18 // Specified for the h4 to prevent conflicts of changing @headings-color
/external/python/cpython2/Lib/test/
Dtest_atexit.py24 atexit.register(self.h4)
25 atexit.register(self.h4, 4, kw="abc")
68 def h4(self, *args, **kwargs): member in TestCase
/external/llvm/docs/_themes/llvm-theme/static/
Dllvm-theme.css102 div.sphinxsidebar h3, div.sphinxsidebar h4 {
181 div.body h1 a, div.body h2 a, div.body h3 a, div.body h4 a, div.body h5 a, div.body h6 a {
188 div.body h4,
202 div.body h4 { font-size: 120%; }
206 h1 a.anchor, h2 a.anchor, h3 a.anchor, h4 a.anchor, h5 a.anchor, h6 a.anchor {
213 h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor,
218 h1 a.anchor:hover, h2 a.anchor:hover, h3 a.anchor:hover, h4 a.anchor:hover,
/external/skia/tests/
DSkNxTest.cpp277 auto h4 = Sk4h(15, 17, 257, 65535); in DEF_TEST() local
278 auto f4 = SkNx_cast<float>(h4); in DEF_TEST()
287 auto h4 = SkNx_cast<uint16_t>(f4); in DEF_TEST() local
288 REPORTER_ASSERT(r, h4[0] == 15); in DEF_TEST()
289 REPORTER_ASSERT(r, h4[1] == 17); in DEF_TEST()
290 REPORTER_ASSERT(r, h4[2] == 257); in DEF_TEST()
291 REPORTER_ASSERT(r, h4[3] == 65535); in DEF_TEST()
/external/boringssl/src/crypto/curve25519/
Dcurve25519.c63 int64_t h4 = load_3(s + 13) << 2; in fe_frombytes() local
82 carry3 = h3 + (1 << 24); h4 += carry3 >> 25; h3 -= carry3 & kTop39Bits; in fe_frombytes()
88 carry4 = h4 + (1 << 25); h5 += carry4 >> 26; h4 -= carry4 & kTop38Bits; in fe_frombytes()
96 h[4] = h4; in fe_frombytes()
131 int32_t h4 = h[4]; in fe_tobytes() local
144 q = (h4 + q) >> 26; in fe_tobytes()
158 h4 += h3 >> 25; h3 &= kBottom25Bits; in fe_tobytes()
159 h5 += h4 >> 26; h4 &= kBottom26Bits; in fe_tobytes()
184 s[12] = (h3 >> 19) | ((uint32_t)(h4) << 6); in fe_tobytes()
185 s[13] = h4 >> 2; in fe_tobytes()
[all …]
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
DCatmullRom.java35 float h4 = t * t * t - t * t; in catmullRomSpline() local
37 return b * h1 + c * h2 + t1 * h3 + t2 * h4; in catmullRomSpline()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DHashing.h261 uint64_t h0, h1, h2, h3, h4, h5, h6; member
270 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
292 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1; in mix()
296 h3 = h4 * k1; in mix()
297 h4 = h0 + h5; in mix()
298 mix_32_bytes(s, h3, h4); in mix()
309 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize()
/external/llvm/include/llvm/ADT/
DHashing.h261 uint64_t h0, h1, h2, h3, h4, h5, h6; member
270 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
292 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1; in mix()
296 h3 = h4 * k1; in mix()
297 h4 = h0 + h5; in mix()
298 mix_32_bytes(s, h3, h4); in mix()
309 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize()
/external/lzma/C/
DLzHash.h35 h4 = temp & (kHash4Size - 1); \
55 h4 = (temp ^ (p->crc[cur[3]] << 5)) & (kHash4Size - 1); }
/external/wpa_supplicant_8/src/crypto/
Dfips_prf_openssl.c37 context.h4 = state[4]; in sha1_transform()
43 state[4] = context.h4; in sha1_transform()
/external/llvm/test/CodeGen/SystemZ/
Dspill-01.ll23 @h4 = global i64 4
363 %val4 = load i64 , i64 *@h4
376 store i64 %val4, i64 *@h4
408 %val4 = load volatile i64 , i64 *@h4
420 store volatile i64 %val4, i64 *@h4
436 store volatile i64 %val4, i64 *@h4
451 store volatile i64 %val4, i64 *@h4
471 %val4 = load volatile i64 , i64 *@h4
485 store volatile i64 %val4, i64 *@h4
510 store volatile i64 %val4, i64 *@h4
[all …]

123456