Home
last modified time | relevance | path

Searched refs:h2 (Results 151 – 175 of 30455) sorted by relevance

12345678910>>...1219

/dports/net/cjdns/cjdns-cjdns-v21.1/node_build/dependencies/cnacl/crypto_onetimeauth/poly1305/x86/
H A Dauth.s84 # qhasm: float80 h2
407 # qhasm: h2 = 0
724 # qhasm: x3 += h2
734 # qhasm: h2 -= x3
745 # qhasm: x2 += h2
791 # qhasm: h2 *= x0
1108 # qhasm: h2 += y2
1238 # qhasm: x3 += h2
1248 # qhasm: h2 -= x3
1259 # qhasm: x2 += h2
[all …]
/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_invalid_frame_sequences.py11 import h2.config
12 import h2.connection
13 import h2.errors
14 import h2.events
15 import h2.exceptions
39 c = h2.connection.H2Connection()
43 with pytest.raises(h2.exceptions.ProtocolError):
78 c = h2.connection.H2Connection()
254 h2.errors.ErrorCodes.PROTOCOL_ERROR
402 c = h2.connection.H2Connection()
[all …]
H A Dtest_invalid_headers.py13 import h2.config
14 import h2.connection
15 import h2.errors
16 import h2.events
17 import h2.exceptions
18 import h2.settings
19 import h2.utilities
89 c = h2.connection.H2Connection()
252 c = h2.connection.H2Connection()
399 c = h2.connection.H2Connection()
[all …]
H A Dtest_basic_logic.py14 import h2.config
15 import h2.connection
16 import h2.errors
17 import h2.events
18 import h2.exceptions
19 import h2.frame_buffer
20 import h2.settings
21 import h2.stream
61 c = h2.connection.H2Connection()
77 c = h2.connection.H2Connection()
[all …]
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_invalid_frame_sequences.py11 import h2.config
12 import h2.connection
13 import h2.errors
14 import h2.events
15 import h2.exceptions
39 c = h2.connection.H2Connection()
43 with pytest.raises(h2.exceptions.ProtocolError):
78 c = h2.connection.H2Connection()
254 h2.errors.ErrorCodes.PROTOCOL_ERROR
402 c = h2.connection.H2Connection()
[all …]
H A Dtest_invalid_headers.py13 import h2.config
14 import h2.connection
15 import h2.errors
16 import h2.events
17 import h2.exceptions
18 import h2.settings
19 import h2.utilities
89 c = h2.connection.H2Connection()
252 c = h2.connection.H2Connection()
399 c = h2.connection.H2Connection()
[all …]
H A Dtest_basic_logic.py14 import h2.config
15 import h2.connection
16 import h2.errors
17 import h2.events
18 import h2.exceptions
19 import h2.frame_buffer
20 import h2.settings
21 import h2.stream
61 c = h2.connection.H2Connection()
77 c = h2.connection.H2Connection()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_invalid_frame_sequences.py11 import h2.config
12 import h2.connection
13 import h2.errors
14 import h2.events
15 import h2.exceptions
39 c = h2.connection.H2Connection()
43 with pytest.raises(h2.exceptions.ProtocolError):
78 c = h2.connection.H2Connection()
254 h2.errors.ErrorCodes.PROTOCOL_ERROR
402 c = h2.connection.H2Connection()
[all …]
H A Dtest_invalid_headers.py13 import h2.config
14 import h2.connection
15 import h2.errors
16 import h2.events
17 import h2.exceptions
18 import h2.settings
19 import h2.utilities
89 c = h2.connection.H2Connection()
252 c = h2.connection.H2Connection()
399 c = h2.connection.H2Connection()
[all …]
H A Dtest_basic_logic.py14 import h2.config
15 import h2.connection
16 import h2.errors
17 import h2.events
18 import h2.exceptions
19 import h2.frame_buffer
20 import h2.settings
21 import h2.stream
61 c = h2.connection.H2Connection()
77 c = h2.connection.H2Connection()
[all …]
/dports/graphics/yafaray/libYafaRay-3.5.1/src/yafraycore/
H A Dcolor_ramp.cc101 float h2=0.f, s2=0.f, v2=0.f, a2=0.f; in get_color_interpolated() local
115 else if(ramp_hue_interpolation == C_RAMP_HUE_COUNTERCLOCKWISE && h1 > h2) h2 += 6.f; in get_color_interpolated()
116 else if(ramp_hue_interpolation == C_RAMP_HUE_NEAR && h1 < h2 && (h2 - h1) > 3.f) h1 += 6.f; in get_color_interpolated()
117 else if(ramp_hue_interpolation == C_RAMP_HUE_NEAR && h1 > h2 && (h2 - h1) < -3.f) h2 += 6.f; in get_color_interpolated()
118 else if(ramp_hue_interpolation == C_RAMP_HUE_FAR && h1 < h2 && (h2 - h1) < 3.f) h1 += 6.f; in get_color_interpolated()
119 else if(ramp_hue_interpolation == C_RAMP_HUE_FAR && h1 > h2 && (h2 - h1) > -3.f) h2 += 6.f; in get_color_interpolated()
147 else if(ramp_hue_interpolation == C_RAMP_HUE_COUNTERCLOCKWISE && h1 > h2) h2 += 6.f; in get_color_interpolated()
148 else if(ramp_hue_interpolation == C_RAMP_HUE_NEAR && h1 < h2 && (h2 - h1) > 3.f) h1 += 6.f; in get_color_interpolated()
149 else if(ramp_hue_interpolation == C_RAMP_HUE_NEAR && h1 > h2 && (h2 - h1) < -3.f) h2 += 6.f; in get_color_interpolated()
150 else if(ramp_hue_interpolation == C_RAMP_HUE_FAR && h1 < h2 && (h2 - h1) < 3.f) h1 += 6.f; in get_color_interpolated()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/third_party/h2/test/
H A Dtest_events.py18 import h2.errors
19 import h2.events
20 import h2.settings
120 e = h2.events.RequestReceived()
136 e = h2.events.ResponseReceived()
150 e = h2.events.TrailersReceived()
178 e = h2.events.DataReceived()
192 e = h2.events.WindowUpdated()
229 e = h2.events.StreamEnded()
238 e = h2.events.StreamReset()
[all …]
H A Dtest_invalid_headers.py13 import h2.config
14 import h2.connection
15 import h2.errors
16 import h2.events
17 import h2.exceptions
18 import h2.settings
19 import h2.utilities
88 c = h2.connection.H2Connection()
251 c = h2.connection.H2Connection()
398 c = h2.connection.H2Connection()
[all …]
/dports/www/py-h2/h2-4.0.0/test/
H A Dtest_invalid_frame_sequences.py11 import h2.config
12 import h2.connection
13 import h2.errors
14 import h2.events
15 import h2.exceptions
40 c = h2.connection.H2Connection()
44 with pytest.raises(h2.exceptions.ProtocolError):
79 c = h2.connection.H2Connection()
255 h2.errors.ErrorCodes.PROTOCOL_ERROR
420 c = h2.connection.H2Connection()
[all …]
H A Dtest_invalid_headers.py13 import h2.config
14 import h2.connection
15 import h2.errors
16 import h2.events
17 import h2.exceptions
18 import h2.settings
19 import h2.utilities
89 c = h2.connection.H2Connection()
252 c = h2.connection.H2Connection()
399 c = h2.connection.H2Connection()
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/libp2p/go-libp2p/p2p/protocol/identify/
H A Did_test.go44 h2p := h2.ID()
378 defer h2.Close()
505 defer h2.Close()
574 h2p := h2.ID()
672 defer h2.Close()
674 err = h1.Connect(ctx, peer.AddrInfo{ID: h2.ID(), Addrs: h2.Addrs()})
710 defer h2.Close()
712 err = h1.Connect(ctx, peer.AddrInfo{ID: h2.ID(), Addrs: h2.Addrs()})
724 defer h2.Close()
796 h2p := h2.ID()
[all …]
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/tests/
H A Dhyperplane_test.cpp39 BOOST_REQUIRE(h2.Left(dataset.col(i))); in BOOST_AUTO_TEST_CASE()
41 BOOST_REQUIRE(!h2.Right(dataset.col(i))); in BOOST_AUTO_TEST_CASE()
102 BOOST_REQUIRE(h2.Left(arma::vec("0 0"))); in BOOST_AUTO_TEST_CASE()
106 BOOST_REQUIRE(h2.Left(arma::vec("0 1"))); in BOOST_AUTO_TEST_CASE()
118 BOOST_REQUIRE(h2.Left(arma::vec("1 0"))); in BOOST_AUTO_TEST_CASE()
126 BOOST_REQUIRE(h2.Left(b2)); in BOOST_AUTO_TEST_CASE()
127 BOOST_REQUIRE(!h2.Right(b2)); in BOOST_AUTO_TEST_CASE()
131 BOOST_REQUIRE(h2.Right(b2)); in BOOST_AUTO_TEST_CASE()
132 BOOST_REQUIRE(!h2.Left(b2)); in BOOST_AUTO_TEST_CASE()
136 BOOST_REQUIRE(!h2.Right(b2)); in BOOST_AUTO_TEST_CASE()
[all …]
/dports/lang/gcc11/gcc-11.2.0/libgo/go/hash/maphash/
H A Dmaphash_test.go39 h2 := new(Hash)
57 h2 := new(Hash)
99 h2 := new(Hash)
113 h2 := new(Hash)
116 y := h2.Sum64()
127 h2 := new(Hash)
130 y := h2.Sum64()
141 h2 := new(Hash)
143 h2.Write(b)
144 y := h2.Sum64()
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libgo/go/hash/maphash/
H A Dmaphash_test.go39 h2 := new(Hash)
57 h2 := new(Hash)
99 h2 := new(Hash)
113 h2 := new(Hash)
116 y := h2.Sum64()
127 h2 := new(Hash)
130 y := h2.Sum64()
141 h2 := new(Hash)
143 h2.Write(b)
144 y := h2.Sum64()
[all …]
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libgo/go/hash/maphash/
H A Dmaphash_test.go39 h2 := new(Hash)
57 h2 := new(Hash)
99 h2 := new(Hash)
113 h2 := new(Hash)
116 y := h2.Sum64()
127 h2 := new(Hash)
130 y := h2.Sum64()
141 h2 := new(Hash)
143 h2.Write(b)
144 y := h2.Sum64()
[all …]
/dports/net/nusoap/nusoap-0.9.5/samples/
H A Dgetfile1client.php21 echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
25 echo '<h2>Fault</h2><pre>'; print_r($result); echo '</pre>';
29 echo '<h2>Error</h2><pre>' . $err . '</pre>';
31 echo '<h2>Result</h2><pre>' . htmlspecialchars($result, ENT_QUOTES) . '</pre>';
34 echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
35 echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
36 echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
H A Dgetfile2client.php21 echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
25 echo '<h2>Fault</h2><pre>'; print_r($result); echo '</pre>';
29 echo '<h2>Error</h2><pre>' . $err . '</pre>';
31 echo '<h2>Result</h2><pre>' . htmlspecialchars($result, ENT_QUOTES) . '</pre>';
34 echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
35 echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
36 echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
H A Dwsdlclient1.php21 echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
28 echo '<h2>Fault</h2><pre>';
36 echo '<h2>Error</h2><pre>' . $err . '</pre>';
39 echo '<h2>Result</h2><pre>';
44 echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
45 echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
46 echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
H A Dwsdlclient10.php23 echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
28 echo '<h2>Fault</h2><pre>';
34 echo '<h2>Error</h2><pre>' . $err . '</pre>';
36 echo '<h2>Result</h2><pre>';
41 echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
42 echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
43 echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
/dports/emulators/vice/vice-3.5/src/lib/libffmpeg/libavutil/
H A Dmurmur3.c76 k += h2; in update_h1()
84 k ^= h2; in update_h2()
95 uint64_t h1 = c->h1, h2 = c->h2; in av_murmur3_update() local
108 h2 = update_h2(k2, h1, h2); in av_murmur3_update()
118 h2 = update_h2(k2, h1, h2); in av_murmur3_update()
122 c->h2 = h2; in av_murmur3_update()
143 uint64_t h1 = c->h1, h2 = c->h2; in av_murmur3_final() local
147 h1 += h2; in av_murmur3_final()
148 h2 += h1; in av_murmur3_final()
150 h2 = fmix(h2); in av_murmur3_final()
[all …]

12345678910>>...1219