Home
last modified time | relevance | path

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

12345678910>>...14

/external/libwebsockets/plugins/ssh-base/crypto/
Dpoly1305.c33 uint32_t h0,h1,h2,h3,h4; in poly1305_auth() local
67 h4 = 0; in poly1305_auth()
86 h4 += (t3 >> 8) | (1 << 24); in poly1305_auth()
91 mul32x32_64(h4,s1); in poly1305_auth()
94 mul32x32_64(h4,s2); in poly1305_auth()
97 mul32x32_64(h4,s3); in poly1305_auth()
100 mul32x32_64(h4,s4); in poly1305_auth()
103 mul32x32_64(h4,r0); in poly1305_auth()
109 t[4] += b; h4 = (uint32_t)t[4] & 0x3ffffff; b = (uint32_t)(t[4] >> 26); in poly1305_auth()
136 h4 += (t3 >> 8); in poly1305_auth()
[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.c26 uint32_t h4; in main() local
47 h4 = fdt_get_phandle(fdt, n4); in main()
48 if ((h4 == 0) || (h4 == -1)) in main()
49 FAIL("/node4 has bad phandle 0x%x\n", h4); in main()
52 check_getprop_cell(fdt, n4, "linux,phandle", h4); in main()
58 check_getprop_cell(fdt, n4, "phandle", h4); in main()
Dreferences.c67 uint32_t h1, h2, h4, h5, h6, hn; in main() local
93 h4 = fdt_get_phandle(fdt, n4); in main()
106 if ((h4 == 0x2000) || (h4 == 0x1) || (h4 == 0)) in main()
107 FAIL("/node4 has bad phandle, 0x%x", h4); in main()
111 if ((h5 == h4) || (h5 == h2) || (h5 == h1)) in main()
124 check_ref(fdt, n3, h4); in main()
/external/skia/resources/sksl/inliner/
DTrivialArgumentsInlineDirectly.sksl7 half4 h4;
29 half4 func4(half4 h4) {
30 return h4 * h4;
37 s.h4 = half4(unknownInput);
53 var = func3(s.h4.zzz);
64 // var = func2(as[i].h4.yw); // indexing by non-constant expressions disallowed in ES2
65 var = func3(s.h4.yyy + s.h4.zzz);
66 var = func4(s.h4.y001);
/external/skia/tests/sksl/intrinsics/
DOuterProduct.glsl5 uniform vec4 h4;
21 sk_FragColor = outerProduct(h4, h4)[3];
24 sk_FragColor = outerProduct(h4, h2)[1];
25 sk_FragColor = outerProduct(h2, h4)[3].xyyy;
26 sk_FragColor = outerProduct(h4, h3)[2];
27 sk_FragColor = outerProduct(h3, h4)[3].xyzz;
DOuterProduct.metal7 float4 h4;
32 _out.sk_FragColor = outerProduct(_uniforms.h4, _uniforms.h4)[3];
35 _out.sk_FragColor = outerProduct(_uniforms.h4, _uniforms.h2)[1];
36 _out.sk_FragColor = outerProduct(_uniforms.h2, _uniforms.h4)[3].xyyy;
37 _out.sk_FragColor = outerProduct(_uniforms.h4, _uniforms.h3)[2];
38 _out.sk_FragColor = outerProduct(_uniforms.h3, _uniforms.h4)[3].xyzz;
/external/jemalloc_new/include/jemalloc/internal/
Dhash.h131 uint32_t h4 = seed; in hash_x86_128() local
161 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128()
164 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128()
166 h4 = hash_rotl_32(h4, 13); h4 += h1; in hash_x86_128()
167 h4 = h4*5 + 0x32ac3b17; in hash_x86_128()
183 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128()
206 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len; in hash_x86_128()
208 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128()
209 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128()
214 h4 = hash_fmix_32(h4); in hash_x86_128()
[all …]
/external/skia/resources/sksl/intrinsics/
DOuterProduct.sksl3 uniform half4 h4;
19 sk_FragColor = outerProduct(h4, h4)[3];
22 sk_FragColor = outerProduct(h4, h2)[1];
23 sk_FragColor = outerProduct(h2, h4)[3].xyyy;
24 sk_FragColor = outerProduct(h4, h3)[2];
25 sk_FragColor = outerProduct(h3, h4)[3].xyzz;
/external/rust/crates/quiche/deps/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/rust/crates/ring/crypto/poly1305/
Dpoly1305.c48 uint32_t h0, h1, h2, h3, h4; member
92 state->h4 += (t3 >> 8) | (1 << 24); in poly1305_update()
97 mul32x32_64(state->h4, state->s1); in poly1305_update()
100 mul32x32_64(state->h4, state->s2); in poly1305_update()
103 mul32x32_64(state->h4, state->s3); in poly1305_update()
106 mul32x32_64(state->h4, state->s4); in poly1305_update()
109 mul32x32_64(state->h4, state->r0); in poly1305_update()
123 state->h4 = (uint32_t)t[4] & 0x3ffffff; in poly1305_update()
155 state->h4 += (t3 >> 8); in poly1305_update()
193 state->h4 = 0; in GFp_poly1305_init()
[all …]
/external/boringssl/src/crypto/poly1305/
Dpoly1305.c47 uint32_t h0, h1, h2, h3, h4; member
91 state->h4 += (t3 >> 8) | (1 << 24); in poly1305_update()
96 mul32x32_64(state->h4, state->s1); in poly1305_update()
99 mul32x32_64(state->h4, state->s2); in poly1305_update()
102 mul32x32_64(state->h4, state->s3); in poly1305_update()
105 mul32x32_64(state->h4, state->s4); in poly1305_update()
108 mul32x32_64(state->h4, state->r0); in poly1305_update()
122 state->h4 = (uint32_t)t[4] & 0x3ffffff; in poly1305_update()
154 state->h4 += (t3 >> 8); in poly1305_update()
199 state->h4 = 0; in CRYPTO_poly1305_init()
[all …]
/external/skia/tests/sksl/inliner/
DTrivialArgumentsInlineDirectly.glsl8 vec4 h4;
15 s.h4 = vec4(unknownInput);
25 var = s.h4.zzzz * s.h4.zzzz;
35 vec3 _2_h3 = s.h4.yyy + s.h4.zzz;
37 vec4 _3_h4 = vec4(s.h4.y, 0.0, 0.0, 1.0);
/external/linux-kselftest/tools/testing/selftests/net/forwarding/
Dmirror_gre_lag_lacp.sh106 team_create lag2 lacp $h3 $h4
118 ip link set dev $h4 down
126 tc qdisc add dev $h4 clsact
133 tc qdisc del dev $h4 clsact
182 h4=${NETIFS[p6]}
193 trap_install $h4 ingress
200 trap_uninstall $h4 ingress
235 mirror_test vrf-h1 192.0.2.1 192.0.2.18 $h4 1 0
251 test_lag_slave $h3 $h4 "mirror to gretap: LAG first slave"
256 test_lag_slave $h4 $h3 "mirror to gretap: LAG second slave"
Dmirror_gre_bridge_1q_lag.sh120 simple_if_init $h4 192.0.2.130/28
121 tc qdisc add dev $h4 clsact
126 tc qdisc del dev $h4 clsact
127 simple_if_fini $h4 192.0.2.130/28
182 h4=${NETIFS[p6]}
196 trap_install $h4 ingress
203 trap_uninstall $h4 ingress
246 mirror_test vrf-h1 192.0.2.1 192.0.2.18 $h4 1 0
263 test_lag_slave $h4 $swp4 $swp3 "mirror to gretap: LAG second slave"
/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/llvm-project/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/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/llvm-project/clang/test/Sema/
Dwarn-missing-prototypes.c27 int h4(int);
28 int h4();
33 int h4(); in test()
39 int h4(int x) { return x; } in h4() function
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/out/
Ddataurl-realdata-yuiapp.out.b1h4 .title{font-weight:bold;letter-spacing:-2px;font-size:47px;text-shadow:0 1px 0 #369;background:…
Ddataurl-realdata-yuiapp.out1h4 .title{font-weight:bold;letter-spacing:-2px;font-size:47px;text-shadow:0 1px 0 #369;background:…
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/tests/yui/
Ddataurl-realdata-yuiapp.css.min1h4 .title{font-weight:bold;letter-spacing:-2px;font-size:47px;text-shadow:0 1px 0 #369;background:…
Ddataurl-realdata-yuiapp.css52 h4 .title {
62 h4 { selector
68 h4 .what {
75 h4 .version {
87 h4, p { selector

12345678910>>...14