HomeSort by relevance Sort by last modified time
    Searched refs:MAX_SPLITS (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/system_wrappers/source/spreadsortlib/
constants.hpp 33 static const unsigned MAX_SPLITS = 10;
spreadsort.hpp 54 unsigned relative_width = (LOG_CONST * log_range)/((divisor > MAX_SPLITS) ? MAX_SPLITS : divisor);
96 //If we can finish in one iteration without exceeding either (2 to the MAX_SPLITS) or n bins, do so
97 if((log_divisor = log_range - rough_log_2_size(count)) <= 0 && log_range < MAX_SPLITS)
104 //Cannot exceed MAX_SPLITS or cache misses slow down bin lookups dramatically
105 if((log_range - log_divisor) > MAX_SPLITS)
106 log_divisor = log_range - MAX_SPLITS;
    [all...]

Completed in 244 milliseconds