HomeSort by: relevance | last modified time | path
    Searched refs:Min (Results 1 - 25 of 257) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/gpl3/gdb/dist/sim/testsuite/cris/c/
sched5.c 10 int Min = sched_get_priority_min (SCHED_OTHER);
12 if (Min != 0 || Max != 0)
14 fprintf (stderr, "min: %d, max: %d\n", Min, Max);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/cris/c/
sched5.c 10 int Min = sched_get_priority_min (SCHED_OTHER);
12 if (Min != 0 || Max != 0)
14 fprintf (stderr, "min: %d, max: %d\n", Min, Max);
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
OSTargets.cpp 51 unsigned Maj, Min, Rev;
53 Triple.getMacOSXVersion(Maj, Min, Rev);
56 Triple.getOSVersion(Maj, Min, Rev);
64 PlatformMinVersion = VersionTuple(Maj, Min, Rev);
70 assert(Maj < 100 && Min < 100 && Rev < 100 && "Invalid version!");
74 Str[1] = '0' + (Min / 10);
75 Str[2] = '0' + (Min % 10);
83 Str[2] = '0' + (Min / 10);
84 Str[3] = '0' + (Min % 10);
96 assert(Maj < 10 && Min < 100 && Rev < 100 && "Invalid version!")
    [all...]
  /src/games/robots/
make_level.c 72 Min.y = Y_FIELDSIZE;
73 Min.x = X_FIELDSIZE;
85 if (cp->y < Min.y)
86 Min.y = cp->y;
87 if (cp->x < Min.x)
88 Min.x = cp->x;
move_robs.c 58 move(Min.y, Min.x);
81 Min.y = Y_FIELDSIZE;
82 Min.x = X_FIELDSIZE;
101 if (rp->y < Min.y)
102 Min.y = rp->y;
103 if (rp->x < Min.x)
104 Min.x = rp->x;
119 move(Min.y, Min.x)
    [all...]
extern.c 80 COORD Min; /* Min area robots take up */
play_level.c 66 move(Min.y, Min.x);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
BytesOutputStyle.h 36 void dumpBlockRanges(uint32_t Min, uint32_t Max);
37 void dumpByteRanges(uint32_t Min, uint32_t Max);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizeMutations.cpp 57 unsigned Min) {
61 std::max(1u << Log2_32_Ceil(Ty.getScalarSizeInBits()), Min);
67 unsigned Min) {
71 std::max(1u << Log2_32_Ceil(VecTy.getNumElements()), Min);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
ReductionRules.h 50 PBQPNum Min = ECosts[0][j] + XCosts[0];
53 if (C < Min)
54 Min = C;
56 YCosts[j] += Min;
60 PBQPNum Min = ECosts[i][0] + XCosts[0];
63 if (C < Min)
64 Min = C;
66 YCosts[i] += Min;
112 PBQPNum Min = (*YXECosts)[i][0] + (*ZXECosts)[j][0] + XCosts[0];
115 if (C < Min) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph.h 39 enum class StatType { NONE, COUNT, MIN, MED, PCT90, PCT99, MAX, SUM };
44 double Min;
168 return {A.Count + B.Count, A.Min + B.Min, A.Median + B.Median,
177 return {A.Count - B.Count, A.Min - B.Min, A.Median - B.Median,
187 A.Min / B,
199 A.Min * B,
216 return {A.Count * B.Count, A.Min * B.Min, A.Median * B.Median
    [all...]
xray-color-helper.cpp 70 // Being below min, and missing left being above max.
86 int Min = 0;
89 if (Scaled[i] < Scaled[Min])
90 Min = i;
95 double C = Scaled[Max] - Scaled[Min];
113 double n = std::max(std::min(B, 1.0), 0.0);
142 double Min = V - C;
143 double RGB2[3] = {RGB1[0] + Min, RGB1[1] + Min, RGB1[2] + Min};
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
LowerTypeTests.h 63 uint64_t Min = std::numeric_limits<uint64_t>::max();
69 if (Min > Offset)
70 Min = Offset;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVSubtarget.cpp 37 "riscv-v-vector-bits-min",
132 unsigned Min = RVVVectorBitsMin;
134 Min = std::min(RVVVectorBitsMin, RVVVectorBitsMax);
135 return PowerOf2Floor(Min < 128 ? 0 : Min);
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 254 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc);
256 MemoryLocation OrigMin = Min;
258 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
264 if (Max - Min > BytesToShow)
265 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
266 Max = addNoOverflow(Min, BytesToShow);
268 if (!IsAccessibleMemoryRange(Min, Max - Min))
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.cpp 267 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc);
269 MemoryLocation OrigMin = Min;
271 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
277 if (Max - Min > BytesToShow)
278 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
279 Max = addNoOverflow(Min, BytesToShow);
281 if (!IsAccessibleMemoryRange(Min, Max - Min))
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.cpp 261 MemoryLocation Min = subtractNoOverflow(Loc, MinBytesNearLoc);
263 MemoryLocation OrigMin = Min;
265 Min = __sanitizer::Min(Ranges[I].getStart().getMemoryLocation(), Min);
271 if (Max - Min > BytesToShow)
272 Min = __sanitizer::Min(Max - BytesToShow, OrigMin);
273 Max = addNoOverflow(Min, BytesToShow);
275 if (!IsAccessibleMemoryRange(Min, Max - Min))
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_unwind_win.cc 33 size = CaptureStackBackTrace(1, Min(max_depth, kStackTraceMax),
69 size < Min(max_depth, kStackTraceMax)) {
  /src/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 42 int trueCount = Math.Min(count, _capacity - Size);
63 int trueCount = Math.Min(count,Size);
  /src/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 42 int trueCount = Math.Min(count, _capacity - Size);
63 int trueCount = Math.Min(count,Size);
  /src/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 42 int trueCount = Math.Min(count, _capacity - Size);
63 int trueCount = Math.Min(count,Size);
  /src/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 42 int trueCount = Math.Min(count, _capacity - Size);
63 int trueCount = Math.Min(count,Size);
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
CircularBuffer.cs 42 int trueCount = Math.Min(count, _capacity - Size);
63 int trueCount = Math.Min(count,Size);
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 196 bool MatchAnyLine, StringRef Text, unsigned Min, unsigned Max);
205 unsigned Min, Max;
223 unsigned Min, unsigned Max)
225 Min(Min), Max(Max), MatchAnyLine(MatchAnyLine || MatchAnyFileAndLine),
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_malloc_bisect.h 19 uptr len = Min(stack->size, (unsigned)7);

Completed in 55 milliseconds

1 2 3 4 5 6 7 8 91011