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

<<21222324252627282930>>

  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_alloc.h 302 if (__n > max_size()) {
330 size_type max_size() const _STLP_NOTHROW { return size_t(-1) / sizeof(value_type); }
342 if (__n > max_size()) {
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
sso_string_base.h 151 { return (_M_get_allocator().max_size() - 1) / 2; }
336 // 83. String::npos vs. string::max_size()
346 // Never allocate a string bigger than max_size.
throw_allocator.h 621 max_size() const throw()
622 { return _M_allocator.max_size(); }
633 if (__n > this->max_size())
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
throw_allocator.h 621 max_size() const _GLIBCXX_USE_NOEXCEPT
622 { return _M_allocator.max_size(); }
635 if (__n > this->max_size())
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
throw_allocator.h 661 max_size() const _GLIBCXX_USE_NOEXCEPT
662 { return _M_allocator.max_size(); }
675 if (__n > this->max_size())
  /external/chromium/net/base/
mime_sniffer.cc 280 // Truncates |size| to |max_size| and returns true if |size| is at least
281 // |max_size|.
282 static bool TruncateSize(const size_t max_size, size_t* size) {
284 DCHECK_LE(static_cast<int>(max_size), kMaxBytesToSniff);
286 if (*size >= max_size) {
287 *size = max_size;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_context.c 210 int max_size, void *user_data)
216 int max_entries = (max_size > hash_size) ? max_size : hash_size;
217 int to_remove = (max_size < max_entries) * max_entries/4;
219 if (hash_size > max_size)
220 to_remove += hash_size - max_size;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_context.c 210 int max_size, void *user_data)
216 int max_entries = (max_size > hash_size) ? max_size : hash_size;
217 int to_remove = (max_size < max_entries) * max_entries/4;
219 if (hash_size > max_size)
220 to_remove += hash_size - max_size;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ext/
hash_map 59 size_type max_size() const;
149 size_type max_size() const;
550 size_type max_size() const {return __table_.max_size();}
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
set 98 size_type max_size() const noexcept;
254 size_type max_size() const noexcept;
512 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
850 size_type max_size() const _NOEXCEPT {return __tree_.max_size();}
    [all...]
unordered_set 85 size_type max_size() const noexcept;
224 size_type max_size() const noexcept;
403 size_type max_size() const _NOEXCEPT {return __table_.max_size();}
    [all...]
array 57 constexpr size_type max_size() const noexcept;
178 _LIBCPP_CONSTEXPR size_type max_size() const _NOEXCEPT {return _Size;}
  /external/chromium/chrome/browser/autofill/
phone_field.cc 283 if (phone_field_grammars_[i].max_size &&
285 phone_field_grammars_[i].max_size <
  /external/chromium/chrome/browser/profiles/
profile_impl.cc 141 // path, or will not be touched if there is not an argument. |max_size| will
144 int* max_size) {
146 DCHECK(max_size);
160 *max_size = 0;
161 if (!base::StringToInt(value, max_size)) {
162 *max_size = 0;
163 } else if (max_size < 0) {
164 *max_size = 0;
    [all...]
  /external/chromium_org/chrome/browser/extensions/
image_loader.cc 244 const gfx::Size& max_size,
250 max_size,
  /external/chromium_org/third_party/angle_dx11/src/compiler/
PoolAlloc.h 290 size_type max_size() const { return static_cast<size_type>(-1) / sizeof(T); } function in class:pool_allocator
291 size_type max_size(int size) const { return static_cast<size_type>(-1) / size; } function in class:pool_allocator
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 374 stack->max_size = max_s;
380 uptr cs_ret = CaptureStackBackTrace(1, stack->max_size, tmp, 0);
  /external/opencv/cvaux/src/
cvhmm.cpp 705 int max_size = 0; local
721 if( max_size < max_mix ) max_size = max_mix;
724 max_size *= obs_x * vect_size;
727 if( max_size > MAX_BUF_SIZE )
729 log_mix_prob = (float*)cvAlloc( max_size*(sizeof(float) + sizeof(double)));
731 mix_prob = (double*)(log_mix_prob + max_size);
734 memset( log_mix_prob, 0, max_size*sizeof(float));
    [all...]
  /external/stlport/stlport/stl/debug/
_deque.h 201 size_type max_size() const { return _M_non_dbg_impl.max_size(); }
_hashtable.h 166 size_type max_size() const { return _M_non_dbg_impl.max_size(); } function in class:hashtable
_vector.h 157 size_type max_size() const { return _M_non_dbg_impl.max_size(); } function in class:vector
  /external/stlport/stlport/stl/pointers/
_deque.h 155 size_type max_size() const { return _M_impl.max_size(); } function in class:deque
_list.h 166 size_type max_size() const { return _M_impl.max_size(); } function in class:list
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_deque.h 201 size_type max_size() const { return _M_non_dbg_impl.max_size(); }
_hashtable.h 166 size_type max_size() const { return _M_non_dbg_impl.max_size(); } function in class:hashtable

Completed in 2177 milliseconds

<<21222324252627282930>>