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

12345678

/external/chromium/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/chromium_org/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/libvpx/libvpx/third_party/googletest/src/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/main/coregrind/m_coredump/
H A Dcoredump-macho.c39 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, UInt max_size) argument
/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/oprofile/libutil/
H A Dop_growable_buffer.h19 size_t max_size; member in struct:growable_buffer
/external/chromium_org/cc/scheduler/
H A Drolling_time_delta_history.cc11 RollingTimeDeltaHistory::RollingTimeDeltaHistory(size_t max_size) argument
12 : max_size_(max_size) {
/external/chromium_org/chrome/browser/policy/cloud/
H A Dcloud_external_data_store.cc59 size_t max_size,
64 if (data->size() <= max_size && base::SHA1HashString(*data) == hash)
57 Load(const std::string& policy, const std::string& hash, size_t max_size, std::string* data) argument
H A Dexternal_policy_data_updater.h29 // from the |url|, verified to not exceed |max_size| and to match the expected
39 Request(const std::string& url, const std::string& hash, int64 max_size);
45 int64 max_size; member in struct:policy::ExternalPolicyDataUpdater::Request
49 // that does not exceed |max_size| and matches the expected |hash|. The
/external/chromium_org/third_party/libwebp/enc/
H A Dhistogram.h49 int max_size; // maximum capacity member in struct:__anon11605
/external/webp/src/enc/
H A Dhistogram.h49 int max_size; // maximum capacity member in struct:__anon28021
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.h35 uptr max_size; member in struct:__sanitizer::StackTrace
/external/marisa-trie/lib/marisa/
H A Dbitvector.h42 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/
H A Dbitvector.h42 MARISA_ALPHA_THROW_IF(size_ == max_size(), MARISA_ALPHA_SIZE_ERROR);
72 std::size_t max_size() const { function in class:marisa_alpha::BitVector
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_main.c149 UINT16 sdp_set_max_attr_list_size (UINT16 max_size) argument
151 if (max_size > (sdp_cb.l2cap_my_cfg.mtu - 16) )
152 max_size = sdp_cb.l2cap_my_cfg.mtu - 16;
154 sdp_cb.max_attr_list_size = max_size;
/external/chromium/chrome/browser/sync/sessions/
H A Dordered_commit_set.cc41 void OrderedCommitSet::Truncate(size_t max_size) { argument
42 if (max_size < metahandle_order_.size()) {
43 for (size_t i = max_size; i < metahandle_order_.size(); ++i) {
54 // max_size by looking for max_size using binary search.
57 max_size);
61 commit_ids_.resize(max_size);
62 metahandle_order_.resize(max_size);
63 types_.resize(max_size);
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_backend_impl.h92 typedef base::Callback<void(base::Time mtime, uint64 max_size, int result)>
98 uint64 max_size; member in struct:disk_cache::SimpleBackendImpl::DiskStatResult
/external/chromium_org/sync/sessions/
H A Dordered_commit_set.cc55 void OrderedCommitSet::Truncate(size_t max_size) { argument
56 if (max_size < metahandle_order_.size()) {
57 for (size_t i = max_size; i < metahandle_order_.size(); ++i) {
68 // max_size by looking for max_size using binary search.
71 max_size);
75 commit_ids_.resize(max_size);
76 metahandle_order_.resize(max_size);
77 types_.resize(max_size);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Drollingaccumulator.h101 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/chromium_org/third_party/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/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dstl_allocator.h87 size_type max_size() const { return size_t(-1) / sizeof(T); } function in class:STL_Allocator
/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
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dstl_allocator.h87 size_type max_size() const { return size_t(-1) / sizeof(T); } function in class:STL_Allocator
/external/chromium_org/third_party/tcmalloc/vendor/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 590 milliseconds

12345678