Searched refs:max_size (Results 126 - 150 of 382) sorted by relevance

1234567891011>>

/external/stlport/stlport/stl/
H A D_pthread_alloc.h130 if (__n > max_size()) {
155 size_type max_size() const _STLP_NOTHROW
169 if (__n > max_size()) {
313 if (__n > max_size()) {
338 size_type max_size() const _STLP_NOTHROW
355 if (__n > max_size()) {
H A D_string_sum_methods.h106 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
130 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
/external/chromium_org/base/containers/
H A Dscoped_ptr_hash_map.h137 inline size_t max_size() const { return data_.max_size(); } function in class:base::ScopedPtrHashMap
/external/chromium_org/chrome/browser/favicon/
H A Dfavicon_handler.cc413 int max_size = GetMaximalIconSize(i->second.icon_type); local
416 index = GetLargestSizeIndex(original_bitmap_sizes, max_size * max_size);
423 max_size * max_size);
676 int max_size = GetMaximalIconSize(i->icon_type); local
677 int index = GetLargestSizeIndex(i->icon_sizes, max_size * max_size);
/external/chromium_org/chrome/common/
H A Dinstant_restricted_id_cache.h98 DCHECK_LE(items.size(), cache_.max_size());
116 DCHECK_LE(items.size(), cache_.max_size());
/external/chromium_org/gpu/command_buffer/client/
H A Dprogram_info_manager.cc457 GLsizei max_size = std::min(static_cast<size_t>(bufsize) - 1, local
461 *length = max_size;
464 memcpy(name, attrib_info->name.c_str(), max_size);
465 name[max_size] = '\0';
491 GLsizei max_size = std::min(static_cast<size_t>(bufsize) - 1, local
495 *length = max_size;
498 memcpy(name, uniform_info->name.c_str(), max_size);
499 name[max_size] = '\0';
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.h116 typedef base::Callback<void(base::Time mtime, uint64 max_size, int result)>
125 uint64 max_size; member in struct:disk_cache::SimpleBackendImpl::DiskStatResult
/external/opencv/otherlibs/highgui/
H A Dbitstrm.h264 bool bsCreateDecodeHuffmanTable( const int* src, short* dst, int max_size );
265 bool bsCreateEncodeHuffmanTable( const int* src, ulong* dst, int max_size );
/external/chromium_org/ash/wm/
H A Dwindow_util.h62 // Adjusts |bounds| so that the size does not exceed |max_size|.
63 ASH_EXPORT void AdjustBoundsSmallerThan(const gfx::Size& max_size,
H A Dwindow_util.cc104 void AdjustBoundsSmallerThan(const gfx::Size& max_size, gfx::Rect* bounds) { argument
105 bounds->set_width(std::min(bounds->width(), max_size.width()));
106 bounds->set_height(std::min(bounds->height(), max_size.height()));
/external/chromium_org/chrome/browser/net/
H A Devicted_domain_cookie_counter.h83 size_t max_size,
/external/chromium_org/content/public/test/
H A Dlayouttest_support.h106 const blink::WebSize& max_size);
/external/chromium_org/extensions/browser/
H A Dimage_loader_unittest.cc128 gfx::Size max_size(extension_misc::EXTENSION_ICON_SMALLISH,
133 max_size,
162 gfx::Size max_size(extension_misc::EXTENSION_ICON_SMALLISH,
169 max_size,
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h135 // max_size specifies largest range size possibly in existence now.
137 const Value* FindInside(ValueSizeFunc size_func, size_t max_size,
360 size_t max_size,
388 if (key_num - num > max_size) return NULL;
395 if (key_num - num > max_size) return NULL;
396 // Having max_size to limit the search is crucial: else
398 // We can avoid needing max_size if we put clusters into
359 FindInside(ValueSizeFunc size_func, size_t max_size, Key key, Key* res_key) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h135 // max_size specifies largest range size possibly in existence now.
137 const Value* FindInside(ValueSizeFunc size_func, size_t max_size,
360 size_t max_size,
388 if (key_num - num > max_size) return NULL;
395 if (key_num - num > max_size) return NULL;
396 // Having max_size to limit the search is crucial: else
398 // We can avoid needing max_size if we put clusters into
359 FindInside(ValueSizeFunc size_func, size_t max_size, Key key, Key* res_key) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/raw/
H A Draw-preproc.c119 size_t max_size)
118 raw_preproc_get_included_file(yasm_preproc *preproc, char *buf, size_t max_size) argument
/external/chromium_org/v8/src/
H A Dzone-allocator.h45 size_type max_size() const throw() { function in class:v8::internal::zone_allocator
/external/chromium_org/base/files/
H A Dfile_util.cc132 size_t max_size) {
151 contents->append(buf, std::min(len, max_size - size));
153 if ((max_size - size) < len) {
130 ReadFileToString(const FilePath& path, std::string* contents, size_t max_size) argument
/external/chromium_org/base/
H A Dsync_socket_win.cc103 DWORD GetNextChunkSize(size_t current_pos, size_t max_size) { argument
105 return static_cast<DWORD>(((max_size - current_pos) <= UINT_MAX) ?
106 (max_size - current_pos) : UINT_MAX);
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel.h193 const gfx::Size& max_size() const { return max_size_; } function in class:Panel
246 void SetSizeRange(const gfx::Size& min_size, const gfx::Size& max_size);
265 // Changes the preferred size to acceptable based on min_size() and max_size()
326 const gfx::Size& min_size, const gfx::Size& max_size);
/external/chromium_org/mojo/system/
H A Ddispatcher.h197 size_t* max_size,
292 size_t* max_size,
336 // dispatcher cannot be serialized to the given |Channel|, |*max_size| and
341 size_t* max_size,
/external/chromium_org/net/spdy/
H A Dhpack_header_table.cc109 void HpackHeaderTable::SetMaxSize(size_t max_size) { argument
110 CHECK_LE(max_size, settings_size_bound_);
112 max_size_ = max_size;
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
H A Dtest_interface.cc166 bool IsSizeInRange(PP_Size size, PP_Size min_size, PP_Size max_size) { argument
167 return (min_size.width <= size.width && size.width <= max_size.width &&
168 min_size.height <= size.height && size.height <= max_size.height);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A Dglslang.l55 #define YY_INPUT(buf, result, max_size) \
56 result = string_input(buf, max_size, yyscanner);
58 static yy_size_t string_input(char* buf, yy_size_t max_size, yyscan_t yyscanner);
382 yy_size_t string_input(char* buf, yy_size_t max_size, yyscan_t yyscanner) {
386 if (len < max_size)
391 if (len >= max_size)
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Daddressmap_unittest.cc52 size_t Uniform(size_t max_size) { argument
53 if (max_size == 0)
55 return rand() % max_size; // not a great random-number fn, but portable

Completed in 3165 milliseconds

1234567891011>>