Searched defs:DCHECK (Results 1 - 25 of 27) sorted by last modified time

12

/external/regex-re2/util/
H A Dlogging.h14 #define DCHECK(condition) assert(condition) macro
/external/qemu/android/base/
H A DLog.h157 // ENABLE_DCHECK controls how DCHECK() statements are compiled:
158 // 0 - DCHECK() are not compiled in the binary at all.
159 // 1 - DCHECK() are compiled, but are not performed at runtime, unless
160 // the DCHECK level has been increased explicitely.
161 // 2 - DCHECK() are always compiled as CHECK() in the final binary.
180 // DCHECK_IS_ON() is used to indicate whether DCHECK() should do anything.
182 // NOTE: Compile-time constant ensures the DCHECK() statements are
191 // A function that returns true iff DCHECK() should actually do any checking.
194 // Change the DCHECK() level to either false or true. Should only be called
208 // DCHECK(conditio
212 #define DCHECK macro
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_internal_defs.h235 #define DCHECK(a) CHECK(a) macro
243 #define DCHECK(a)
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-arm64.cc119 DCHECK(isolate != NULL); \
173 DCHECK(isolate != NULL); \
3356 DCHECK(range_ > 0);
3387 DCHECK((code_size + pool_guard_size) <= range);
3401 DCHECK(code_size == range);
5500 DCHECK(IsSignallingNaN(s1));
5501 DCHECK(IsSignallingNaN(s2));
5502 DCHECK(IsSignallingNaN(sa));
5503 DCHECK(IsQuietNaN(q1));
5504 DCHECK(IsQuietNa
9122 DCHECK(i < reg_count); function
[all...]
/external/chromium_org/v8/src/arm64/
H A Dassembler-arm64-inl.h28 DCHECK(IsCodeTarget(rmode_) || IsRuntimeEntry(rmode_));
40 DCHECK(IsValid());
46 DCHECK(IsValidOrNone());
52 DCHECK(reg_code < (sizeof(RegList) * kBitsPerByte));
58 DCHECK(IsValid());
64 DCHECK(IsValid());
65 DCHECK(SizeInBits() % 8 == 0);
71 DCHECK(IsValid());
77 DCHECK(IsValid());
84 DCHECK(!IsNon
1241 DCHECK(pc_ < (buffer_ + buffer_size_)); function
[all...]
/external/chromium_org/v8/src/base/
H A Dlogging.h193 // The DCHECK macro is equivalent to CHECK except that it only
197 #define DCHECK(condition) CHECK(condition) macro
205 #define DCHECK(condition) ((void) 0)
/external/chromium_org/v8/src/
H A Dd8.cc64 #ifndef DCHECK
65 #define DCHECK(condition) assert(condition) macro
195 DCHECK(false); // A new compile option?
244 DCHECK(try_catch.HasCaught());
250 DCHECK(!try_catch.HasCaught());
755 DCHECK(counter->is_histogram() == is_histogram);
968 DCHECK(!context.IsEmpty());
1115 DCHECK(sizeof(char) == sizeof(uint8_t)); // NOLINT
H A Ddate.cc34 DCHECK(stamp_ != Smi::FromInt(kInvalidStamp));
76 DCHECK(DaysFromYearMonth(*year, 0) + days == save_days);
96 DCHECK(days >= -1);
97 DCHECK(is_leap || (days >= 0));
98 DCHECK((days < 365) || (is_leap && (days < 366)));
99 DCHECK(is_leap == ((*year % 4 == 0) && (*year % 100 || (*year % 400 == 0))));
100 DCHECK(is_leap || ((DaysFromYearMonth(*year, 0) + days) == save_days));
101 DCHECK(!is_leap || ((DaysFromYearMonth(*year, 0) + days + 1) == save_days));
127 DCHECK(DaysFromYearMonth(*year, *month) + *day - 1 == save_days);
149 DCHECK(mont
150 DCHECK(month < 12); function
[all...]
H A Dhashmap.h168 DCHECK(occupancy_ < capacity_); function
228 DCHECK(map_ - 1 <= p && p < end);
241 DCHECK(key != NULL);
243 DCHECK(base::bits::IsPowerOfTwo32(capacity_));
246 DCHECK(map_ <= p && p < end);
248 DCHECK(occupancy_ < capacity_); // Guarantees loop termination.
263 DCHECK(base::bits::IsPowerOfTwo32(capacity));
H A Dobjects-inl.h299 DCHECK(!object->IsUninitialized());
301 DCHECK(object->FitsRepresentation(representation));
311 DCHECK((type_ & kIsNotStringMask) == kStringTag);
318 DCHECK((type_ & kIsNotStringMask) == kStringTag);
325 DCHECK((type_ & kIsNotStringMask) == kStringTag);
330 DCHECK(valid());
353 DCHECK(IsFlat());
369 DCHECK(IsFlat());
468 DCHECK(0 <= index && index <= length_);
510 DCHECK(resul
1646 DCHECK(count < MementoFoundCountBits::kMax); function
[all...]
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc73 DCHECK(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT);
82 DCHECK(rinfo->rmode() == RelocInfo::CELL);
355 DCHECK(evacuation_candidates_.length() == 0);
392 DCHECK(state_ == PREPARE_GC);
395 DCHECK(heap_->incremental_marking()->IsStopped());
429 DCHECK(marking_parity_ == ODD_MARKING_PARITY);
557 DCHECK(free_list_old_pointer_space_.get()->IsEmpty());
558 DCHECK(free_list_old_data_space_.get()->IsEmpty());
575 DCHECK(sweeping_in_progress_ == true);
653 DCHECK(MemoryChun
4103 DCHECK(byte < kStartTableLines); // No consecutive 1 bits. function
[all...]
/external/chromium_org/v8/src/mips64/
H A Dmacro-assembler-mips64.cc36 DCHECK(!r.IsDouble());
56 DCHECK(!r.IsDouble());
109 DCHECK(num_unsaved >= 0);
161 DCHECK(cc == eq || cc == ne);
178 DCHECK(!AreAliased(value, dst, t8, object));
190 DCHECK(IsAligned(offset, kPointerSize));
229 DCHECK(!dst.is(at));
308 DCHECK(!AreAliased(object, address, value, t8));
309 DCHECK(!AreAliased(object, address, value, t9));
396 DCHECK(!scratc
1278 DCHECK(pos < 32); function
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dchecks.h38 // - DCHECK(x) is the same as CHECK(x)---an assertion that x is always
45 // call DCHECK; if the condition really can't occur, but you'd sleep better
47 // case you were wrong, use CHECK instead of DCHECK.
50 // variants of CHECK and DCHECK that print prettier messages if the condition
51 // doesn't hold. Prefer them to raw CHECK and DCHECK.
155 // The DCHECK macro is equivalent to CHECK except that it only generates code in
158 #define DCHECK(condition) CHECK(condition) macro
166 #define DCHECK(condition) EAT_STREAM_PARAMETERS
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Dscreen_capturer_x11.cc34 #define DCHECK(condition) (void)(condition) macro
36 #define DCHECK(condition) if (!(condition)) {abort();} macro
256 DCHECK(!callback_);
257 DCHECK(callback);
309 DCHECK(!mouse_shape_observer_);
310 DCHECK(mouse_shape_observer);
316 DCHECK(screens->size() == 0);
335 DCHECK(damage_event->level == XDamageReportNonEmpty);
356 DCHECK(has_xfixes_);
438 DCHECK(differ
[all...]
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/
H A Dlogging.h28 #if !defined(DCHECK)
29 #define DCHECK(X) assert(X) macro
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_logging.h16 #undef DCHECK macro
17 #define DCHECK(expr) macro
/external/chromium_org/third_party/re2/util/
H A Dlogging.h19 #define DCHECK(condition) assert(condition) macro
/external/chromium_org/third_party/cld/base/
H A Dlogging.h496 // Real DCHECK-heavy tests have seen 1.5x speedups.
748 #define DCHECK(condition) CHECK(condition) macro
781 #define DCHECK(condition) \ macro
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcldutil.cc481 DCHECK(usrclen >= 0);
642 DCHECK(src < srclimit); function
/external/chromium_org/extensions/renderer/resources/
H A Dutils.js9 var DCHECK = requireNative('logging').DCHECK; variable
153 DCHECK(typeof func == 'function');
/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.cc183 DCHECK(HaveRingBuffer());
203 DCHECK(HaveRingBuffer());
246 DCHECK(HaveRingBuffer());
247 DCHECK(count < total_entry_count_); function
/external/chromium_org/media/base/
H A Dyuv_convert.cc423 DCHECK(dest_rect_left >= 0 && dest_rect_right <= dest_width);
424 DCHECK(dest_rect_top >= 0 && dest_rect_bottom <= dest_height);
425 DCHECK(dest_rect_right > dest_rect_left);
426 DCHECK(dest_rect_bottom > dest_rect_top);
496 DCHECK(source_row < source_height); function
/external/chromium_org/content/browser/gpu/
H A Dcompositor_util.cc159 DCHECK(index < arraysize(kGpuFeatureInfo)); function
/external/chromium_org/content/browser/loader/
H A Dresource_buffer.cc47 DCHECK(!IsInitialized());
68 DCHECK(IsInitialized());
78 DCHECK(IsInitialized());
91 DCHECK(CanAllocate());
115 DCHECK(alloc_start_ >= min_alloc_size_);
121 DCHECK(alloc_end_ < alloc_start_); function
143 DCHECK(!alloc_sizes_.empty());
144 DCHECK(alloc_end_ >= alloc_sizes_.back());
149 DCHECK(!alloc_sizes_.empty());
164 DCHECK(!alloc_sizes
[all...]
/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page.cc177 DCHECK(threat_type == SB_THREAT_TYPE_URL_PHISHING ||
182 DCHECK(phishing || malware || harmful);
352 DCHECK(colon_index < command.size() - 1); function
378 DCHECK(unsafe_resources_[element_index].threat_type ==
443 DCHECK(!interstitial_page_);
687 DCHECK(!unsafe_resources_.empty());

Completed in 2522 milliseconds

12