MCPcopy Create free account
hub / github.com/ImageEngine/cortex / RadixSort

Method RadixSort

src/IECore/RadixSort.cpp:49–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47BOOST_STATIC_ASSERT( sizeof(float) == 4 );
48
49RadixSort::RadixSort() : m_currentSize( 0 ), m_ranks( nullptr ), m_ranks2( nullptr )
50{
51 m_ranks = new UIntVectorData();
52 m_ranks2 = new UIntVectorData();
53
54 m_currentSize |= 0x80000000;
55}
56
57RadixSort::~RadixSort()
58{

Callers 3

testFloatMethod · 0.80
testIntMethod · 0.80
testUIntMethod · 0.80

Calls

no outgoing calls

Tested by 3

testFloatMethod · 0.64
testIntMethod · 0.64
testUIntMethod · 0.64