/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);
|
robots.h | 104 extern COORD Max, Min, My_pos, Robots[], Scrap[];
|
/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/common/dist/zlib/contrib/dotzlib/DotZLib/ |
CircularBuffer.cs | 42 int trueCount = Math.Min(count, _capacity - Size);
63 int trueCount = Math.Min(count,Size);
|
Inflater.cs | 66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
|
Deflater.cs | 66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
|
/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)) {
|
sanitizer_symbolizer_markup.cc | 124 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)}; 132 PopStackFrames(Min(to_pop, static_cast<uptr>(1)));
|
sanitizer_procmaps_solaris.cc | 53 Min(segment->filename_size, (uptr)PATH_MAX), "%s",
|
sanitizer_procmaps_linux.cc | 71 Min((uptr)(next_line - data_.current), segment->filename_size - 1);
|
sanitizer_file.cc | 104 uptr kMinFileLen = Min(PageSize, max_len); 107 for (uptr size = kMinFileLen;; size = Min(size * 2, max_len)) { 153 buff->resize(Min(Max(PageSize, read_len * 2), max_len));
|
sanitizer_procmaps_bsd.cc | 124 Min(segment->filename_size, (uptr)PATH_MAX), "%s",
|
sanitizer_unwind_linux_libcdep.cc | 126 UnwindTraceArg arg = {this, Min(max_depth + 1, kStackTraceMax)};
|
sanitizer_allocator_combined.h | 111 uptr memcpy_size = Min(new_size, old_size);
|
sanitizer_allocator_size_class_map.h | 181 return Max<uptr>(1U, Min(kMaxNumCachedHint, n));
|
sanitizer_stacktrace_libcdep.cc | 131 out_buf += __sanitizer::Min<uptr>(n, frame_desc.length());
|
sanitizer_suppressions.cc | 42 Min(path_to_exec_len, new_file_path_size - 1));
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_debugging.cc | 42 Min(name_size, vars[i].name_len + 1)); 67 size = Min(size, Min(stack.size, kStackTraceMax));
|
asan_poisoning.cc | 124 *beg.chunk = Min(value, beg.offset); 137 *beg.chunk = Min(beg.value, beg.offset); 376 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity); 419 uptr r1_end = Min(beg + kMaxRangeToCheck, mid); 421 uptr r2_end = Min(end, mid + kMaxRangeToCheck);
|
asan_memory_profile.cc | 66 for (uptr i = 0; i < Min(allocations_.size(), max_number_of_contexts);
|
/src/sys/arch/epoc32/stand/e32boot/ldd/ |
e32boot.cpp | 97 aDes.Copy((TUint8 *)&version, Min(aDes.MaxLength(), sizeof(version)));
|
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
FuzzerDefs.h | 145 template <class T> T Min(T a, T b) { return a < b ? a : b; }
|