Home
last modified time | relevance | path

Searched refs:Less (Results 1 – 25 of 8792) sorted by relevance

12345678910>>...352

/dports/devel/fatal/fatal-2021.12.27.00/fatal/type/impl/
H A Dselect.h58 vn<Less, min<T0, T1, Less>, min<T2, T3, Less>, T...>
70 min<T0, T1, Less>, min<T2, T3, Less>,
71 min<T4, T5, Less>, min<T6, T7, Less>,
92 min<T0, T1, Less>, min<T2, T3, Less>,
93 min<T4, T5, Less>, min<T6, T7, Less>,
94 min<T8, T9, Less>, min<T10, T11, Less>,
123 vx<Less, max<T0, T1, Less>, max<T2, T3, Less>, T...>
135 max<T0, T1, Less>, max<T2, T3, Less>,
136 max<T4, T5, Less>, max<T6, T7, Less>,
157 max<T0, T1, Less>, max<T2, T3, Less>,
[all …]
H A Dcompare.h20 template <typename Less, typename LHS, typename RHS>
21 struct sc<Less, LHS, RHS, -1>: std::true_type {};
24 struct sc<Less, LHS, RHS, 1>: std::false_type {};
36 typename Less,
43 Less,
46 Less::template apply<L, R>::value
48 : Less::template apply<R, L>::value
58 typename Less,
65 typename Less,
72 typename Less,
[all …]
/dports/devel/upp/upp/uppsrc/Core/
H A DInMap.hpp1 template <class T, class Less>
2 int SortedIndex<T, Less>::FindAdd(const T& key) in FindAdd()
5 if(i == GetCount() || Less()(key, iv[i])) in FindAdd()
10 template <class T, class Less>
16 template <class T, class Less>
19 int i = iv.FindUpperBound(x, Less()); in FindLast()
23 template <class T, class Less>
29 template <class T, class Less>
38 template <class T, class Less>
89 SortedVectorMap<K, T, Less>& SortedVectorMap<K, T, Less>::operator=(SortedVectorMap&& s) in operator =()
[all …]
H A DCoSort.h1 template <class I, class Less>
54 template <class I, class Less>
61 template <class Range, class Less>
73 template <class Range, class Less>
226 template <class Range, class Less>
245 template <class Range, class Less>
265 template <class Map, class Less>
280 template <class Map, class Less>
295 template <class Map, class Less>
310 template <class Map, class Less>
[all …]
H A DFixedMap.h1 template <class K, class T, class V, class Less>
12 void Finish() { IndexSort(key, value, Less()); Shrink(); } in Finish()
14 int Find(const K& k) const { return FindBinary(key, k, Less()); } in Find()
82 template <class K, class T, class Less = StdLess<K> >
84 public FixedAMap< K, T, Vector<T>, Less > {
85 typedef FixedAMap< K, T, Vector<T>, Less > B;
95 STL_MAP_COMPATIBILITY(FixedVectorMap<K _cm_ T _cm_ Less>)
98 template <class K, class T, class Less = StdLess<K> >
100 public FixedAMap< K, T, Array<T>, Less > {
101 typedef FixedAMap< K, T, Array<T>, Less > B;
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/rust_decimal/tests/
H A Ddecimal_tests.rs1126 Less, in it_cmps_decimals()
1198 Less, in it_cmps_decimals()
1232 Less, in it_cmps_decimals()
1242 Less, in it_cmps_decimals()
1262 Less, in it_cmps_decimals()
1361 Less, in it_cmps_decimals()
1385 Less, in it_cmps_decimals()
1395 Less, in it_cmps_decimals()
1419 Less, in it_cmps_decimals()
1429 Less, in it_cmps_decimals()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/rust_decimal/tests/
H A Ddecimal_tests.rs1126 Less, in it_cmps_decimals()
1198 Less, in it_cmps_decimals()
1232 Less, in it_cmps_decimals()
1242 Less, in it_cmps_decimals()
1262 Less, in it_cmps_decimals()
1361 Less, in it_cmps_decimals()
1385 Less, in it_cmps_decimals()
1395 Less, in it_cmps_decimals()
1419 Less, in it_cmps_decimals()
1429 Less, in it_cmps_decimals()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/rust_decimal/tests/
H A Ddecimal_tests.rs1154 Less, in it_cmps_decimals()
1226 Less, in it_cmps_decimals()
1260 Less, in it_cmps_decimals()
1270 Less, in it_cmps_decimals()
1290 Less, in it_cmps_decimals()
1389 Less, in it_cmps_decimals()
1413 Less, in it_cmps_decimals()
1423 Less, in it_cmps_decimals()
1447 Less, in it_cmps_decimals()
1457 Less, in it_cmps_decimals()
[all …]
/dports/benchmarks/hyperfine/hyperfine-1.12.0/cargo-crates/rust_decimal-1.16.0/tests/
H A Ddecimal_tests.rs1119 Less, in it_cmps_decimals()
1191 Less, in it_cmps_decimals()
1225 Less, in it_cmps_decimals()
1235 Less, in it_cmps_decimals()
1255 Less, in it_cmps_decimals()
1354 Less, in it_cmps_decimals()
1378 Less, in it_cmps_decimals()
1388 Less, in it_cmps_decimals()
1412 Less, in it_cmps_decimals()
1422 Less, in it_cmps_decimals()
[all …]
/dports/lang/rust/rustc-1.58.1-src/library/core/tests/
H A Dcmp.rs8 assert_eq!(5.cmp(&10), Less); in test_int_totalord()
11 assert_eq!((-5).cmp(&12), Less); in test_int_totalord()
73 assert!(Less < Equal); in test_ordering_order()
79 assert_eq!(Equal.then(Less), Less); in test_ordering_then()
82 assert_eq!(Less.then(Less), Less); in test_ordering_then()
83 assert_eq!(Less.then(Equal), Less); in test_ordering_then()
84 assert_eq!(Less.then(Greater), Less); in test_ordering_then()
92 assert_eq!(Equal.then_with(|| Less), Less); in test_ordering_then_with()
95 assert_eq!(Less.then_with(|| Less), Less); in test_ordering_then_with()
96 assert_eq!(Less.then_with(|| Equal), Less); in test_ordering_then_with()
[all …]
/dports/math/openturns/openturns-1.18/lib/src/Base/Common/
H A DLess.cxx26 CLASSNAMEINIT(Less)
28 static const Factory<Less> Factory_Less;
31 Less::Less() in Less() function in Less
38 String Less::__repr__() const in __repr__()
40 return OSS() << "class=" << Less::GetClassName() in __repr__()
44 String Less::__str__(const String & offset) const in __str__()
52 Less * Less::clone() const in clone()
54 return new Less(*this); in clone()
58 Bool Less::operator() (const Scalar a, in operator ()()
66 void Less::save(Advocate & adv) const in save()
[all …]
/dports/lang/fpc-source/fpc-3.2.2/tests/tbs/
H A Dtb0644.pp15 Less: Double;
21 (Value: 1.5; AsIs: 1; More: 2; Less: 1; Exc: False),
22 (Value: 0; AsIs: 0; More: 0; Less: 0; Exc: False),
32 (Value: 0.125; AsIs: 0; More: 0; Less: 0; Exc: False),
34 (Value: -1.5; AsIs: -1; More: -1; Less: -2; Exc: False),
37 (Value: -1E300; AsIs: -1E300; More: -1E300; Less: -1E300; Exc: False),
38 (Value: -0.125; AsIs: 0; More: 0; Less: 0; Exc: False),
40 (Value: 1E1000; AsIs: 1E1000; More: 1E1000; Less: 1E1000; Exc: False),
41 (Value: -1E1000; AsIs: -1E1000; More: -1E1000; Less: -1E1000; Exc: False),
84 if not SameValue(v, ds.Less) then begin
[all …]
H A Dtb0643.pp16 Less: Double;
22 (Value: 1.5; AsIs: 0.5; More: 0; Less: 0; Exc: False),
23 (Value: 0; AsIs: 0; More: 0.5; Less: -0.5; Exc: False),
24 (Value: 2251799813685248; AsIs: 0; More: 0.5; Less: 0.5; Exc: False),
25 (Value: 4503599627370496; AsIs: 0; More: 0; Less: 0.5; Exc: False),
26 (Value: 1E300; AsIs: 0; More: 0; Less: 0; Exc: False),
27 (Value: 0.125; AsIs: 0.125; More: 0.625; Less: -0.375; Exc: False),
29 (Value: -1.5; AsIs: -0.5; More: 0; Less: 0; Exc: False),
30 (Value: -2251799813685248; AsIs: 0; More: -0.5; Less: -0.5; Exc: False),
77 if not SameValue(v, ds.Less) then begin
[all …]
/dports/devel/fatal/fatal-2021.12.27.00/fatal/type/
H A Dselect.h21 template <typename LHS, typename RHS, typename Less = less>
22 using min = impl_sl::min<LHS, RHS, Less>;
24 template <typename LHS, typename RHS, typename Less = less>
25 using max = impl_sl::max<LHS, RHS, Less>;
27 template <typename Less, typename... Args>
28 using vmin = typename impl_sl::vn<Less, Args...>::type;
30 template <typename Less, typename... Args>
31 using vmax = typename impl_sl::vx<Less, Args...>::type;
33 template <typename Less, typename T, template <typename...> class... Filter>
34 using lmin = typename impl_sl::ln<Less, T, Filter...>::type;
[all …]
/dports/devel/upp/upp/uppsrc/Core/src.tpp/
H A Dalgo_sort_en-us.tpp16 ange], [@(0.0.255) class]_[*@4 Less]>&]
33 ss]_[*@4 Range], [@(0.0.255) class]_[*@4 Less]>&]
52 [@(0.0.255) class]_[*@4 Less]>&]
99 [@(0.0.255) class]_[*@4 Less]>&]
149 lass]_[*@4 Range], [@(0.0.255) class]_[*@4 Less]>&]
189 [@(0.0.255) class]_[*@4 Less]>&]
205 ], [@(0.0.255) class]_[*@4 Less]>&]
222 ap], [@(0.0.255) class]_[*@4 Less]>&]
239 [*@4 Map], [@(0.0.255) class]_[*@4 Less]>&]
258 ex], [@(0.0.255) class]_[*@4 Less]>&]
[all …]
H A Dalgo_cosort_en-us.tpp16 [*@4 Range], [@(0.0.255) class]_[*@4 Less]>&]
33 lass]_[*@4 Range], [@(0.0.255) class]_[*@4 Less]>&]
52 [@(0.0.255) class]_[*@4 Less]>&]
99 [@(0.0.255) class]_[*@4 Less]>&]
150 lass]_[*@4 Range], [@(0.0.255) class]_[*@4 Less]>&]
188 [*@4 Map], [@(0.0.255) class]_[*@4 Less]>&]
205 s]_[*@4 Map], [@(0.0.255) class]_[*@4 Less]>&]
222 lass]_[*@4 Map], [@(0.0.255) class]_[*@4 Less]>&]
241 lass]_[*@4 Map], [@(0.0.255) class]_[*@4 Less]>&]
262 [@(0.0.255) class]_[*@4 Less]>&]
[all …]
/dports/textproc/p5-Text-TestBase/Text-TestBase-0.13/
H A DMANIFEST8 lib/Test/Base/Less.pm
13 t/Test-Base-Less/01_run_is.t
14 t/Test-Base-Less/02_only.t
15 t/Test-Base-Less/03_skip.t
16 t/Test-Base-Less/04_last.t
17 t/Test-Base-Less/05_test.t
18 t/Test-Base-Less/06_test_base_less_custom_filters.t
19 t/Test-Base-Less/07_test_base_less_run.t
20 t/Test-Base-Less/default_filters.t
21 t/Test-Base-Less/multiline.t
[all …]
/dports/textproc/htmltest/htmltest-0.15.0/vendor/github.com/golangplus/sort/
H A Dsort.go31 func (is InterfaceStruct) Less(i, j int) bool { func
47 LessF: Less,
61 return data.Less(indexes[i], indexes[j])
81 return Less(indexes[i], indexes[j])
97 LessF: Less,
111 return data.Less(indexes[i], indexes[j])
131 return Less(indexes[i], indexes[j])
141 func IsSortedF(Len int, Less func(i, j int) bool) bool {
143 if Less(i, i-1) {
153 return Less(j, i)
[all …]
/dports/lang/rust/rustc-1.58.1-src/library/std/src/f32/
H A Dtests.rs690 assert_eq!(Ordering::Less, (-0.0_f32).total_cmp(&0.0)); in test_total_cmp()
695 assert_eq!(Ordering::Less, 0.5_f32.total_cmp(&1.0)); in test_total_cmp()
696 assert_eq!(Ordering::Less, 1.0_f32.total_cmp(&1.5)); in test_total_cmp()
697 assert_eq!(Ordering::Less, 1.5_f32.total_cmp(&2.5)); in test_total_cmp()
738 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&0.0)); in test_total_cmp()
742 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&0.5)); in test_total_cmp()
743 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&1.0)); in test_total_cmp()
744 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&1.5)); in test_total_cmp()
745 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&2.5)); in test_total_cmp()
760 assert_eq!(Ordering::Less, (-s_nan()).total_cmp(&0.0)); in test_total_cmp()
[all …]
/dports/lang/rust/rustc-1.58.1-src/library/std/src/f64/
H A Dtests.rs674 assert_eq!(Ordering::Less, (-0.0_f64).total_cmp(&0.0)); in test_total_cmp()
679 assert_eq!(Ordering::Less, 0.5_f64.total_cmp(&1.0)); in test_total_cmp()
680 assert_eq!(Ordering::Less, 1.0_f64.total_cmp(&1.5)); in test_total_cmp()
681 assert_eq!(Ordering::Less, 1.5_f64.total_cmp(&2.5)); in test_total_cmp()
722 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&0.0)); in test_total_cmp()
726 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&0.5)); in test_total_cmp()
727 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&1.0)); in test_total_cmp()
728 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&1.5)); in test_total_cmp()
729 assert_eq!(Ordering::Less, (-q_nan()).total_cmp(&2.5)); in test_total_cmp()
744 assert_eq!(Ordering::Less, (-s_nan()).total_cmp(&0.0)); in test_total_cmp()
[all …]
/dports/math/gecode/gecode-0916a1a/gecode/support/
H A Dsort.hpp40 template<class Type, class Less>
95 template<class Type, class Less>
111 template<class Type, class Less>
128 template<class Type, class Less>
161 class Less { class
183 template<class Type, class Less>
185 insertion(Type* x, int n, Less &l) { in insertion()
208 Less<Type> l; in insertion()
228 template<class Type, class Less>
230 quicksort(Type* x, int n, Less &l) { in quicksort()
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/ugorji/go/codec/codec/
H A Dsort-slice.generated.go16 func (p stringSlice) Less(i, j int) bool { func
24 func (p float32Slice) Less(i, j int) bool { func
32 func (p float64Slice) Less(i, j int) bool { func
40 func (p uintSlice) Less(i, j int) bool { func
48 func (p uint8Slice) Less(i, j int) bool { func
56 func (p uint16Slice) Less(i, j int) bool { func
64 func (p uint32Slice) Less(i, j int) bool { func
88 func (p intSlice) Less(i, j int) bool { func
96 func (p int8Slice) Less(i, j int) bool { func
128 func (p boolSlice) Less(i, j int) bool { func
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/sort/
H A Dsort.go31 Less(i, j int) bool methodSpec
89 if data.Less(m1, m0) {
93 if data.Less(m2, m1) {
96 if data.Less(m1, m0) {
218 if data.Less(i, i-6) {
248 Less func(i, j int) bool member
260 return r.Interface.Less(j, i)
272 if data.Less(i, i-1) {
436 if data.Less(h, a) {
460 if !data.Less(m, h) {
[all …]
/dports/lang/gcc8/gcc-8.5.0/libgo/go/sort/
H A Dsort.go19 Less(i, j int) bool methodSpec
76 if data.Less(m1, m0) {
80 if data.Less(m2, m1) {
83 if data.Less(m1, m0) {
205 if data.Less(i, i-6) {
235 Less func(i, j int) bool member
247 return r.Interface.Less(j, i)
259 if data.Less(i, i-1) {
415 if data.Less(h, a) {
439 if !data.Less(m, h) {
[all …]
/dports/lang/gcc10/gcc-10.3.0/libgo/go/sort/
H A Dsort.go19 Less(i, j int) bool methodSpec
76 if data.Less(m1, m0) {
80 if data.Less(m2, m1) {
83 if data.Less(m1, m0) {
205 if data.Less(i, i-6) {
235 Less func(i, j int) bool member
247 return r.Interface.Less(j, i)
259 if data.Less(i, i-1) {
415 if data.Less(h, a) {
439 if !data.Less(m, h) {
[all …]

12345678910>>...352