Searched refs:max (Results 251 - 275 of 4319) sorted by path

<<11121314151617181920>>

/external/chromium_org/base/files/
H A Dfile_util_win.cc723 int whole_path_limit = std::max(0, MAX_PATH - 1 - static_cast<int>(prefix));
H A Dmemory_mapped_file.cc83 DCHECK_LT(mask, std::numeric_limits<int32>::max());
H A Dmemory_mapped_file_posix.cc50 aligned_start > std::numeric_limits<off_t>::max() ||
52 std::numeric_limits<size_t>::max() ||
53 static_cast<uint64>(region.size) > std::numeric_limits<size_t>::max()) {
H A Dmemory_mapped_file_win.cc60 static_cast<uint64>(size) > std::numeric_limits<SIZE_T>::max()) {
/external/chromium_org/base/
H A Dhash.h23 if (length > static_cast<size_t>(std::numeric_limits<int>::max())) {
H A Dlogging.cc410 return std::max(-1, LOG_INFO - GetMinLogLevel());
/external/chromium_org/base/i18n/
H A Dnumber_formatting_unittest.cc23 {std::numeric_limits<int64>::max(),
56 {std::numeric_limits<double>::max(), 6,
/external/chromium_org/base/mac/
H A Dscoped_mach_vm.cc21 vm_address_t deallocate_start = std::max(address_, address + size);
H A Dsdk_forward_declarations.h78 max:(CGFloat)maxDampenThreshold
/external/chromium_org/base/memory/
H A Ddiscardable_memory_ashmem_allocator.cc54 if (size > std::numeric_limits<size_t>::max() - kPageSize + 1)
463 std::max(kMinAshmemRegionSize, AlignToNextPage(ashmem_region_size))),
493 const size_t min_region_size = std::max(kMinAshmemRegionSize, aligned_size);
494 for (size_t region_size = std::max(ashmem_region_size_, aligned_size);
H A Ddiscardable_memory_ashmem_allocator_unittest.cc27 std::numeric_limits<size_t>::max() - kPageSize + 1;
H A Ddiscardable_memory_manager.cc109 if (std::numeric_limits<size_t>::max() - bytes_required < bytes_allocated_)
H A Ddiscardable_memory_manager_unittest.cc211 // Set max allowed allocation to 1 byte. This will cause the memory to be
229 size_t massive_size = std::numeric_limits<size_t>::max();
H A Dshared_memory_android.cc22 if (options.size > static_cast<size_t>(std::numeric_limits<int>::max()))
H A Dshared_memory_nacl.cc91 if (bytes > static_cast<size_t>(std::numeric_limits<int>::max()))
H A Dshared_memory_posix.cc123 if (options.size > static_cast<size_t>(std::numeric_limits<int>::max()))
286 if (bytes > static_cast<size_t>(std::numeric_limits<int>::max()))
H A Dshared_memory_win.cc117 static_cast<size_t>(std::numeric_limits<int>::max()) - kSectionMask)
190 if (bytes > static_cast<size_t>(std::numeric_limits<int>::max()))
/external/chromium_org/base/message_loop/
H A Dmessage_pump_glib_unittest.cc47 return std::max(0, static_cast<int>(ceil(delta.InMillisecondsF())));
/external/chromium_org/base/metrics/
H A Dhistogram.cc442 double max = 0; local
445 if (current_size > max)
446 max = current_size;
448 return max;
485 params->SetInteger("max", declared_max());
620 double max = maximum; local
624 (min * (bucket_count - 1 - i) + max * (i - 1)) / (bucket_count - 2);
H A Dhistogram.h31 // For these 3 kinds of histograms, the max bucket count is always
119 name, min, max, bucket_count, base::HistogramBase::kNoFlags);
174 #define LOCAL_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
176 base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
188 #define LOCAL_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
190 base::Histogram::FactoryGet(name, min, max, bucket_count, \
255 #define UMA_HISTOGRAM_CUSTOM_TIMES(name, sample, min, max, bucket_count) \
257 base::Histogram::FactoryTimeGet(name, min, max, bucket_count, \
269 #define UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, bucket_count) \
271 base::Histogram::FactoryGet(name, min, max, bucket_coun
[all...]
H A Dhistogram_samples.cc21 HistogramBase::Sample* max,
51 HistogramBase::Sample* max,
55 *max = max_;
107 HistogramBase::Sample max; local
112 it->Get(&min, &max, &count);
114 !pickle->WriteInt(max) ||
50 Get(HistogramBase::Sample* min, HistogramBase::Sample* max, HistogramBase::Count* count) const argument
H A Dhistogram_samples.h75 // |min| |max| and |count| can be NULL if the value is not of interest.
78 HistogramBase::Sample* max,
H A Dhistogram_unittest.cc393 int max; local
394 EXPECT_TRUE(iter.ReadInt(&max));
395 EXPECT_EQ(64, max);
H A Dsample_map.cc50 Sample max; local
53 iter->Get(&min, &max, &count);
54 if (min + 1 != max)
76 void SampleMapIterator::Get(Sample* min, Sample* max, Count* count) const { argument
80 if (max != NULL)
81 *max = iter_->first + 1;
H A Dsample_map.h56 HistogramBase::Sample* max,

Completed in 379 milliseconds

<<11121314151617181920>>