HomeSort by relevance Sort by last modified time
    Searched full:max_size (Results 101 - 125 of 996) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/gp_hash_table_map_/
info_fn_imps.hpp 51 max_size() const function in class:PB_DS_CLASS_C_DEC
52 { return s_entry_allocator.max_size(); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
info_fn_imps.hpp 60 max_size() const function in class:PB_DS_CLASS_C_DEC
62 return (s_node_allocator.max_size());
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/list_update_map_/
info_fn_imps.hpp 50 max_size() const function in class:PB_DS_CLASS_C_DEC
51 { return s_entry_allocator.max_size(); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/ov_tree_map_/
info_fn_imps.hpp 53 max_size() const function in class:PB_DS_CLASS_C_DEC
54 { return s_value_alloc.max_size(); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
info_fn_imps.hpp 56 max_size() const function in class:PB_DS_CLASS_C_DEC
57 { return s_inode_allocator.max_size(); }
  /bionic/linker/tests/
linked_list_test.cpp 155 const size_t max_size = 128; local
156 const char* buf[max_size];
159 ASSERT_EQ(0U, list.copy_to_array(buf, max_size));
173 ASSERT_EQ(4U, list.copy_to_array(buf, max_size));
184 ASSERT_EQ(1U, list.copy_to_array(buf, max_size));
194 ASSERT_EQ(0U, list.copy_to_array(buf, max_size));
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
consuming_buffers.hpp 56 std::size_t max_size)
57 : at_end_(max_size > 0 ? at_end : true),
58 first_(buffer(first, max_size)),
62 max_size_(max_size)
217 void prepare(std::size_t max_size)
219 max_size_ = max_size;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator_unittest.cc 109 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);
  /system/bt/osi/src/
eager_reader.c 164 size_t eager_reader_read(eager_reader_t *reader, uint8_t *buffer, size_t max_size) {
179 if (max_size > bytes_available)
180 max_size = bytes_available;
183 while (bytes_consumed < max_size) {
188 if (bytes_to_copy > (max_size - bytes_consumed))
189 bytes_to_copy = max_size - bytes_consumed;
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
renderer.py 41 r = dns.renderer.Renderer(id=1, flags=0x80, max_size=512)
59 @ivar max_size: the maximum size of the message
60 @type max_size: int
74 def __init__(self, id=None, flags=0, max_size=65535, origin=None):
81 @param max_size: the maximum message size; the default is 65535.
82 If rendering results in a message greater than I{max_size},
84 @type max_size: int
95 self.max_size = max_size
154 if after >= self.max_size
    [all...]
  /external/v8/src/heap/
gc-tracer.h 16 template <typename T, size_t MAX_SIZE>
41 index_ = (index_ + 1) % (MAX_SIZE + 1);
46 index_ = (index_ + MAX_SIZE) % (MAX_SIZE + 1);
59 return (end_ - begin_ + MAX_SIZE + 1) % (MAX_SIZE + 1);
66 end_ = (end_ + 1) % (MAX_SIZE + 1);
67 if (end_ == begin_) begin_ = (begin_ + 1) % (MAX_SIZE + 1);
70 begin_ = (begin_ + MAX_SIZE) % (MAX_SIZE + 1)
    [all...]
  /external/libopus/celt/tests/
test_unit_rotation.c 48 #define MAX_SIZE 100
55 opus_val16 x0[MAX_SIZE];
56 opus_val16 x1[MAX_SIZE];
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 40 public final static int MAX_SIZE = 65536 * 32;
129 if (size > MAX_SIZE) throw new DirectoryFullException(
130 "directory would grow beyond " + MAX_SIZE + " bytes",
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/
group.py 100 desired_capacity=None, min_size=None, max_size=None,
139 :type max_size: int
140 :param max_size: Maximum size of group (required).
172 self.max_size = int(max_size) if max_size is not None else None
248 self.max_size = int(value)
290 self.max_size = 0
  /external/compiler-rt/lib/lsan/
lsan.h 18 #define GET_STACK_TRACE(max_size, fast) \
27 stack.Unwind(max_size, StackTrace::GetCurrentPc(), GET_CURRENT_FRAME(), \
  /external/eigen/bench/btl/generic_bench/static/
bench_static.hh 46 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/iproute2/tc/
emp_ematch.l 12 #define YY_INPUT(buf, result, max_size) \
21 if (max_size <= strlen(*ematch_argv) + 1) { \
  /external/libcxx/test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/
capacity.pass.cpp 13 // size_type max_size() const noexcept;
32 assert ( dyn.max_size () == sz );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/dynarray/dynarray.overview/
capacity.pass.cpp 13 // size_type max_size() const noexcept;
32 assert ( dyn.max_size () == sz );
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 51 max_size() const function in class:PB_DS_CLASS_C_DEC
52 { return m_entry_allocator.max_size(); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_policy/
lu_counter_metadata.hpp 73 operator()(size_type max_size) const
74 { return lu_counter_metadata<Size_Type>(std::rand() % max_size); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 51 max_size() const function in class:PB_DS_CLASS_C_DEC
52 { return m_entry_allocator.max_size(); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_policy/
lu_counter_metadata.hpp 73 operator()(size_type max_size) const
74 { return lu_counter_metadata<Size_Type>(std::rand() % max_size); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
info_fn_imps.hpp 51 max_size() const function in class:PB_DS_CLASS_C_DEC
52 { return m_entry_allocator.max_size(); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_policy/
lu_counter_metadata.hpp 73 operator()(size_type max_size) const
74 { return lu_counter_metadata<Size_Type>(std::rand() % max_size); }

Completed in 595 milliseconds

1 2 3 45 6 7 8 91011>>