HomeSort by relevance Sort by last modified time
    Searched refs:Max (Results 101 - 125 of 269) sorted by null

1 2 3 45 6 7 8 91011

  /external/ImageMagick/coders/
mat.c 359 static void CalcMinMax(Image *image, int endian_indicator, int SizeX, int SizeY, size_t CellType, unsigned ldblk, void *BImgBuff, double *Min, double *Max)
388 *Min = *Max = *dblrow;
394 if (*Max < *dblrow)
395 *Max = *dblrow;
405 *Min = *Max = *fltrow;
411 if (*Max < *fltrow)
412 *Max = *fltrow;
    [all...]
  /external/llvm/unittests/ProfileData/
InstrProfTest.cpp 354 const uint64_t Max = std::numeric_limits<uint64_t>::max();
361 InstrProfRecord Record2("foo", 0x1234, {Max});
379 InstrProfValueData VD5[] = {{(uint64_t) "bar", Max}};
391 ASSERT_EQ(Max, ReadRecord1.get().Counts[0]);
399 ASSERT_EQ(Max, VD[0].Count);
  /external/gtest/include/gtest/internal/
gtest-internal.h 299 static RawType Max();
381 // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
384 inline float FloatingPoint<float>::Max() { return FLT_MAX; }
386 inline double FloatingPoint<double>::Max() { return DBL_MAX; }
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 59 StructAlignment = std::max(TyAlign, StructAlignment);
652 return std::max(Align, Layout->getAlignment());
722 auto Max = std::max_element(LegalIntWidths.begin(), LegalIntWidths.end());
723 return Max != LegalIntWidths.end() ? *Max : 0;
773 Alignment = std::max(GVAlignment, getABITypeAlignment(ElemType));
  /external/v8/src/heap/
gc-tracer.cc 299 double spent_in_mutator = Max(current_.start_time - previous_.end_time, 0.0);
391 Max(longest_incremental_marking_step_, duration);
403 Max(longest_incremental_marking_finalization_step_, duration);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h 299 static RawType Max();
381 // We cannot use std::numeric_limits<T>::max() as it clashes with the max()
384 inline float FloatingPoint<float>::Max() { return FLT_MAX; }
386 inline double FloatingPoint<double>::Max() { return DBL_MAX; }
    [all...]
  /external/opencv/cxcore/src/
cxsumpixels.cpp     [all...]
  /external/libbrillo/brillo/streams/
fake_stream.cc 38 base::TimeDelta read_delay = base::TimeDelta::Max();
39 base::TimeDelta write_delay = base::TimeDelta::Max();
stream.cc 77 if (!WaitForDataBlocking(AccessMode::READ, base::TimeDelta::Max(), nullptr,
149 if (!WaitForDataBlocking(AccessMode::WRITE, base::TimeDelta::Max(), nullptr,
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 51 MaxIntegerBW("float2int-max-integer-bw", cl::init(64), cl::Hidden,
52 cl::desc("Max integer bitwidth to consider in float2int"
209 APInt Max = APInt::getMaxValue(BW).zextOrSelf(MaxIntegerBW+1);
210 seen(I, validateRange(ConstantRange(Min, Max)));
408 unsigned MinBW = std::max(R.getLower().getMinSignedBits(),
  /external/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 331 InsertItemWithTag(PDB_SymType::Max);
343 if (item->first == PDB_SymType::None || item->first >= PDB_SymType::Max)
  /external/v8/src/
string-search.h 62 start_(Max(0, pattern.length() - kBMMaxShift)) {
188 // Cache value of Max(0, pattern_length() - kBMMaxShift)
201 return Max(static_cast<uint8_t>(character & 0xFF),
layout-descriptor-inl.h 191 Max(layout_descriptor_length, field_index + field_width_in_words);
types.h 302 static double Max(bitset);
305 static bitset Glb(double min, double max);
310 static bitset Lub(double min, double max);
450 double max; member in struct:v8::internal::BitsetType::RangeType::Limits
451 Limits(double min, double max) : min(min), max(max) {}
452 explicit Limits(RangeType* range) : min(range->Min()), max(range->Max()) {}
460 double Max() { return limits_.max;
    [all...]
zone.cc 254 new_size = Max(min_new_size, kMaximumSegmentSize);
  /external/v8/test/mjsunit/
array-join.js 83 a = new Array(Math.pow(2,32) - 1); // Max length.
  /external/compiler-rt/lib/cfi/
cfi.cc 83 uptr p = Max(begin, cfi_check);
  /external/libchrome/base/time/
time_mac.cc 145 return Max();
  /external/libweave/examples/provider/
event_http_server.cc 183 return base::TimeDelta::Max();
  /external/libweave/third_party/chromium/base/time/
time_posix.cc 271 ? std::numeric_limits<SysTime>::max()
272 : std::numeric_limits<int32_t>::max();
319 t.tv_sec == std::numeric_limits<time_t>::max())
320 return Max();
333 result.tv_sec = std::numeric_limits<time_t>::max();
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 172 m_DictionarySizeCheck = Math.Max(m_DictionarySize, 1);
173 uint blockSize = Math.Max(m_DictionarySizeCheck, (1 << 12));
  /external/skia/src/core/
SkColor.cpp 37 unsigned max = SkMax32(r, SkMax32(g, b)); local
38 unsigned delta = max - min;
40 SkScalar v = ByteToScalar(max);
50 SkScalar s = ByteDivToScalar(delta, max);
54 if (r == max) {
56 } else if (g == max) {
58 } else { // b == max
165 Sk4f::Min(Sk4f::Max(Sk4f(a, r, g, b), Sk4f(0)), Sk4f(1)).store(c4.vec());
SkRect.cpp 63 Sk4s min, max, accum; local
74 accum = max = min;
82 max = Sk4s::Max(max, xy);
87 * With some trickery, we may be able to use Min/Max to also propogate non-finites,
88 * in which case we could eliminate accum entirely, and just check min and max for
94 max.store(maxArray);
  /external/v8/src/base/platform/
time.h 205 bool IsMax() const { return us_ == std::numeric_limits<int64_t>::max(); }
301 static Time Max() { return Time(std::numeric_limits<int64_t>::max()); }
  /system/extras/tests/workloads/
systemapps.sh 85 curMax=$(eval "echo \$${label}max")
106 eval "${label}max=$t"
131 echo $(eval "echo \$${label}max") $(eval "echo \$${label}min") $(eval "echo \$${label}sum") \
255 printf "%-6s %7s(ms) %6s(ms) %6s(ms) %s %s %s %s\n" App Max Ave Min Restart DirReclaim Jank Latency

Completed in 3628 milliseconds

1 2 3 45 6 7 8 91011