Searched defs:max_size (Results 1 - 25 of 100) sorted by relevance

1234

/external/google-breakpad/src/testing/gtest/xcode/Samples/FrameworkSample/
H A Dwidget_test.cc57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
/external/protobuf/gtest/xcode/Samples/FrameworkSample/
H A Dwidget_test.cc57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
/external/valgrind/coregrind/m_coredump/
H A Dcoredump-macho.c38 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, ULong max_size) argument
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/Samples/FrameworkSample/
H A Dwidget_test.cc57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
/external/eigen/bench/btl/generic_bench/static/
H A Dbench_static.hh46 const int max_size = TINY_MV_MAX_SIZE; local
51 static_size_generator<max_size,Perf_Analyzer,Action,Interface>::go(tab_sizes,tab_mflops);
/external/v8/test/cctest/
H A Dtest-gc-tracer.cc37 const int max_size = 6; local
38 typedef RingBuffer<int, max_size>::const_iterator Iter;
39 RingBuffer<int, max_size> ring_buffer;
45 for (int i = 0; i < max_size / 2; i++) ring_buffer.push_back(i);
48 CHECK(static_cast<int>(ring_buffer.size()) == max_size / 2);
73 const int max_size = 6; local
74 typedef RingBuffer<int, max_size>::const_iterator Iter;
75 RingBuffer<int, max_size> ring_buffer;
78 for (int i = 0; i < 2 * max_size + 3; i++) ring_buffer.push_back(i);
81 CHECK(static_cast<int>(ring_buffer.size()) == max_size);
106 const int max_size = 6; local
[all...]
/external/libcxx/test/std/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/nanopb-c/
H A Dpb_encode.h24 * 4) Substreams will modify max_size and bytes_written. Don't use them
41 size_t max_size; /* Limit number of output bytes written (or use SIZE_MAX). */ member in struct:_pb_ostream_t
/external/opencv3/3rdparty/libwebp/enc/
H A Dhistogram.h49 int max_size; // maximum capacity member in struct:__anon14947
/external/elfutils/libdw/
H A Ddwarf_getpubnames.c91 size_t max_size = dbg->sectiondata[IDX_debug_pubnames]->d_size; local
92 if (mem[cnt].set_start >= max_size
93 || len - (2 + 2 * len_bytes) > max_size - mem[cnt].set_start)
/external/webp/src/enc/
H A Dhistogram.h53 int max_size; // maximum capacity member in struct:__anon20547
/external/avahi/avahi-core/
H A Ddns.h33 size_t size, rindex, max_size; member in struct:AvahiDnsPacket
/external/libcxx/test/std/containers/
H A Dstack_allocator.h58 size_type max_size() const {return N;} function in class:stack_allocator
/external/regex-re2/util/
H A Dsparse_set.h59 SparseSet(int max_size) { argument
60 max_size_ = max_size;
61 sparse_to_dense_ = new int[max_size];
62 dense_ = new int[max_size];
67 for (int i = 0; i < max_size; i++) {
121 // Indices can be in the range [0, max_size).
122 int max_size() const { return max_size_; } function in class:re2::SparseSet
/external/vixl/test/
H A Dtest-invalset.cc167 size_t max_size = set.size(); local
169 VIXL_CHECK(set.size() == max_size - 1);
170 for (size_t i = 2; i <= max_size; i++) {
172 VIXL_CHECK(set.size() == max_size - i);
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Dvp8_partition_aggregator_unittest.cc109 int max_size = -1; local
110 aggregator.CalcMinMax(opt_config, &min_size, &max_size);
112 EXPECT_EQ(expected_max, max_size);
149 int max_size = 429; local
150 aggregator->CalcMinMax(opt_config, &min_size, &max_size);
152 EXPECT_EQ(429, max_size);
/external/autotest/client/deps/glbench/src/
H A Dfillratetest.cc186 const int max_size = std::min(g_hasty ? 512 : 4096, g_max_texture_size); local
189 for (int size = 1 << size_log2; size <= max_size; size *= 2) {
/external/avahi/avahi-compat-libdns_sd/
H A Dtxt.c36 size_t size, max_size; member in struct:TXTRecordInternal
61 t->max_size = buffer ? length : (size_t)0;
95 if (t->size + size <= t->max_size)
110 t->max_size = nsize;
208 assert(t->size <= t->max_size);
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp25 static int max_size; member in struct:outer::inner::array
35 int outer::inner::array<T, N>::max_size = 17; member in class:outer::inner::array
189 // CHECK: Keyword: "int" [35:1 - 35:4] VarDecl=max_size:35:32 (Definition)
191 // CHECK: Punctuation: "::" [35:10 - 35:12] VarDecl=max_size:35:32 (Definition)
193 // CHECK: Punctuation: "::" [35:17 - 35:19] VarDecl=max_size:35:32 (Definition)
195 // CHECK: Punctuation: "<" [35:24 - 35:25] VarDecl=max_size:35:32 (Definition)
197 // CHECK: Punctuation: "," [35:26 - 35:27] VarDecl=max_size:35:32 (Definition)
199 // CHECK: Punctuation: ">" [35:29 - 35:30] VarDecl=max_size:35:32 (Definition)
200 // CHECK: Punctuation: "::" [35:30 - 35:32] VarDecl=max_size:35:32 (Definition)
201 // CHECK: Identifier: "max_size" [3
[all...]
/external/curl/lib/
H A Dcurl_sasl_gssapi.c221 unsigned int max_size = 0; local
305 max_size = ntohl(indata & 0xFFFFFF00);
306 if(max_size > 0) {
310 max_size = 0;
327 outdata = htonl(max_size) | sec_layer;
/external/libchrome/base/containers/
H A Dscoped_ptr_hash_map.h154 inline size_t max_size() const { return data_.max_size(); } function in class:base::ScopedPtrHashMap
/external/libchrome/base/metrics/
H A Dhistogram_base.cc136 double max_size,
139 int x_count = static_cast<int>(k_line_length * (current_size / max_size)
135 WriteAsciiBucketGraph(double current_size, double max_size, std::string* output) const argument
/external/libcxx/src/
H A Dthread.cpp154 size_t max_size() const {return size_t(~0) / sizeof(T);} function in class:__hidden_allocator
/external/libcxx/test/std/thread/futures/
H A Dtest_allocator.h73 size_type max_size() const throw() function in class:test_allocator
152 std::size_t max_size() const function in class:other_allocator
/external/libcxx/test/support/
H A Dallocators.h55 std::size_t max_size() const {return id_;} function in class:A1

Completed in 1672 milliseconds

1234