Home
last modified time | relevance | path

Searched refs:Sent (Results 1 – 25 of 4602) sorted by relevance

12345678910>>...185

/dports/www/libdatachannel/libdatachannel-0.16.1/examples/client-benchmark/
H A DREADME.md152 TOTL Received: 0 KB/s Sent: 0 KB/s
160 TOTL Received: 84326 KB/s Sent: 0 KB/s
163 TOTL Received: 99387 KB/s Sent: 0 KB/s
170 TOTL Received: 94871 KB/s Sent: 0 KB/s
173 TOTL Received: 96259 KB/s Sent: 0 KB/s
178 TOTL Received: 92873 KB/s Sent: 0 KB/s
181 TOTL Received: 87724 KB/s Sent: 0 KB/s
184 TOTL Received: 95123 KB/s Sent: 0 KB/s
190 TOTL Received: 98124 KB/s Sent: 0 KB/s
201 TOTL Received: 98410 KB/s Sent: 0 KB/s
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/range-v3/test/algorithm/
H A Dsearch_n.cpp33 template<class Iter, typename Sent = Iter>
39 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 0).begin() == Iter(ia)); in test_iter_impl()
40 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 0).end() == Iter(ia)); in test_iter_impl()
42 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 1, 0).end() == Iter(ia+1)); in test_iter_impl()
48 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 3).end() == Iter(ia)); in test_iter_impl()
56 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 5).end() == Iter(ia)); in test_iter_impl()
115 using Sent = typename sentinel_type<Iter>::type; in test_iter() typedef
117 test_iter_impl<Iter, Sent>(); in test_iter()
123 template<class Iter, typename Sent = Iter>
173 using Sent = typename sentinel_type<Iter>::type; in test_range() typedef
[all …]
H A Dmax.cpp40 test_iter(Iter first, Sent last) in test_iter()
64 test_iter<Iter, Sent>(1); in test_iter()
65 test_iter<Iter, Sent>(2); in test_iter()
66 test_iter<Iter, Sent>(3); in test_iter()
67 test_iter<Iter, Sent>(10); in test_iter()
68 test_iter<Iter, Sent>(1000); in test_iter()
73 test_iter_comp(Iter first, Sent last) in test_iter_comp()
98 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
99 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
100 test_iter_comp<Iter, Sent>(3); in test_iter_comp()
[all …]
H A Dmin.cpp40 test_iter(Iter first, Sent last) in test_iter()
64 test_iter<Iter, Sent>(1); in test_iter()
65 test_iter<Iter, Sent>(2); in test_iter()
66 test_iter<Iter, Sent>(3); in test_iter()
67 test_iter<Iter, Sent>(10); in test_iter()
68 test_iter<Iter, Sent>(1000); in test_iter()
73 test_iter_comp(Iter first, Sent last) in test_iter_comp()
97 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
98 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
99 test_iter_comp<Iter, Sent>(3); in test_iter_comp()
[all …]
H A Dmax_element.cpp39 test_iter(Iter first, Sent last) in test_iter()
78 test_iter<Iter, Sent>(0); in test_iter()
79 test_iter<Iter, Sent>(1); in test_iter()
80 test_iter<Iter, Sent>(2); in test_iter()
81 test_iter<Iter, Sent>(3); in test_iter()
82 test_iter<Iter, Sent>(10); in test_iter()
83 test_iter<Iter, Sent>(1000); in test_iter()
127 test_iter_comp<Iter, Sent>(0); in test_iter_comp()
128 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
129 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
[all …]
H A Dmin_element.cpp39 test_iter(Iter first, Sent last) in test_iter()
78 test_iter<Iter, Sent>(0); in test_iter()
79 test_iter<Iter, Sent>(1); in test_iter()
80 test_iter<Iter, Sent>(2); in test_iter()
81 test_iter<Iter, Sent>(3); in test_iter()
82 test_iter<Iter, Sent>(10); in test_iter()
83 test_iter<Iter, Sent>(1000); in test_iter()
127 test_iter_comp<Iter, Sent>(0); in test_iter_comp()
128 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
129 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
[all …]
H A Dminmax.cpp40 test_iter(Iter first, Sent last) in test_iter()
66 test_iter<Iter, Sent>(1); in test_iter()
67 test_iter<Iter, Sent>(2); in test_iter()
68 test_iter<Iter, Sent>(3); in test_iter()
69 test_iter<Iter, Sent>(10); in test_iter()
70 test_iter<Iter, Sent>(1000); in test_iter()
75 test_iter_comp(Iter first, Sent last) in test_iter_comp()
103 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
104 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
105 test_iter_comp<Iter, Sent>(3); in test_iter_comp()
[all …]
H A Dmismatch.cpp31 template<typename Iter, typename Sent = Iter>
40 CHECK(ranges::mismatch(Iter(ia),Sent(ia + sa),Iter(ib),Sent(ib + sa)) == in test_iter()
42 CHECK(ranges::mismatch(Iter(ia),Sent(ia + sa),Iter(ib),Sent(ib + 2)) == in test_iter()
47 CHECK(ranges::mismatch(Iter(ia),Sent(ia + sa),Iter(ib),Sent(ib + sa),std::equal_to<int>()) == in test_iter()
49 CHECK(ranges::mismatch(Iter(ia), Sent(ia + sa), Iter(ib), Sent(ib + 2), std::equal_to<int>()) == in test_iter()
53 template<typename Iter, typename Sent = Iter>
66 auto rng2 = ::MakeTestRange(Iter(ia),Sent(ia + sa)); in test_range()
67 auto rng3 = ::MakeTestRange(Iter(ib),Sent(ib + sa)); in test_range()
79 auto rng4 = ::MakeTestRange(Iter(ia),Sent(ia + sa)); in test_range()
80 auto rng5 = ::MakeTestRange(Iter(ib),Sent(ib + 2)); in test_range()
[all …]
H A Dminmax_element.cpp39 test_iter(Iter first, Sent last) in test_iter()
102 test_iter<Iter, Sent>(0); in test_iter()
103 test_iter<Iter, Sent>(1); in test_iter()
104 test_iter<Iter, Sent>(2); in test_iter()
105 test_iter<Iter, Sent>(3); in test_iter()
106 test_iter<Iter, Sent>(10); in test_iter()
107 test_iter<Iter, Sent>(1000); in test_iter()
175 test_iter_comp<Iter, Sent>(0); in test_iter_comp()
176 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
177 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
[all …]
/dports/devel/range-v3/range-v3-0.11.0/test/algorithm/
H A Dsearch_n.cpp33 template<class Iter, typename Sent = Iter>
39 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 0).begin() == Iter(ia)); in test_iter_impl()
40 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 0).end() == Iter(ia)); in test_iter_impl()
42 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 1, 0).end() == Iter(ia+1)); in test_iter_impl()
48 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 3).end() == Iter(ia)); in test_iter_impl()
56 CHECK(ranges::search_n(Iter(ia), Sent(ia+sa), 0, 5).end() == Iter(ia)); in test_iter_impl()
115 using Sent = typename sentinel_type<Iter>::type; in test_iter() typedef
117 test_iter_impl<Iter, Sent>(); in test_iter()
123 template<class Iter, typename Sent = Iter>
173 using Sent = typename sentinel_type<Iter>::type; in test_range() typedef
[all …]
H A Dmax.cpp40 test_iter(Iter first, Sent last) in test_iter()
64 test_iter<Iter, Sent>(1); in test_iter()
65 test_iter<Iter, Sent>(2); in test_iter()
66 test_iter<Iter, Sent>(3); in test_iter()
67 test_iter<Iter, Sent>(10); in test_iter()
68 test_iter<Iter, Sent>(1000); in test_iter()
73 test_iter_comp(Iter first, Sent last) in test_iter_comp()
98 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
99 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
100 test_iter_comp<Iter, Sent>(3); in test_iter_comp()
[all …]
H A Dmin.cpp40 test_iter(Iter first, Sent last) in test_iter()
64 test_iter<Iter, Sent>(1); in test_iter()
65 test_iter<Iter, Sent>(2); in test_iter()
66 test_iter<Iter, Sent>(3); in test_iter()
67 test_iter<Iter, Sent>(10); in test_iter()
68 test_iter<Iter, Sent>(1000); in test_iter()
73 test_iter_comp(Iter first, Sent last) in test_iter_comp()
97 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
98 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
99 test_iter_comp<Iter, Sent>(3); in test_iter_comp()
[all …]
H A Dmax_element.cpp39 test_iter(Iter first, Sent last) in test_iter()
78 test_iter<Iter, Sent>(0); in test_iter()
79 test_iter<Iter, Sent>(1); in test_iter()
80 test_iter<Iter, Sent>(2); in test_iter()
81 test_iter<Iter, Sent>(3); in test_iter()
82 test_iter<Iter, Sent>(10); in test_iter()
83 test_iter<Iter, Sent>(1000); in test_iter()
127 test_iter_comp<Iter, Sent>(0); in test_iter_comp()
128 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
129 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
[all …]
H A Dmin_element.cpp39 test_iter(Iter first, Sent last) in test_iter()
78 test_iter<Iter, Sent>(0); in test_iter()
79 test_iter<Iter, Sent>(1); in test_iter()
80 test_iter<Iter, Sent>(2); in test_iter()
81 test_iter<Iter, Sent>(3); in test_iter()
82 test_iter<Iter, Sent>(10); in test_iter()
83 test_iter<Iter, Sent>(1000); in test_iter()
127 test_iter_comp<Iter, Sent>(0); in test_iter_comp()
128 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
129 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
[all …]
H A Dminmax.cpp40 test_iter(Iter first, Sent last) in test_iter()
66 test_iter<Iter, Sent>(1); in test_iter()
67 test_iter<Iter, Sent>(2); in test_iter()
68 test_iter<Iter, Sent>(3); in test_iter()
69 test_iter<Iter, Sent>(10); in test_iter()
70 test_iter<Iter, Sent>(1000); in test_iter()
75 test_iter_comp(Iter first, Sent last) in test_iter_comp()
103 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
104 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
105 test_iter_comp<Iter, Sent>(3); in test_iter_comp()
[all …]
H A Dmismatch.cpp31 template<typename Iter, typename Sent = Iter>
40 CHECK(ranges::mismatch(Iter(ia),Sent(ia + sa),Iter(ib),Sent(ib + sa)) == in test_iter()
42 CHECK(ranges::mismatch(Iter(ia),Sent(ia + sa),Iter(ib),Sent(ib + 2)) == in test_iter()
47 CHECK(ranges::mismatch(Iter(ia),Sent(ia + sa),Iter(ib),Sent(ib + sa),std::equal_to<int>()) == in test_iter()
49 CHECK(ranges::mismatch(Iter(ia), Sent(ia + sa), Iter(ib), Sent(ib + 2), std::equal_to<int>()) == in test_iter()
53 template<typename Iter, typename Sent = Iter>
66 auto rng2 = ::MakeTestRange(Iter(ia),Sent(ia + sa)); in test_range()
67 auto rng3 = ::MakeTestRange(Iter(ib),Sent(ib + sa)); in test_range()
79 auto rng4 = ::MakeTestRange(Iter(ia),Sent(ia + sa)); in test_range()
80 auto rng5 = ::MakeTestRange(Iter(ib),Sent(ib + 2)); in test_range()
[all …]
H A Dminmax_element.cpp39 test_iter(Iter first, Sent last) in test_iter()
102 test_iter<Iter, Sent>(0); in test_iter()
103 test_iter<Iter, Sent>(1); in test_iter()
104 test_iter<Iter, Sent>(2); in test_iter()
105 test_iter<Iter, Sent>(3); in test_iter()
106 test_iter<Iter, Sent>(10); in test_iter()
107 test_iter<Iter, Sent>(1000); in test_iter()
175 test_iter_comp<Iter, Sent>(0); in test_iter_comp()
176 test_iter_comp<Iter, Sent>(1); in test_iter_comp()
177 test_iter_comp<Iter, Sent>(2); in test_iter_comp()
[all …]
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/ThirdParty/range-v3/test/numeric/
H A Daccumulate.cpp36 template<class Iter, class Sent = Iter>
41 CHECK(ranges::accumulate(Iter(ia), Sent(ia), 0) == 0); in test()
42 CHECK(ranges::accumulate(Iter(ia), Sent(ia), 10) == 10); in test()
43 CHECK(ranges::accumulate(Iter(ia), Sent(ia+1), 0) == 1); in test()
44 CHECK(ranges::accumulate(Iter(ia), Sent(ia+1), 10) == 11); in test()
45 CHECK(ranges::accumulate(Iter(ia), Sent(ia+2), 0) == 3); in test()
46 CHECK(ranges::accumulate(Iter(ia), Sent(ia+2), 10) == 13); in test()
47 CHECK(ranges::accumulate(Iter(ia), Sent(ia+sc), 0) == 21); in test()
48 CHECK(ranges::accumulate(Iter(ia), Sent(ia+sc), 10) == 31); in test()
51 CHECK(ranges::accumulate(make_subrange(Iter(ia), Sent(ia)), 0) == 0); in test()
[all …]
/dports/devel/range-v3/range-v3-0.11.0/test/numeric/
H A Daccumulate.cpp36 template<class Iter, class Sent = Iter>
41 CHECK(ranges::accumulate(Iter(ia), Sent(ia), 0) == 0); in test()
42 CHECK(ranges::accumulate(Iter(ia), Sent(ia), 10) == 10); in test()
43 CHECK(ranges::accumulate(Iter(ia), Sent(ia+1), 0) == 1); in test()
44 CHECK(ranges::accumulate(Iter(ia), Sent(ia+1), 10) == 11); in test()
45 CHECK(ranges::accumulate(Iter(ia), Sent(ia+2), 0) == 3); in test()
46 CHECK(ranges::accumulate(Iter(ia), Sent(ia+2), 10) == 13); in test()
47 CHECK(ranges::accumulate(Iter(ia), Sent(ia+sc), 0) == 21); in test()
48 CHECK(ranges::accumulate(Iter(ia), Sent(ia+sc), 10) == 31); in test()
51 CHECK(ranges::accumulate(make_subrange(Iter(ia), Sent(ia)), 0) == 0); in test()
[all …]
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/src/go/tests/expect/available_metrics/
H A Dcmd_metric3 "Bytes Sent": [
19 "Bytes Sent": [
34 "Bytes Sent": [
49 "Bytes Sent": [
64 "Bytes Sent": [
79 "Bytes Sent": [
94 "Bytes Sent": [
108 "Bytes Sent": [
122 "Bytes Sent": [
136 "Bytes Sent": [
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/PluginProcess/
H A DPluginControllerProxy.messages.in26 # Sent when the plug-in geometry changes.
29 # Sent when a frame has finished loading.
32 # Sent when a frame dfailed to load.
41 # Sent when the plug-in receives data for a stream.
44 # Sent when a plug-in stream has finishes loading.
47 # Sent when a plug-in stream has failed to load.
65 # Sent when a mouse wheel event should be processed.
74 # Sent when a keyboard should be processed.
77 # Sent when the plug-in focus changes.
93 # Sent when the containing NSWindow's focus changes
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/ada/
H A Dput_scos.adb185 Sent : SCO_Table_Entry variable
188 if Sent.C1 = '>' then
189 Write_Info_Char (Sent.C1);
192 if Sent.C2 /= ' ' then
193 Write_Info_Char (Sent.C2);
195 if Sent.C1 = 'S'
196 and then (Sent.C2 = 'P' or else Sent.C2 = 'p')
197 and then Sent.Pragma_Aspect_Name /= No_Name
208 if Sent.C1 = '>' and then Sent.C2 /= 'E' then
209 Output_Source_Location (Sent.From);
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/ada/
H A Dput_scos.adb185 Sent : SCO_Table_Entry variable
188 if Sent.C1 = '>' then
189 Write_Info_Char (Sent.C1);
192 if Sent.C2 /= ' ' then
193 Write_Info_Char (Sent.C2);
195 if Sent.C1 = 'S'
196 and then (Sent.C2 = 'P' or else Sent.C2 = 'p')
197 and then Sent.Pragma_Aspect_Name /= No_Name
208 if Sent.C1 = '>' and then Sent.C2 /= 'E' then
209 Output_Source_Location (Sent.From);
[all …]
/dports/lang/gcc9/gcc-9.4.0/gcc/ada/
H A Dput_scos.adb185 Sent : SCO_Table_Entry variable
188 if Sent.C1 = '>' then
189 Write_Info_Char (Sent.C1);
192 if Sent.C2 /= ' ' then
193 Write_Info_Char (Sent.C2);
195 if Sent.C1 = 'S'
196 and then (Sent.C2 = 'P' or else Sent.C2 = 'p')
197 and then Sent.Pragma_Aspect_Name /= No_Name
208 if Sent.C1 = '>' and then Sent.C2 /= 'E' then
209 Output_Source_Location (Sent.From);
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/ada/
H A Dput_scos.adb185 Sent : SCO_Table_Entry variable
188 if Sent.C1 = '>' then
189 Write_Info_Char (Sent.C1);
192 if Sent.C2 /= ' ' then
193 Write_Info_Char (Sent.C2);
195 if Sent.C1 = 'S'
196 and then (Sent.C2 = 'P' or else Sent.C2 = 'p')
197 and then Sent.Pragma_Aspect_Name /= No_Name
208 if Sent.C1 = '>' and then Sent.C2 /= 'E' then
209 Output_Source_Location (Sent.From);
[all …]

12345678910>>...185