/external/valgrind/VEX/priv/ |
D | host_mips_defs.c | 763 i->Min.LI.dst = dst; in MIPSInstr_LI() 764 i->Min.LI.imm = imm; in MIPSInstr_LI() 772 i->Min.Alu.op = op; in MIPSInstr_Alu() 773 i->Min.Alu.dst = dst; in MIPSInstr_Alu() 774 i->Min.Alu.srcL = srcL; in MIPSInstr_Alu() 775 i->Min.Alu.srcR = srcR; in MIPSInstr_Alu() 784 i->Min.Shft.op = op; in MIPSInstr_Shft() 785 i->Min.Shft.sz32 = sz32; in MIPSInstr_Shft() 786 i->Min.Shft.dst = dst; in MIPSInstr_Shft() 787 i->Min.Shft.srcL = srcL; in MIPSInstr_Shft() [all …]
|
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/ |
D | result_type.pass.cpp | 22 template <class UIntType, UIntType Min, UIntType Max> 32 static_assert(Min < Max, "rand1 invalid parameters"); 37 static const result_type _Min = Min; 41 static _LIBCPP_CONSTEXPR result_type min() {return Min;} in min() 44 explicit rand1(result_type sd = Min) : x_(sd) in rand1() 46 if (x_ < Min) in rand1() 47 x_ = Min; in rand1() 58 x_ = Min; in operator ()()
|
D | eval.pass.cpp | 20 template <class UIntType, UIntType Min, UIntType Max> 30 static_assert(Min < Max, "rand1 invalid parameters"); 35 static const result_type _Min = Min; 39 static _LIBCPP_CONSTEXPR result_type min() {return Min;} in min() 42 explicit rand1(result_type sd = Min) : x_(sd) in rand1() 54 x_ = Min; in operator ()()
|
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ |
D | result_type.pass.cpp | 22 template <class UIntType, UIntType Min, UIntType Max> 32 static_assert(Min < Max, "rand1 invalid parameters"); 37 static const result_type _Min = Min; 41 static _LIBCPP_CONSTEXPR result_type min() {return Min;} in min() 44 explicit rand1(result_type sd = Min) : x_(sd) in rand1() 46 if (x_ < Min) in rand1() 47 x_ = Min; in rand1() 58 x_ = Min; in operator ()()
|
D | eval.pass.cpp | 20 template <class UIntType, UIntType Min, UIntType Max> 30 static_assert(Min < Max, "rand1 invalid parameters"); 35 static const result_type _Min = Min; 39 static _LIBCPP_CONSTEXPR result_type min() {return Min;} in min() 42 explicit rand1(result_type sd = Min) : x_(sd) in rand1() 54 x_ = Min; in operator ()()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
D | Min.java | 40 public class Min extends AbstractStorelessUnivariateStatistic implements Serializable { class 54 public Min() { in Min() method in Min 65 public Min(Min original) { in Min() method in Min 144 public Min copy() { in copy() 145 Min result = new Min(); in copy() 158 public static void copy(Min source, Min dest) { in copy()
|
/external/vboot_reference/tests/ |
D | utility_tests.c | 34 TEST_EQ(Min(1, 2), 1, "Min 1"); in MacrosTest() 35 TEST_EQ(Min(4, 3), 3, "Min 2"); in MacrosTest() 36 TEST_EQ(Min(5, 5), 5, "Min 5"); in MacrosTest() 37 TEST_EQ(Min(a, b), b, "Min uint64 1"); in MacrosTest() 38 TEST_EQ(Min(b, a), b, "Min uint64 2"); in MacrosTest() 39 TEST_EQ(Min(b, b), b, "Min uint64 same"); in MacrosTest()
|
/external/compiler-rt/lib/ubsan/ |
D | ubsan_diag.cc | 224 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc); in renderMemorySnippet() local 226 MemoryLocation OrigMin = Min; in renderMemorySnippet() 228 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min); in renderMemorySnippet() 234 if (Max - Min > BytesToShow) in renderMemorySnippet() 235 Min = __sanitizer::Min(Max - BytesToShow, OrigMin); in renderMemorySnippet() 236 Max = addNoOverflow(Min, BytesToShow); in renderMemorySnippet() 238 if (!IsAccessibleMemoryRange(Min, Max - Min)) { in renderMemorySnippet() 244 for (uptr P = Min; P != Max; ++P) { in renderMemorySnippet() 252 Range *InRange = upperBound(Min, Ranges, NumRanges); in renderMemorySnippet() 253 for (uptr P = Min; P != Max; ++P) { in renderMemorySnippet() [all …]
|
/external/llvm/include/llvm/CodeGen/PBQP/ |
D | ReductionRules.h | 49 PBQPNum Min = ECosts[0][j] + XCosts[0]; in applyR1() local 52 if (C < Min) in applyR1() 53 Min = C; in applyR1() 55 YCosts[j] += Min; in applyR1() 59 PBQPNum Min = ECosts[i][0] + XCosts[0]; in applyR1() local 62 if (C < Min) in applyR1() 63 Min = C; in applyR1() 65 YCosts[i] += Min; in applyR1() 111 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0]; in applyR2() local 114 if (C < Min) { in applyR2() [all …]
|
/external/llvm/include/llvm/Transforms/IPO/ |
D | LowerBitSets.h | 64 uint64_t Min, Max; member 66 BitSetBuilder() : Min(std::numeric_limits<uint64_t>::max()), Max(0) {} in BitSetBuilder() 69 if (Min > Offset) in addOffset() 70 Min = Offset; in addOffset()
|
/external/clang/include/clang/Frontend/ |
D | VerifyDiagnosticConsumer.h | 152 unsigned Min, unsigned Max); 161 unsigned Min, Max; variable 175 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max) in Directive() argument 177 Text(Text), Min(Min), Max(Max), MatchAnyLine(MatchAnyLine) { in Directive()
|
/external/libmpeg2/common/ |
D | impeg2_macros.h | 29 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ argument 30 else if((Number) < (Min)) (Number) = (Min)
|
/external/libavc/encoder/ |
D | irc_cbr_buffer_control.h | 44 #define CLIP(Number,Max,Min) if((Number) > (Max)) (Number) = (Max); \ argument 45 else if((Number) < (Min)) (Number) = (Min);
|
/external/clang/lib/Frontend/ |
D | VerifyDiagnosticConsumer.cpp | 164 bool MatchAnyLine, StringRef Text, unsigned Min, in StandardDirective() argument 166 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max) { } in StandardDirective() 183 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max, in RegexDirective() argument 185 : Directive(DirectiveLoc, DiagnosticLoc, MatchAnyLine, Text, Min, Max), in RegexDirective() 434 unsigned Min = 1; in ParseDirective() local 436 if (PH.Next(Min)) { in ParseDirective() 445 if (!PH.Next(Max) || Max < Min) { in ParseDirective() 452 Max = Min; in ParseDirective() 504 RegexKind, Pos, ExpectedLoc, MatchAnyLine, Text, Min, Max); in ParseDirective() 720 if (i >= D.Min) break; in CheckLists() [all …]
|
/external/llvm/lib/Analysis/IPA/ |
D | GlobalsModRef.cpp | 130 ModRefBehavior Min = UnknownModRefBehavior; in getModRefBehavior() local 134 Min = DoesNotAccessMemory; in getModRefBehavior() 136 Min = OnlyReadsMemory; in getModRefBehavior() 139 return ModRefBehavior(AliasAnalysis::getModRefBehavior(F) & Min); in getModRefBehavior() 146 ModRefBehavior Min = UnknownModRefBehavior; in getModRefBehavior() local 151 Min = DoesNotAccessMemory; in getModRefBehavior() 153 Min = OnlyReadsMemory; in getModRefBehavior() 156 return ModRefBehavior(AliasAnalysis::getModRefBehavior(CS) & Min); in getModRefBehavior()
|
/external/skia/src/core/ |
D | SkNx.h | 71 static SkNi Min(const SkNi& a, const SkNi& b) { in Min() function 72 return SkNi(SkNi<N/2, T>::Min(a.fLo, b.fLo), SkNi<N/2, T>::Min(a.fHi, b.fHi)); in Min() 125 static SkNf Min(const SkNf& l, const SkNf& r) { in Min() function 126 return SkNf(SkNf<N/2,T>::Min(l.fLo, r.fLo), SkNf<N/2,T>::Min(l.fHi, r.fHi)); in Min() 190 static SkNi Min(const SkNi& a, const SkNi& b) { return SkNi(SkTMin(a.fVal, b.fVal)); } in Min() function 229 static SkNf Min(const SkNf& l, const SkNf& r) { return SkNf(SkTMin(l.fVal, r.fVal)); } in Min() function
|
/external/clang/include/clang/Basic/ |
D | TargetInfo.h | 539 int Min; member 549 ImmRange.Min = ImmRange.Max = 0; in ConstraintInfo() 577 int getImmConstantMin() const { return ImmRange.Min; } in getImmConstantMin() 585 void setRequiresImmediate(int Min, int Max) { in setRequiresImmediate() 587 ImmRange.Min = Min; in setRequiresImmediate()
|
/external/compiler-rt/lib/asan/ |
D | asan_debugging.cc | 42 Min(descr->name_size, vars[i].name_len)); in GetInfoForStackVar() 101 size = Min(size, Min(stack.size, kStackTraceMax)); in AsanGetStack()
|
D | asan_poisoning.cc | 127 *beg.chunk = Min(value, beg.offset); in __asan_poison_memory_region() 140 *beg.chunk = Min(beg.value, beg.offset); in __asan_poison_memory_region() 348 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity); in __sanitizer_annotate_contiguous_container() 391 uptr r1_end = Min(end + kMaxRangeToCheck, mid); in __sanitizer_verify_contiguous_container() 393 uptr r2_end = Min(end, mid + kMaxRangeToCheck); in __sanitizer_verify_contiguous_container()
|
/external/skia/tests/ |
D | SkNxTest.cpp | 61 assert_eq(SkNf<N,T>::Min(a, fours), 3, 4, 4, 4); in test_Nf() 139 REPORTER_ASSERT(r, Sk16b::Min(Sk16b(a), Sk16b(b)).kth<0>() == SkTMin(a, b)); in DEF_TEST() 148 REPORTER_ASSERT(r, Sk8h::Min(Sk8h(a), Sk8h(b)).kth<0>() == SkTMin(a, b)); in DEF_TEST() 153 REPORTER_ASSERT(r, Sk8h::Min(Sk8h(a), Sk8h(b)).kth<0>() == SkTMin(a, b)); in DEF_TEST()
|
/external/zlib/src/contrib/dotzlib/DotZLib/ |
D | CircularBuffer.cs | 42 int trueCount = Math.Min(count, _capacity - Size); in Put() 63 int trueCount = Math.Min(count,Size); in Get()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | RangeConstraintManager.cpp | 470 llvm::APSInt Min = AdjustmentType.getMinValue(); in assumeSymLT() local 471 if (ComparisonVal == Min) in assumeSymLT() 474 llvm::APSInt Lower = Min-Adjustment; in assumeSymLT() 528 llvm::APSInt Min = AdjustmentType.getMinValue(); in assumeSymGE() local 529 if (ComparisonVal == Min) in assumeSymGE() 561 llvm::APSInt Min = AdjustmentType.getMinValue(); in assumeSymLE() local 562 llvm::APSInt Lower = Min-Adjustment; in assumeSymLE()
|
/external/llvm/lib/Analysis/ |
D | BlockFrequencyInfoImpl.cpp | 427 const Scaled64 &Min, const Scaled64 &Max) { in convertFloatingToInteger() argument 435 const unsigned SpreadBits = (Max / Min).lg(); in convertFloatingToInteger() 440 ScalingFactor = Min.inverse(); in convertFloatingToInteger() 450 DEBUG(dbgs() << "float-to-int: min = " << Min << ", max = " << Max in convertFloatingToInteger() 499 auto Min = Scaled64::getLargest(); in finalizeMetrics() local 503 Min = std::min(Min, Freqs[Index].Scaled); in finalizeMetrics() 508 convertFloatingToInteger(*this, Min, Max); in finalizeMetrics()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
D | SummaryStatistics.java | 28 import org.apache.commons.math.stat.descriptive.rank.Min; 77 protected Min min = new Min(); 692 dest.min = (Min) dest.minImpl; in copy() 694 Min.copy(source.min, dest.min); in copy()
|
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 651 unsigned Min = TargetScope; in VerifyIndirectJumps() local 653 Reachable.set(Min); in VerifyIndirectJumps() 656 if (Min == 0) break; in VerifyIndirectJumps() 659 if (Scopes[Min].InDiag) break; in VerifyIndirectJumps() 661 Min = Scopes[Min].ParentScope; in VerifyIndirectJumps() 688 if (Scope == 0 || Scope < Min) break; in VerifyIndirectJumps()
|