HomeSort by relevance Sort by last modified time
    Searched refs:Min (Results 126 - 150 of 240) sorted by null

1 2 3 4 56 7 8 910

  /external/clang/lib/Basic/
Targets.cpp 139 unsigned Maj, Min, Rev;
141 Triple.getMacOSXVersion(Maj, Min, Rev);
144 Triple.getOSVersion(Maj, Min, Rev);
152 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
158 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
161 Str[1] = '0' + (Min / 10);
162 Str[2] = '0' + (Min % 10);
173 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!");
176 Str[1] = '0' + (Min / 10);
177 Str[2] = '0' + (Min % 10)
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 552 llvm::Value *Min = Builder.getFalse();
555 Builder.CreateICmpUGE(Builder.CreateCall(F, {CastAddr, Min}),
    [all...]
  /external/opencv3/modules/videoio/src/
cap_dshow.cpp 543 bool getVideoSettingFilter(int deviceID, long Property, long &min, long &max, long &SteppingDelta, long &currentValue, long &flags, long &defaultValue);
547 bool getVideoSettingCamera(int deviceID, long Property, long &min, long &max, long &SteppingDelta, long &currentValue, long &flags, long &defaultValue);
1706 long min, max, currentValue, flags, defaultValue, stepAmnt; local
1796 long min, max, currentValue, flags, defaultValue, stepAmnt; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeWizard.cs 184 for (int ttype = TokenTypes.Min; ttype < tokenNames.Length; ttype++) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeWizard.cs 208 for ( int ttype = TokenTypes.Min; ttype < tokenNames.Length; ttype++ )
  /external/skia/src/core/
SkColorMatrixFilterRowMajor255.cpp 77 return Sk4f::Max(Sk4f::Min(x, Sk4f(1)), Sk4f(0));
SkLinearBitmapPipeline.cpp 371 *xs = Sk4f::Min(Sk4f::Max(*xs, fXMin), fXMax);
372 *ys = Sk4f::Min(Sk4f::Max(*ys, fYMin), fYMax);
SkXfermode.cpp 55 static Sk4f pin_1(const Sk4f& value) { return Sk4f::Min(value, Sk4f(1)); }
114 return s + d - Sk4f::Min(s * da, d * sa);
125 Sk4f otherwise = sa * Sk4f::Min(da, (d * sa) / (sa - s)) + s * ida + d * isa;
142 Sk4f otherwise = sa * (da - Sk4f::Min(da, (da - d) * sa / s)) + s * ida + d * isa;
177 Sk4f min = Sk4f::Min(s * alpha(d), d * alpha(s)); local
178 return s + d - min - color_alpha(min, 0);
201 static inline float min(float a, float b, float c) { function
206 return max(r, g, b) - min(r, g, b)
932 const float min = 0 - eps; local
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.h 271 spill_start_index_ = Min(start, spill_start_index_);
hydrogen-instructions.cc 207 upper_ = Min(upper_, other->upper_);
216 lower_ = Min(lower_, other->lower_);
230 upper_ = Min(upper_, other->upper_);
231 lower_ = Min(lower_, other->lower_);
304 lower_ = Min(Min(v1, v2), Min(v3, v4));
1151 new(zone) Range(spans_zero ? 0 : Min(abs_lower, abs_upper),
2562 int32_t min = (left()->range()->CanBeNegative() || local
    [all...]
  /external/v8/src/heap/
objects-visiting.h 141 int visitor_id = Min(
  /external/v8/src/parsing/
scanner-character-streams.cc 159 pos_ = Min(pos_ + delta, length_);
  /external/v8/src/runtime/
runtime-regexp.cc 720 int initial_capacity = Min<uint32_t>(kMaxInitialListCapacity, limit);
    [all...]
  /external/v8/test/unittests/compiler/
typer-unittest.cc 97 double RandomInt(double min, double max) {
100 return min;
106 if (min == +V8_INFINITY) return +V8_INFINITY;
108 if (min == -V8_INFINITY && max == +V8_INFINITY) {
111 double result = nearbyint(min + (max - min) * rng_->NextDouble());
113 if (std::isnan(result)) return rng_->NextInt(2) ? min : max;
114 DCHECK(min <= result && result <= max);
119 return RandomInt(range->Min(), range->Max());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
arithmetic.s 73 .global min
74 min: label
75 r5 = mIn (r2, R3);
76 R4 = Min (r7, R0);
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 252 // UInt64 next = Math.Min(nowPos64 + (1 << 18), outSize64);
LzmaEncoder.cs 840 numAvailableBytesFull = Math.Min(kNumOpts - 1 - cur, numAvailableBytesFull);
850 UInt32 t = Math.Min(numAvailableBytesFull - 1, _numFastBytes);
910 UInt32 t = Math.Min(numAvailableBytesFull - 1 - lenTest, _numFastBytes);
985 UInt32 t = Math.Min(numAvailableBytesFull - 1 - lenTest, _numFastBytes);
    [all...]
  /external/mdnsresponder/mDNSShared/
CommonServices.h 649 /*! @function Min
654 #if( !defined( Min ) )
655 #define Min( X, Y ) ( ( ( X ) < ( Y ) ) ? ( X ) : ( Y ) )
    [all...]
  /external/v8/test/cctest/
test-compiler.cc 723 Min(f->code()->instruction_size(),
726 decode_size = Min(decode_size, f->code()->constant_pool_offset());
  /external/v8/src/compiler/
js-typed-lowering.cc 411 double min = kMinInt / (1 << k); local
413 shifted_int32_ranges_[k] = Type::Range(min, max, graph()->zone());
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 142 return Max<uptr>(1, Min(kMaxNumCached, n));
    [all...]
  /external/opencv/cxcore/src/
cxcmp.cpp 44 // CvMat comparison functions: range checking, min, max
844 * Min/Max *
    [all...]
  /hardware/intel/img/psb_video/src/
tng_jpegES.c 133 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \
134 else if((Number) < (Min)) (Number) = (Min)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 529 * D.i-j.u D.x-y.v | boundaries overlap combine to max(min)..max(right)
613 // D.i-j.u D.x-y.v | boundaries overlap combine to max(min)..max(right)
618 rop.index = Math.Min(prevRop.index, rop.index);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 711 Array.Copy(tokens, elements, Math.Min(tokens.Length, MAX_EVENT_ELEMENTS));

Completed in 4280 milliseconds

1 2 3 4 56 7 8 910