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

1 2 3 4 5 6 7 8 91011

  /external/libmojo/ui/gfx/range/
range_win.cc 38 CHECK_LE(static_cast<LONG>(start()), kLONGMax);
39 CHECK_LE(static_cast<LONG>(end()), kLONGMax);
  /external/tensorflow/tensorflow/core/lib/io/
block_builder.cc 73 CHECK_LE(restarts_.size(), std::numeric_limits<uint32_t>::max());
98 CHECK_LE(buffer_.size(), std::numeric_limits<uint32_t>::max());
104 CHECK_LE(shared, std::numeric_limits<uint32_t>::max());
105 CHECK_LE(non_shared, std::numeric_limits<uint32_t>::max());
106 CHECK_LE(value.size(), std::numeric_limits<uint32_t>::max());
  /external/tensorflow/tensorflow/core/platform/posix/
net.cc 43 CHECK_LE(*port, 65535);
74 CHECK_LE(addr_len, sizeof(addr));
100 CHECK_LE(trial, kMaximumTrials)
  /external/tensorflow/tensorflow/core/platform/windows/
net.cc 45 CHECK_LE(*port, 65535);
84 CHECK_LE(addr_len, sizeof(addr));
117 CHECK_LE(trial, kMaximumTrials)
  /art/compiler/optimizing/
data_type.cc 41 CHECK_LE(uint_type, static_cast<uint32_t>(Type::kLast));
  /external/compiler-rt/lib/tsan/rtl/
tsan_ignoreset.cc 43 CHECK_LE(size_, kMaxSize);
  /hardware/google/av/codec2/vndk/include/
android-C2Debug-log.h 53 #define C2_CHECK_LE CHECK_LE
  /system/bt/packet/base/
packet_builder.cc 32 CHECK_LE(octets, sizeof(uint64_t));
  /external/tensorflow/tensorflow/core/platform/
logging_test.cc 41 CHECK_LE(2, 3);
74 ASSERT_DEATH(CHECK_LE(3, 2), "3 <= 2");
  /frameworks/av/media/libstagefright/foundation/
ABuffer.cpp 69 CHECK_LE(offset, mCapacity);
70 CHECK_LE(offset + size, mCapacity);
  /external/compiler-rt/lib/asan/
asan_flags.cc 140 CHECK_LE((uptr)common_flags()->malloc_context_size, kStackTraceMax);
141 CHECK_LE(f->min_uar_stack_size_log, f->max_uar_stack_size_log);
144 CHECK_LE(f->max_redzone, 2048);
  /external/libmojo/mojo/edk/system/
test_utils.cc 51 CHECK_LE(deadline,
  /external/tensorflow/tensorflow/core/framework/
tensor_util.cc 81 CHECK_LE(offset + from_data.size(), to_data.size());
97 CHECK_LE(offset + tensor.NumElements(), result->NumElements());
138 CHECK_LE(offset + to_data.size(), from_data.size());
159 CHECK_LE(offset + split.NumElements(), tensor.NumElements());
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_mapping_libcdep.cc 98 CHECK_LE(res, tmp_path.size());
115 CHECK_LE(res, path.size());
  /external/tensorflow/tensorflow/compiler/xla/
reference_util.h 337 CHECK_LE(starts[0], input.n1());
338 CHECK_LE(starts[1], input.n2());
339 CHECK_LE(limits[0], input.n1());
340 CHECK_LE(limits[1], input.n2());
360 CHECK_LE(starts[0], input.n1());
361 CHECK_LE(starts[1], input.n2());
362 CHECK_LE(starts[2], input.n3());
363 CHECK_LE(limits[0], input.n1());
364 CHECK_LE(limits[1], input.n2());
365 CHECK_LE(limits[2], input.n3())
    [all...]
sparse_index_array.cc 55 CHECK_LE(rank_ * sparse_element_number + rank_, indices_.size());
64 CHECK_LE(rank_ * sparse_element_number + rank_, indices_.size());
  /frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
ADebug.h 105 #undef CHECK_LE
113 #define CHECK_LE(x,y) CHECK_OP(x,y,LE,<=)
127 #define CHECK_LE_DBG CHECK_LE
  /art/runtime/gc/space/
bump_pointer_space-walk-inl.h 84 CHECK_LE(reinterpret_cast<const uint8_t*>(end_obj), End());
  /art/runtime/
memory_region.cc 28 CHECK_LE(offset, this->size() - from.size());
  /bootable/recovery/applypatch/
bspatch.cpp 76 CHECK_LE(patch_offset, patch.data.size());
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
resolve_strided_slice_attributes.cc 56 CHECK_LE(op->start_indices.size(), 4);
  /external/v8/src/compiler/
operator.cc 17 CHECK_LE(val, std::numeric_limits<N>::max());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
check.h 67 #define CHECK_LE(a, b) CHECK((a) <= (b))
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
buffer_allocations.cc 142 CHECK_LE(buffer_slice.offset(), base.size());
143 CHECK_LE(buffer_slice.offset() + buffer_slice.size(), base.size());
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder.cc 34 CHECK_LE(precision, 16);
302 CHECK_LE(precision, 16);

Completed in 654 milliseconds

1 2 3 4 5 6 7 8 91011