| /oneTBB/examples/getting_started/sub_string_finder/ |
| H A D | sub_string_finder_extended.cpp | 32 std::size_t max_size = 0, max_pos = 0; in SerialSubStringFinder() local 39 if (k > max_size) { in SerialSubStringFinder() 40 max_size = k; in SerialSubStringFinder() 45 max_array[i] = max_size; in SerialSubStringFinder() 59 std::size_t max_size = 0, max_pos = 0; in operator ()() local 66 if (k > max_size) { in operator ()() 67 max_size = k; in operator ()() 73 max_array[i] = max_size; in operator ()()
|
| H A D | sub_string_finder.cpp | 39 std::size_t max_size = 0, max_pos = 0; in operator ()() local 46 if (k > max_size) { in operator ()() 47 max_size = k; in operator ()() 53 max_array[i] = max_size; in operator ()()
|
| H A D | sub_string_finder_pretty.cpp | 36 std::size_t max_size = 0, max_pos = 0; in operator ()() local 43 if (k + 1 > max_size) { in operator ()() 44 max_size = k + 1; in operator ()() 50 max_array[i] = max_size; in operator ()()
|
| /oneTBB/test/conformance/ |
| H A D | conformance_allocators.cpp | 37 AssertSameType(allocator.max_size(), typename std::allocator_traits<Allocator>::size_type(0)); 40 …EQUIRE_MESSAGE((allocator.max_size() * typename std::allocator_traits<Allocator>::size_type(sizeof…
|
| H A D | conformance_concurrent_hash_map.cpp | 235 CHECK(x.size()<=x.max_size()); in CheckTable()
|
| H A D | conformance_concurrent_vector.cpp | 425 victim.reserve(victim.max_size()+1); in TestExceptions()
|
| /oneTBB/examples/parallel_pipeline/square/ |
| H A D | square.cpp | 48 static TextSlice* allocate(std::size_t max_size) { in allocate() argument 51 max_size + 1); in allocate() 53 t->physical_end = t->begin() + max_size; in allocate()
|
| /oneTBB/test/common/ |
| H A D | allocator_test_common.h | 139 AssertSameType(a.max_size(), typename A::size_type(0)); in TestBrokenAllocator() 142 …REQUIRE_MESSAGE((a.max_size() * typename A::size_type(sizeof(T)) >= a.max_size()), "max_size large… in TestBrokenAllocator()
|
| H A D | concurrent_associative_common.h | 451 REQUIRE_MESSAGE(ccont.max_size() > 0, "Concurrent container max size is invalid"); 1137 if (!(!c.empty() && c.size() == lst.size() && c.max_size() >= c.size())) { 1143 std::cout << "Max size greater? " << (c.max_size() >= c.size()) << std::endl; 1145 REQUIRE((!c.empty() && c.size() == lst.size() && c.max_size() >= c.size()));
|
| H A D | custom_allocators.h | 88 std::size_t max_size() const noexcept { in max_size() function
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | tbb_allocator.h | 84 size_type max_size() const noexcept { in max_size() function
|
| H A D | cache_aligned_allocator.h | 63 std::size_t max_size() const noexcept { in max_size() function
|
| H A D | scalable_allocator.h | 248 size_type max_size() const noexcept { in max_size() function
|
| H A D | memory_pool.h | 120 size_type max_size() const throw() { in max_size() function
|
| H A D | concurrent_vector.h | 491 size_type max_size() const noexcept { in max_size() function 492 return allocator_traits_type::max_size(base_type::get_allocator()); in max_size() 502 if (n > max_size()) { in reserve()
|
| H A D | concurrent_hash_map.h | 1074 size_type max_size() const { in __TBB_requires() 1075 return allocator_traits_type::max_size(base_type::get_allocator()); in __TBB_requires()
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Working_on_the_Assembly_Line_pipeline.rst | 76 // Allocate a TextSlice object that can hold up to max_size characters. 77 static TextSlice* allocate( size_t max_size ) { 79 …Slice* t = (TextSlice*)oneapi::tbb::tbb_allocator<char>().allocate( sizeof(TextSlice)+max_size+1 ); 81 t->physical_end = t->begin()+max_size;
|
| /oneTBB/test/tbb/ |
| H A D | test_concurrent_priority_queue.cpp | 108 …OO_LARGE_SZ = std::vector<MyThrowingType, typename CPQExTestType::allocator_type>{}.max_size() + 1; in test_exceptions()
|
| H A D | test_parallel_pipeline.cpp | 614 unsigned max_size = (sizeof(type1) > sizeof(type2) ) ? sizeof(type1) : sizeof(type2); in run_function() local 616 buffers[i] = malloc(max_size); in run_function()
|
| H A D | test_concurrent_hash_map.cpp | 204 CHECK(c.max_size() >= c.size()); in Examine()
|
| /oneTBB/doc/main/reference/scalable_memory_pools/ |
| H A D | memory_pool_allocator_cls.rst | 62 size_type max_size() const throw();
|
| /oneTBB/include/oneapi/tbb/detail/ |
| H A D | _concurrent_unordered_base.h | 407 size_type max_size() const noexcept { return allocator_traits_type::max_size(get_allocator()); } in max_size() function 643 return max_size(); in unsafe_max_bucket_count()
|
| H A D | _segment_table.h | 234 if (n > allocator_traits_type::max_size(my_segment_table_allocator)) { in reserve()
|
| H A D | _concurrent_skip_list.h | 623 size_type max_size() const { in max_size() function 624 return node_allocator_traits::max_size(my_node_allocator); in max_size()
|