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

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

Completed in 51 milliseconds