Home
last modified time | relevance | path

Searched refs:float_sort (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/sort/spreadsort/
Dfloat_sort.hpp87 inline void float_sort(RandomAccessIter first, RandomAccessIter last) in float_sort() function
92 detail::float_sort(first, last); in float_sort()
102 inline void float_sort(Range& range) in float_sort() function
104 float_sort(boost::begin(range), boost::end(range)); in float_sort()
116 inline void float_sort(RandomAccessIter first, RandomAccessIter last, in float_sort() function
122 detail::float_sort(first, last, rshift(*first, 0), rshift); in float_sort()
133 inline void float_sort(Range& range, Right_shift rshift) in float_sort() function
135 float_sort(boost::begin(range), boost::end(range), rshift); in float_sort()
149 inline void float_sort(RandomAccessIter first, RandomAccessIter last, in float_sort() function
155 detail::float_sort(first, last, rshift(*first, 0), rshift, comp); in float_sort()
[all …]
Dspreadsort.hpp91 float_sort(first, last); in spreadsort()
/third_party/boost/libs/sort/test/
Dtest.log16 compile-c-c++ ..\..\..\bin.v2\libs\sort\test\float_sort.test\msvc-12.0\debug\threading-multi\float_…
18 msvc.link ..\..\..\bin.v2\libs\sort\test\float_sort.test\msvc-12.0\debug\threading-multi\float_sort
19 msvc.manifest ..\..\..\bin.v2\libs\sort\test\float_sort.test\msvc-12.0\debug\threading-multi\float_…
20 ….capture-output ..\..\..\bin.v2\libs\sort\test\float_sort.test\msvc-12.0\debug\threading-multi\flo…
22 **passed** ..\..\..\bin.v2\libs\sort\test\float_sort.test\msvc-12.0\debug\threading-multi\float_sor…
Dfloat_sort_test.cpp59 float_sort(test_vec.begin(), test_vec.end(), shifter); in test_vector()
63 float_sort(test_vec.begin(), test_vec.end(), shifter, less<FloatType>()); in test_vector()
DJamfile.v218 : : : : float_sort ]
/third_party/boost/boost/sort/spreadsort/detail/
Dfloat_sort.hpp704 float_sort(RandomAccessIter first, RandomAccessIter last) in float_sort() function
719 float_sort(RandomAccessIter first, RandomAccessIter last) in float_sort() function
735 float_sort(RandomAccessIter first, RandomAccessIter last) in float_sort() function
751 float_sort(RandomAccessIter first, RandomAccessIter last, Div_type,
764 float_sort(RandomAccessIter first, RandomAccessIter last, Div_type, in float_sort() function
777 float_sort(RandomAccessIter first, RandomAccessIter last, Div_type,
789 float_sort(RandomAccessIter first, RandomAccessIter last, Div_type,
804 float_sort(RandomAccessIter first, RandomAccessIter last, Div_type, in float_sort() function
819 float_sort(RandomAccessIter first, RandomAccessIter last, Div_type,
/third_party/boost/libs/sort/example/
Dshiftfloatsample.cpp83 float_sort(array.begin(), array.end(), rightshift()); in main()
Ddouble.cpp81 float_sort(array.begin(), array.end()); in main()
Dfloatfunctorsample.cpp112 float_sort(array.begin(), array.end(), rightshift(), lessthan()); in main()
/third_party/boost/libs/sort/doc/html/
Dstandalone_HTML.manifest6 sort/single_thread/spreadsort/sort_hpp/float_sort.html
/third_party/boost/libs/sort/doc/
Dspreadsort.qbk48 [def __float_sort [^[funcref boost::sort::spreadsort::float_sort float_sort]]]
112 …C++ Reference section, click on the appropriate overload, for example `float_sort(RandomAccessIter…
118 float_sort(array.begin(), array.end());
526 [section:float_sort Float Sort]
528 …int numbers sort in the reverse order of integers with the same bits. float_sort is roughly 2X as…
532 float_sort checks the size of the data type and whether it is castable, picking
535 …s is an essential utility for creating a custom rightshift functor for float_sort, when one is nee…
572 [endsect] [/section:float_sort Float Sort]
719 and `integer_sort/float_sort` would have the same ['[bigo](N)] performance