Home
last modified time | relevance | path

Searched refs:my_max (Results 1 – 3 of 3) sorted by relevance

/oneTBB/test/common/
H A Dconcurrent_priority_queue_common.h248 T my_min, my_max; variable
255 : n_thread(n), my_min(min), my_max(max), q(cpq) {} in FillBody()
262 if (elem == my_max) elem = my_min; in operator()
270 T my_max; member
278 : my_max(max), q(cpq) {} in EmptyBody()
281 T elem(my_max), last; in operator()
287 elem = my_max; in operator()
H A Dutils.h151 return my_max;
168 return static_cast<result_type>(my_seed >> (64 - size * CHAR_BIT)) % my_max;
173 static constexpr result_type my_max = std::numeric_limits<result_type>::max();
/oneTBB/examples/graph/binpack/
H A Dbinpack.cpp223 value_type my_min, my_max; member in bin_printer
231 my_max(0), in bin_printer()
245 my_max = std::max(sum, my_max); in operator ()()
257 << "; Max size: " << my_max << "; Min size: " << my_min << "\n" in operator ()()