HomeSort by relevance Sort by last modified time
    Searched refs:VLOG_IS_ON (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /external/libbrillo/brillo/
location_logging.h 18 VLOG_IS_ON(verbose_level))
22 DCHECK_IS_ON() && VLOG_IS_ON(verbose_level))
  /system/core/adb/
adb_trace.h 43 #define VLOG_IS_ON(TAG) \
47 if (LIKELY(!VLOG_IS_ON(TAG))) \
  /art/libartbase/base/
logging.h 35 // The members of this struct are the valid arguments to VLOG and VLOG_IS_ON in code,
102 #define VLOG_IS_ON(module) UNLIKELY(::art::gLogVerbosity.module)
106 #define VLOG(module) if (VLOG_IS_ON(module)) LOG(INFO)
  /art/runtime/
parsed_options_test.cc 94 EXPECT_TRUE(VLOG_IS_ON(class_linker));
95 EXPECT_FALSE(VLOG_IS_ON(compiler));
96 EXPECT_FALSE(VLOG_IS_ON(heap));
97 EXPECT_TRUE(VLOG_IS_ON(gc));
98 EXPECT_FALSE(VLOG_IS_ON(jdwp));
99 EXPECT_TRUE(VLOG_IS_ON(jni));
100 EXPECT_FALSE(VLOG_IS_ON(monitor));
101 EXPECT_FALSE(VLOG_IS_ON(signals));
102 EXPECT_FALSE(VLOG_IS_ON(simulator));
103 EXPECT_FALSE(VLOG_IS_ON(startup))
    [all...]
  /external/libchrome/crypto/
openssl_util.cc 52 if (DCHECK_IS_ON() && VLOG_IS_ON(1)) {
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_runtime.cc 83 if (VLOG_IS_ON(2)) {
102 if (VLOG_IS_ON(2)) {
115 if (VLOG_IS_ON(2)) {
134 if (VLOG_IS_ON(2)) {
  /external/tensorflow/tensorflow/core/grappler/costs/
analytical_cost_estimator.cc 114 if (VLOG_IS_ON(3)) {
120 if (VLOG_IS_ON(1)) {
121 bool verbosity = VLOG_IS_ON(2);
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
logging.h 92 #define VLOG_IS_ON(lvl) ((lvl) <= LogMessage::MinVLogLevel())
95 if (TF_PREDICT_FALSE(VLOG_IS_ON(lvl))) \
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_subcomputation_unification_test.cc 90 if (VLOG_IS_ON(1)) {
96 if (VLOG_IS_ON(1)) {
129 if (VLOG_IS_ON(1)) {
135 if (VLOG_IS_ON(1)) {
169 if (VLOG_IS_ON(1)) {
175 if (VLOG_IS_ON(1)) {
  /art/runtime/entrypoints/quick/
quick_deoptimization_entrypoints.cc 17 #include "base/logging.h" // For VLOG_IS_ON.
32 if (VLOG_IS_ON(deopt)) {
quick_default_init_entrypoints.h 20 #include "base/logging.h" // FOR VLOG_IS_ON.
84 if (UNLIKELY(VLOG_IS_ON(systrace_lock_logging))) {
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_stream_util.cc 53 if (VLOG_IS_ON(2)) {
  /external/tensorflow/tensorflow/core/kernels/
summary_audio_op_test.cc 67 if (VLOG_IS_ON(2)) {
summary_image_op_test.cc 66 if (VLOG_IS_ON(2)) {
  /external/libchrome/base/
logging.h 106 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
108 // if (VLOG_IS_ON(2)) {
355 // We can't do any caching tricks with VLOG_IS_ON() like the
359 #define VLOG_IS_ON(verboselevel) \
386 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
390 VLOG_IS_ON(verbose_level) && (condition))
403 LAZY_STREAM(VPLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
407 VLOG_IS_ON(verbose_level) && (condition))
756 #define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
758 #define DVPLOG(verboselevel) DVPLOG_IF(verboselevel, VLOG_IS_ON(verboselevel)
    [all...]
  /external/tensorflow/tensorflow/core/platform/default/
logging.h 81 #define VLOG_IS_ON(lvl) ((lvl) <= 0)
85 #define VLOG_IS_ON(lvl) \
90 if (TF_PREDICT_FALSE(VLOG_IS_ON(lvl))) \
  /art/runtime/gc/space/
dlmalloc_space.cc 83 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
107 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
rosalloc_space.cc 100 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
126 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executable.cc 59 if (VLOG_IS_ON(2)) {
  /external/tensorflow/tensorflow/core/framework/
log_memory.cc 25 bool LogMemory::IsEnabled() { return VLOG_IS_ON(1); }
  /frameworks/ml/nn/common/include/
Utils.h 60 #define VLOG_IS_ON(TAG) \
64 if (LIKELY(!VLOG_IS_ON(TAG))) \
  /art/compiler/jit/
jit_compiler.cc 176 "JIT compiler timing logger", true, VLOG_IS_ON(jit), TimingLogger::TimingKind::kThreadCpu);
  /art/compiler/optimizing/
optimizing_compiler_stats.h 27 #include "base/logging.h" // For VLOG_IS_ON.
127 if (!kIsDebugBuild && !VLOG_IS_ON(compiler)) {
  /external/libchrome/base/metrics/
statistics_recorder_unittest.cc 634 EXPECT_FALSE(VLOG_IS_ON(1));
644 EXPECT_FALSE(VLOG_IS_ON(1));
647 EXPECT_TRUE(VLOG_IS_ON(1));
656 EXPECT_TRUE(VLOG_IS_ON(1));
  /external/tensorflow/tensorflow/compiler/jit/
build_xla_launch_ops_pass.cc 136 if (VLOG_IS_ON(1)) {

Completed in 2503 milliseconds

1 2 3 4 5