/external/compiler-rt/lib/asan/ |
D | asan_flags.cc | 140 CHECK_LE((uptr)common_flags()->malloc_context_size, kStackTraceMax); in InitializeFlags() 141 CHECK_LE(f->min_uar_stack_size_log, f->max_uar_stack_size_log); in InitializeFlags() 144 CHECK_LE(f->max_redzone, 2048); in InitializeFlags()
|
D | asan_poisoning.cc | 84 CHECK_LE(size, 4096); in AsanPoisonOrUnpoisonIntraObjectRedzone() 345 CHECK_LE(end - beg, in __sanitizer_annotate_contiguous_container() 385 CHECK_LE(beg, mid); in __sanitizer_contiguous_container_find_bad_address() 386 CHECK_LE(mid, end); in __sanitizer_contiguous_container_find_bad_address()
|
D | asan_allocator.cc | 43 CHECK_LE(rz_size, 2048); in RZSize2Log() 204 CHECK_LE(sizeof(QuarantineCache), sizeof(ms->quarantine_cache)); in GetQuarantineCache() 249 CHECK_LE(options.max_redzone, 2048); in CheckOptions() 395 CHECK_LE(user_end, alloc_end); in Allocate() 406 CHECK_LE(alloc_beg+ 2 * sizeof(uptr), chunk_beg); in Allocate()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interface_java.cc | 99 CHECK_LE(ptr + size, jctx->heap_begin + jctx->heap_size); in __tsan_java_alloc() 112 CHECK_LE(ptr + size, jctx->heap_begin + jctx->heap_size); in __tsan_java_free() 126 CHECK_LE(src + size, jctx->heap_begin + jctx->heap_size); in __tsan_java_move() 128 CHECK_LE(dst + size, jctx->heap_begin + jctx->heap_size); in __tsan_java_move()
|
D | tsan_ignoreset.cc | 43 CHECK_LE(size_, kMaxSize); in At()
|
D | tsan_platform_posix.cc | 105 CHECK_LE(beg, end); in ProtectRange()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_coverage_mapping_libcdep.cc | 98 CHECK_LE(res, tmp_path.size()); in CovUpdateMapping() 115 CHECK_LE(res, path.size()); in CovUpdateMapping()
|
D | sanitizer_bitvector.h | 325 void check(uptr idx) const { CHECK_LE(idx, size()); } in check() 329 CHECK_LE(res, kLevel1Size); in idx0() 335 CHECK_LE(res, BV::kSize); in idx1() 341 CHECK_LE(res, BV::kSize); in idx2()
|
D | sanitizer_coverage_libcdep.cc | 330 CHECK_LE(new_mapped_size, sizeof(uptr) * kPcArrayMaxSize); in Extend() 721 CHECK_LE(r.beg, r.end); in DumpCounters() 722 CHECK_LE(r.end, size()); in DumpCounters() 743 CHECK_LE(r.beg, r.end); in DumpAsBitSet() 744 CHECK_LE(r.end, size()); in DumpAsBitSet() 769 CHECK_LE(r.beg, r.end); in GetRangeOffsets() 770 CHECK_LE(r.end, size()); in GetRangeOffsets()
|
D | sanitizer_internal_defs.h | 228 #define CHECK_LE(a, b) CHECK_IMPL((a), <=, (b)) macro 237 #define DCHECK_LE(a, b) CHECK_LE(a, b)
|
D | sanitizer_deadlock_detector2.cc | 189 CHECK_LE(id, kMaxMutex); in allocateId() 207 CHECK_LE(lt->nlocked, kMaxNesting); in MutexBeforeLock() 297 CHECK_LE(lt->nlocked, kMaxNesting); in MutexAfterLock()
|
D | sanitizer_unwind_linux_libcdep.cc | 157 CHECK_LE((uptr)res, kStackTraceMax); in SlowUnwindStackWithContext()
|
D | sanitizer_stacktrace.cc | 36 CHECK_LE(size, kStackTraceMax); in Init()
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | codegen.cc | 125 CHECK_LE(jt, kBranchRange); in Append() 126 CHECK_LE(jf, kBranchRange); in Append()
|
/external/libchrome/sandbox/linux/services/ |
D | thread_helpers.cc | 38 CHECK_LE(0, proc_fd); in IsSingleThreadedImpl() 44 CHECK_LE(3UL, task_stat.st_nlink); in IsSingleThreadedImpl()
|
D | thread_helpers_unittests.cc | 44 CHECK_LE(0, fd_); in ScopedProc()
|
/external/libmojo/mojo/edk/system/ |
D | test_utils.cc | 51 CHECK_LE(deadline, in Sleep()
|
/external/regex-re2/util/ |
D | test.h | 30 #define EXPECT_LE CHECK_LE
|
D | logging.h | 26 #define CHECK_LE(x, y) CHECK((x) <= (y)) macro
|
/external/v8/src/compiler/ |
D | operator.cc | 17 CHECK_LE(val, std::numeric_limits<N>::max()); in CheckRange()
|
/external/libcxx/utils/google-benchmark/src/ |
D | check.h | 67 #define CHECK_LE(a, b) CHECK((a) <= (b)) macro
|
/external/v8/src/base/ |
D | logging.h | 201 #define CHECK_LE(lhs, rhs) CHECK_OP(LE, <=, lhs, rhs) macro 223 #define DCHECK_LE(v1, v2) CHECK_LE(v1, v2)
|
/external/regex-re2/re2/ |
D | prog.cc | 300 CHECK_LE(lo, 255); in MarkByteRange() 301 CHECK_LE(hi, 255); in MarkByteRange()
|
/external/google-benchmark/src/ |
D | check.h | 68 #define CHECK_LE(a, b) CHECK((a) <= (b)) macro
|
/external/libchrome/base/json/ |
D | string_escape.cc | 88 CHECK_LE(str.length(), in EscapeJSONStringImpl()
|