Home
last modified time | relevance | path

Searched refs:CHECK_LE (Results 1 – 25 of 156) sorted by relevance

1234567

/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dresolve_strided_slice_attributes.cc88 CHECK_LE(start_indices_size, 4); in Run()
89 CHECK_LE(stop_indices_size, 4); in Run()
90 CHECK_LE(stride_indices_size, 4); in Run()
95 CHECK_LE(start_indices_size, num_input_axes) in Run()
98 CHECK_LE(stop_indices_size, num_input_axes) in Run()
101 CHECK_LE(stride_indices_size, num_input_axes) in Run()
Dresolve_constant_slice.cc49 CHECK_LE(op.begin.size(), 4); in Slice()
50 CHECK_LE(size.size(), 4); in Slice()
/external/tensorflow/tensorflow/core/lib/io/
Dblock_builder.cc73 CHECK_LE(restarts_.size(), std::numeric_limits<uint32_t>::max()); in Finish()
98 CHECK_LE(buffer_.size(), std::numeric_limits<uint32_t>::max()); in Add()
104 CHECK_LE(shared, std::numeric_limits<uint32_t>::max()); in Add()
105 CHECK_LE(non_shared, std::numeric_limits<uint32_t>::max()); in Add()
106 CHECK_LE(value.size(), std::numeric_limits<uint32_t>::max()); in Add()
/external/tensorflow/tensorflow/compiler/xla/
Dreference_util.h346 CHECK_LE(starts[0], input.n1()); in Slice2D()
347 CHECK_LE(starts[1], input.n2()); in Slice2D()
348 CHECK_LE(limits[0], input.n1()); in Slice2D()
349 CHECK_LE(limits[1], input.n2()); in Slice2D()
369 CHECK_LE(starts[0], input.n1()); in Slice3D()
370 CHECK_LE(starts[1], input.n2()); in Slice3D()
371 CHECK_LE(starts[2], input.n3()); in Slice3D()
372 CHECK_LE(limits[0], input.n1()); in Slice3D()
373 CHECK_LE(limits[1], input.n2()); in Slice3D()
374 CHECK_LE(limits[2], input.n3()); in Slice3D()
[all …]
Dsparse_index_array.cc32 CHECK_LE(index_count(), max_indices_); in SparseIndexArray()
55 CHECK_LE(rank_ * sparse_element_number + rank_, indices_.size()); in At()
63 CHECK_LE(rank_ * sparse_element_number + rank_, indices_.size()); in At()
/external/libchrome/base/test/
Dtest_timeouts.cc114 CHECK_LE(tiny_timeout_ms_, action_timeout_ms_); in Initialize()
115 CHECK_LE(action_timeout_ms_, action_max_timeout_ms_); in Initialize()
116 CHECK_LE(action_timeout_ms_, test_launcher_timeout_ms_); in Initialize()
Dfuzzed_data_provider.cc31 CHECK_LE(min, max); in ConsumeUint32InRange()
80 CHECK_LE(min, max); in ConsumeInt32InRange()
/external/tensorflow/tensorflow/core/platform/posix/
Dnet.cc44 CHECK_LE(*port, 65535); in IsPortAvailable()
75 CHECK_LE(addr_len, sizeof(addr)); in IsPortAvailable()
101 CHECK_LE(trial, kMaximumTrials) in PickUnusedPortOrDie()
/external/tensorflow/tensorflow/core/platform/windows/
Dnet.cc45 CHECK_LE(*port, 65535); in IsPortAvailable()
84 CHECK_LE(addr_len, sizeof(addr)); in IsPortAvailable()
117 CHECK_LE(trial, kMaximumTrials) in PickUnusedPortOrDie()
/external/compiler-rt/lib/asan/
Dasan_flags.cc140 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()
Dasan_poisoning.cc84 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()
/external/tensorflow/tensorflow/core/platform/
Dlogging_test.cc41 CHECK_LE(2, 3); in TEST()
74 ASSERT_DEATH(CHECK_LE(3, 2), "3 <= 2"); in TEST()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interface_java.cc99 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()
/external/tensorflow/tensorflow/core/framework/
Dtensor_shape_test.cc409 CHECK_LE(0, num_elements_); in AddDim()
410 CHECK_LE(num_elements_, kMaxElements); in AddDim()
419 CHECK_LE(d, dims()); in InsertDim()
423 CHECK_LE(0, num_elements_); in InsertDim()
424 CHECK_LE(num_elements_, kMaxElements); in InsertDim()
451 CHECK_LE(0, num_elements_); in recompute_dims()
452 CHECK_LE(num_elements_, kMaxElements); in recompute_dims()
Dtensor_util.cc87 CHECK_LE(offset + from_data.size(), to_data.size()); in Concat()
103 CHECK_LE(offset + tensor.NumElements(), result->NumElements()); in Concat()
144 CHECK_LE(offset + to_data.size(), from_data.size()); in Split()
165 CHECK_LE(offset + split.NumElements(), tensor.NumElements()); in Split()
Dmemory_types.cc127 CHECK_LE(inp_mtypes->size(), inp_dtypes.size()); in MemoryTypesForNode()
128 CHECK_LE(out_mtypes->size(), out_dtypes.size()); in MemoryTypesForNode()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_coverage_mapping_libcdep.cc98 CHECK_LE(res, tmp_path.size()); in CovUpdateMapping()
115 CHECK_LE(res, path.size()); in CovUpdateMapping()
Dsanitizer_bitvector.h325 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()
/external/v8/src/
Dobjects-debug.cc555 CHECK_LE(map()->EnumLength(), keys->length()); in JSObjectVerify()
702 CHECK_LE(LengthFor(nof_descriptors), length()); in DescriptorArrayVerify()
731 CHECK_LE(LengthFor(number_of_transitions()), length()); in TransitionArrayVerify()
793 CHECK_LE(maxMappedIndex, mappedIndex); in SloppyArgumentsElementsVerify()
801 CHECK_LE(nofMappedParameters, context_object->length()); in SloppyArgumentsElementsVerify()
802 CHECK_LE(nofMappedParameters, arg_elements->length()); in SloppyArgumentsElementsVerify()
803 CHECK_LE(maxMappedIndex, context_object->length()); in SloppyArgumentsElementsVerify()
804 CHECK_LE(maxMappedIndex, arg_elements->length()); in SloppyArgumentsElementsVerify()
1056 CHECK_LE(value, 1); in OddballVerify()
1106 CHECK_LE(constant_pool_offset(), InstructionSize()); in CodeVerify()
[all …]
/external/tensorflow/tensorflow/contrib/factorization/kernels/
Dwals_solver_ops.cc195 CHECK_LE(shards.size(), num_nonzero_elements); in Compute()
240 CHECK_LE(shard.second, perm.size()); in Compute()
241 CHECK_LE(shard.first, shard.second); in Compute()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dbuffer_allocations.cc163 CHECK_LE(buffer_slice.offset(), base.size()); in GetDeviceAddress()
164 CHECK_LE(buffer_slice.offset() + buffer_slice.size(), base.size()); in GetDeviceAddress()
/external/tensorflow/tensorflow/core/lib/core/
Darena.cc163 CHECK_LE(adjusted_alignment, static_cast<uint32>(1 << 20)) in AllocNewBlock()
213 CHECK_LE(size, remaining_); in GetMemoryFallback()
/external/tensorflow/tensorflow/contrib/coder/kernels/
Drange_coder.cc34 CHECK_LE(precision, 16); in RangeEncoder()
302 CHECK_LE(precision, 16); in RangeDecoder()
/external/tensorflow/tensorflow/core/lib/random/
Dweighted_picker.cc53 CHECK_LE(0, n); in UnbiasedUniform()
129 CHECK_LE(position, level_[num_levels_ - 1][index]); in PickAt()
/external/tensorflow/tensorflow/core/platform/default/
Dlogging.h282 #define CHECK_LE(val1, val2) CHECK_OP(Check_LE, <=, val1, val2) macro
295 #define DCHECK_LE(val1, val2) CHECK_LE(val1, val2)
326 #define QCHECK_LE(x, y) CHECK_LE(x, y)

1234567