HomeSort by relevance Sort by last modified time
    Searched defs:DCHECK (Results 1 - 14 of 14) sorted by null

  /external/pdfium/third_party/base/
logging.h 25 // hassle. Look into pulling in the real DCHECK definition. It might be more
28 #define DCHECK CHECK
  /external/perf_data_converter/src/quipper/mybase/base/
logging.h 137 #define DCHECK(x) CHECK(x)
  /external/tensorflow/tensorflow/core/platform/default/
logging.h 292 #define DCHECK(condition) CHECK(condition)
302 #define DCHECK(condition) \
  /external/v8/src/base/
hashmap.h 227 DCHECK(occupancy_ < capacity_);
286 DCHECK(map_ - 1 <= entry && entry < end);
300 DCHECK(base::bits::IsPowerOfTwo(capacity_));
302 DCHECK(i < capacity_);
304 DCHECK(occupancy_ < capacity_); // Guarantees loop termination.
318 DCHECK(!entry->exists());
336 DCHECK(base::bits::IsPowerOfTwo(capacity));
logging.h 63 #define DCHECK(condition) DCHECK_WITH_MSG(condition, #condition)
321 // The DCHECK macro is equivalent to CHECK except that it only
330 #define DCHECK_NULL(val) DCHECK((val) == nullptr)
331 #define DCHECK_NOT_NULL(val) DCHECK((val) != nullptr)
335 #define DCHECK(condition) ((void) 0)
  /external/v8/src/compiler/
persistent-map.h 188 DCHECK(i < length);
193 DCHECK(i < length);
242 DCHECK(more_iter_ != current_->more->end());
328 DCHECK(second_current_);
341 DCHECK(old_first < first_);
345 DCHECK(old_second < second_);
358 DCHECK(second_ < first_);
  /external/v8/src/runtime/
runtime-array.cc 208 DCHECK(object->HasSmiOrObjectElements() || object->HasDoubleElements());
433 DCHECK(array->length()->IsSmi());
571 DCHECK(new_target->IsConstructor());
742 DCHECK(success);
776 DCHECK(from_index->IsHeapNumber());
813 DCHECK(success);
844 DCHECK(success);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_internal_defs.h 233 #define DCHECK(a) CHECK(a)
241 #define DCHECK(a)
  /external/v8/src/heap/
gc-tracer.h 311 DCHECK(scope < Scope::NUMBER_OF_SCOPES);
  /external/v8/src/objects/
string.h 126 DCHECK(i < length_);
127 DCHECK(state_ != NON_FLAT);
    [all...]
  /external/v8/src/regexp/s390/
regexp-macro-assembler-s390.cc 297 DCHECK(mode_ == UC16);
396 DCHECK(mode_ == UC16);
619 DCHECK(r6.bit() & kRegExpCalleeSaved);
620 DCHECK(code_pointer().bit() & kRegExpCalleeSaved);
621 DCHECK(current_input_offset().bit() & kRegExpCalleeSaved);
622 DCHECK(current_character().bit() & kRegExpCalleeSaved);
623 DCHECK(backtrack_stackpointer().bit() & kRegExpCalleeSaved);
624 DCHECK(end_of_input_address().bit() & kRegExpCalleeSaved);
625 DCHECK(frame_pointer().bit() & kRegExpCalleeSaved);
    [all...]
  /external/libchrome/base/
logging.h     [all...]
  /external/v8/src/arm64/
assembler-arm64-inl.h 44 DCHECK(IsValid());
50 DCHECK(IsValid());
56 DCHECK(IsValid());
57 DCHECK(other.type() == type_);
58 DCHECK(other.RegisterSizeInBits() == size_);
64 DCHECK(IsValid());
72 DCHECK(other.type() == type_);
73 DCHECK(other.SizeInBits() == size_);
90 DCHECK(IsValid());
91 DCHECK(CPURegister::Create(code, size_, type_).IsValid())
    [all...]
  /external/v8/src/
d8.cc 51 #ifndef DCHECK
52 #define DCHECK(condition) assert(condition)
479 DCHECK(*key);
498 DCHECK(*key);
527 DCHECK(options.compile_options != ScriptCompiler::kProduceParserCache);
528 DCHECK(options.compile_options != ScriptCompiler::kConsumeParserCache);
594 DCHECK(try_catch.HasCaught());
599 DCHECK(!try_catch.HasCaught());
653 DCHECK(IsAbsolutePath(path));
655 DCHECK(last_slash != std::string::npos)
    [all...]

Completed in 374 milliseconds