Searched refs:max_size (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-macho.c39 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, ULong max_size) argument
/external/valgrind/main/coregrind/
H A Dpub_core_coredump.h42 ULong max_size );
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/
H A Dmax_size.pass.cpp15 // static size_type max_size(const allocator_type& a) noexcept;
36 size_t max_size() const function in struct:B
47 assert(std::allocator_traits<A<int> >::max_size(a) ==
52 assert(std::allocator_traits<A<int> >::max_size(a) ==
58 assert(std::allocator_traits<B<int> >::max_size(b) == 100);
62 assert(std::allocator_traits<B<int> >::max_size(b) == 100);
67 static_assert(noexcept(std::allocator_traits<std::allocator<int>>::max_size(a)) == true, "");
/external/chromium_org/extensions/browser/app_window/
H A Dsize_constraints.cc17 const gfx::Size& max_size)
18 : minimum_size_(min_size), maximum_size_(max_size) {}
36 const gfx::Size max_size = GetMaximumSize(); local
37 if (max_size.width() != kUnboundedSize)
38 size.set_width(std::min(size.width(), max_size.width()));
39 if (max_size.height() != kUnboundedSize)
40 size.set_height(std::min(size.height(), max_size.height()));
52 const gfx::Size max_size = GetMaximumSize(); local
53 return max_size.width() != kUnboundedSize ||
54 max_size
16 SizeConstraints(const gfx::Size& min_size, const gfx::Size& max_size) argument
79 set_maximum_size(const gfx::Size& max_size) argument
[all...]
/external/chromium_org/testing/gtest/xcode/Samples/FrameworkSample/
H A Dwidget.cc58 void Widget::GetCharPtrValue(char* buffer, size_t max_size) const {
59 // Copy the char* representation of name_ into buffer, up to max_size.
60 strncpy(buffer, name_.c_str(), max_size-1);
61 buffer[max_size-1] = '\0';
H A Dwidget_test.cc57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
/external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.members/
H A Dmax_size.pass.cpp15 // size_type max_size() const;
29 assert(a.max_size() == 100);
34 assert(a.max_size() == 20);
39 assert(a.max_size() == 200);
/external/protobuf/gtest/xcode/Samples/FrameworkSample/
H A Dwidget.cc58 void Widget::GetCharPtrValue(char* buffer, size_t max_size) const {
59 // Copy the char* representation of name_ into buffer, up to max_size.
60 strncpy(buffer, name_.c_str(), max_size-1);
61 buffer[max_size-1] = '\0';
H A Dwidget_test.cc57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
/external/libcxx/test/re/re.results/re.results.size/
H A Dmax_size.pass.cpp14 // size_type max_size() const;
24 assert(m.max_size() > 0);
/external/chromium_org/v8/test/cctest/
H A Dtest-gc-tracer.cc38 const int max_size = 6; local
39 typedef RingBuffer<int, max_size>::const_iterator Iter;
40 RingBuffer<int, max_size> ring_buffer;
46 for (int i = 0; i < max_size / 2; i++) ring_buffer.push_back(i);
49 CHECK(static_cast<int>(ring_buffer.size()) == max_size / 2);
74 const int max_size = 6; local
75 typedef RingBuffer<int, max_size>::const_iterator Iter;
76 RingBuffer<int, max_size> ring_buffer;
79 for (int i = 0; i < 2 * max_size + 3; i++) ring_buffer.push_back(i);
82 CHECK(static_cast<int>(ring_buffer.size()) == max_size);
107 const int max_size = 6; local
[all...]
/external/libcxx/test/containers/associative/map/map.access/
H A Dmax_size.pass.cpp14 // size_type max_size() const;
26 assert(m.max_size() != 0);
32 assert(m.max_size() != 0);
/external/libcxx/test/containers/associative/multimap/
H A Dmax_size.pass.cpp14 // size_type max_size() const;
26 assert(m.max_size() != 0);
32 assert(m.max_size() != 0);
/external/libcxx/test/containers/associative/multiset/
H A Dmax_size.pass.cpp14 // size_type max_size() const;
26 assert(m.max_size() != 0);
32 assert(m.max_size() != 0);
/external/libcxx/test/containers/associative/set/
H A Dmax_size.pass.cpp14 // size_type max_size() const;
26 assert(m.max_size() != 0);
32 assert(m.max_size() != 0);
/external/libcxx/test/containers/sequences/forwardlist/
H A Dmax_size.pass.cpp12 // size_type max_size() const;
25 assert(c.max_size() > 0);
32 assert(c.max_size() > 0);
/external/libcxx/test/containers/unord/unord.map/
H A Dmax_size.pass.cpp16 // size_type max_size() const;
27 assert(u.max_size() > 0);
33 assert(u.max_size() > 0);
/external/libcxx/test/containers/unord/unord.multimap/
H A Dmax_size.pass.cpp16 // size_type max_size() const;
27 assert(u.max_size() > 0);
33 assert(u.max_size() > 0);
/external/libcxx/test/containers/unord/unord.multiset/
H A Dmax_size.pass.cpp16 // size_type max_size() const;
27 assert(u.max_size() > 0);
33 assert(u.max_size() > 0);
/external/libcxx/test/containers/unord/unord.set/
H A Dmax_size.pass.cpp16 // size_type max_size() const;
27 assert(u.max_size() > 0);
33 assert(u.max_size() > 0);
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dvp8_partition_aggregator.cc64 bool PartitionTreeNode::CreateChildren(int max_size) { argument
65 assert(max_size > 0);
68 if (this_size_ + size_vector_[0] <= max_size) {
113 PartitionTreeNode* PartitionTreeNode::GetOptimalNode(int max_size, argument
115 CreateChildren(max_size);
123 return right->GetOptimalNode(max_size, penalty);
126 return left->GetOptimalNode(max_size, penalty);
137 first = first->GetOptimalNode(max_size, penalty);
139 second = second->GetOptimalNode(max_size, penalty);
173 void Vp8PartitionAggregator::SetPriorMinMax(int min_size, int max_size) {
182 FindOptimalConfiguration(int max_size, int penalty) argument
225 CalcNumberOfFragments(int large_partition_size, int max_payload_size, int penalty, int min_size, int max_size) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_gencmn.h14 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName);
/external/icu/icu4c/source/tools/toolutil/
H A Dpkg_gencmn.h14 const char *dataFile, uint32_t max_size, UBool sourceTOC, UBool verbose, char *gencmnFileName);
/external/libcxx/test/containers/sequences/array/array.size/
H A Dsize.pass.cpp24 assert(c.max_size() == 3);
32 assert(c.max_size() == 0);
41 static_assert(c.max_size() == 3, "");
49 static_assert(c.max_size() == 0, "");
/external/oprofile/libutil/
H A Dop_growable_buffer.c19 b->max_size = 0;
33 size_t new_size = (b->max_size + b->size) * 2;
35 b->max_size = new_size;
43 if (b->size > b->max_size)

Completed in 459 milliseconds

1234567891011>>