HomeSort by relevance Sort by last modified time
    Searched full:max_size (Results 26 - 50 of 1651) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
max_size.pass.cpp 16 // size_type max_size() const;
27 assert(u.max_size() > 0);
33 assert(u.max_size() > 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
max_size.pass.cpp 16 // size_type max_size() const;
27 assert(u.max_size() > 0);
33 assert(u.max_size() > 0);
  /external/chromium/testing/gtest/xcode/Samples/FrameworkSample/
widget.cc 58 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';
widget_test.cc 57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
  /external/chromium_org/testing/gtest/xcode/Samples/FrameworkSample/
widget.cc 58 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';
widget_test.cc 57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/
widget.cc 58 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';
widget_test.cc 57 size_t max_size = 128; local
58 char buffer[max_size];
59 widget.GetCharPtrValue(buffer, max_size);
  /external/chromium_org/cc/scheduler/
rolling_time_delta_history.cc 11 RollingTimeDeltaHistory::RollingTimeDeltaHistory(size_t max_size)
12 : max_size_(max_size) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.size/
max_size.pass.cpp 14 // size_type max_size() const;
24 assert(m.max_size() > 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.capacity/
max_size.pass.cpp 12 // size_type max_size() const;
23 assert(s.max_size() >= s.size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/
max_size.pass.cpp 13 // size_type max_size() const throw();
25 std::size_t M = a.max_size() * sizeof(int);
  /packages/inputmethods/PinyinIME/jni/include/
splparser.h 43 uint16 start_pos[], uint16 max_size, bool &last_is_pre);
49 uint16 start_pos[], uint16 max_size, bool &last_is_pre);
54 uint16 start_pos[], uint16 max_size, bool &last_is_pre);
60 uint16 max_size, bool &last_is_pre);
91 uint16 splidx[], uint16 max_size,
  /external/chromium_org/third_party/re2/util/
sparse_set.h 59 SparseSet(int max_size) {
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/regex-re2/util/
sparse_set.h 59 SparseSet(int max_size) {
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/chromium_org/base/containers/
mru_cache.h 65 // The max_size is the size at which the cache will prune its members to when
69 explicit MRUCacheBase(size_type max_size) : max_size_(max_size) {
72 MRUCacheBase(size_type max_size, const DeletorType& deletor)
73 : max_size_(max_size), deletor_(deletor) {
82 size_type max_size() const { return max_size_; } function in class:base::MRUCacheBase
227 explicit MRUCache(typename ParentType::size_type max_size)
228 : ParentType(max_size) {
261 explicit OwningMRUCache(typename ParentType::size_type max_size)
262 : ParentType(max_size) {
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_external_data_store.h 44 // exceed |max_size| and matches the expected |hash|, then returns true.
46 // during the load, the entry exceeds |max_size| or does not match |hash|.
49 size_t max_size,
  /external/chromium_org/third_party/libjingle/source/talk/base/
rollingaccumulator.h 101 const size_t max_size = max_count(); local
105 // Add max_size to prevent underflow.
106 size_t index = (next_index_ + max_size - i - 1) % max_size;
  /external/oprofile/libutil/
op_growable_buffer.h 19 size_t max_size; member in struct:growable_buffer
  /external/chromium_org/chrome/browser/ui/gtk/extensions/
extension_view_gtk.cc 61 gfx::Size max_size(ExtensionPopupGtk::kMaxWidth,
63 render_view_host()->EnableAutoResize(min_size, max_size);
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator.cc 109 unsigned int max_size = 0; local
113 max_size = std::max(max_size, block.size);
115 return max_size;
121 unsigned int max_size = 0; local
126 max_size = std::max(max_size, current_size);
133 return std::max(max_size, current_size);
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
e01_property.t 52 $json->max_size(7);
54 $json->max_size();
xe01_property.t 41 $json->max_size(7);
43 $json->max_size();
  /external/marisa-trie/lib/marisa/
bitvector.h 42 MARISA_THROW_IF(size_ == max_size(), MARISA_SIZE_ERROR);
72 std::size_t max_size() const { function in class:marisa::BitVector
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
bitvector.h 42 MARISA_ALPHA_THROW_IF(size_ == max_size(), MARISA_ALPHA_SIZE_ERROR);
72 std::size_t max_size() const { function in class:marisa_alpha::BitVector

Completed in 815 milliseconds

12 3 4 5 6 7 8 91011>>