HomeSort by relevance Sort by last modified time
    Searched full:kint32max (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/kernels/
tile_functor_gpu.cu.cc 51 CHECK_LT(in_nelem, kint32max) << "Tensor too large to transpose on GPU";
53 CHECK_LT(out_nelem, kint32max) << "Tensor too large to transpose on GPU";
range_sampler.cc 93 CHECK_LT(num_tries, kint32max);
179 CHECK_LT(range, kint32max);
192 kint32max - picker_.total_weight());
202 CHECK_LT(range, kint32max);
random_shuffle_op.cc 95 if (size < kint32max) {
transpose_functor_gpu.cu.cc 61 CHECK_LT(nelem, kint32max) << "Tensor too large to transpose on GPU";
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CjkBreakEngine.java 74 private static final int kint32max = Integer.MAX_VALUE; field in class:CjkBreakEngine
137 bestSnlp[i] = kint32max;
152 if (bestSnlp[i] == kint32max) {
208 if (bestSnlp[numChars] == kint32max) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CjkBreakEngine.java 73 private static final int kint32max = Integer.MAX_VALUE; field in class:CjkBreakEngine
136 bestSnlp[i] = kint32max;
151 if (bestSnlp[i] == kint32max) {
207 if (bestSnlp[numChars] == kint32max) {
  /external/tensorflow/tensorflow/core/platform/
integral_types_test.cc 38 EXPECT_EQ(static_cast<uint32>(kint32min), static_cast<uint32>(kint32max) + 1);
types.h 60 static const int32 kint32max = ((int32)0x7FFFFFFF); member in namespace:tensorflow
  /external/tensorflow/tensorflow/cc/training/
queue_runner.cc 53 if (op_names_size > kint32max) {
55 "Enqueue ops to run cannot exceed kint32max");
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.cc 49 // is ::google::protobuf::kint32max, GOOGLE_ARRAYSIZE will overflow. In such cases we should omit the
58 return max_value != ::google::protobuf::kint32max;
121 "$classname$_$prefix$INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max");
  /external/protobuf/src/google/protobuf/
wire_format_lite.cc 415 GOOGLE_CHECK_LE(value.size(), kint32max);
424 GOOGLE_CHECK_LE(value.size(), kint32max);
431 GOOGLE_CHECK_LE(value.size(), kint32max);
439 GOOGLE_CHECK_LE(value.size(), kint32max);
  /external/tensorflow/tensorflow/core/lib/random/
distribution_sampler_test.cc 99 CHECK_NE(r, kint32max);
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 72 EXPECT_LT(kint32min, kint32max);
73 EXPECT_EQ(static_cast<uint32>(kint32min), static_cast<uint32>(kint32max) + 1);
port.h 139 static const int32 kint32max = 0x7FFFFFFF; member in namespace:google::protobuf
140 static const int32 kint32min = -kint32max - 1;
  /external/tensorflow/tensorflow/core/framework/
shape_inference.cc 331 if (rank > kint32max) {
332 return errors::InvalidArgument("Rank cannot exceed kint32max");
356 if (rank > kint32max) {
357 return errors::InvalidArgument("Rank cannot exceed kint32max");
371 if (rank > kint32max) {
372 return errors::InvalidArgument("Rank cannot exceed kint32max");
696 CHECK_LE(rank, kint32max) << "rank must be less than kint32max";
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
port.h 139 static const int32 kint32max = 0x7FFFFFFF; member in namespace:google::protobuf
140 static const int32 kint32min = -kint32max - 1;
  /external/protobuf/python/google/protobuf/internal/
descriptor_test.py 184 kint32max = 2**31 - 1
220 self.assertEqual(kint32max, message_options.Extensions[
228 self.assertEqual(kint32max, message_options.Extensions[
236 self.assertEqual(kint32max, message_options.Extensions[
    [all...]
  /external/tensorflow/tensorflow/core/util/
saved_tensor_slice_util.cc 66 if (x >= kint32max) {
  /external/jsoncpp/src/test_lib_json/
main.cpp 13 #define kint32max Json::Value::maxInt macro
22 static const float kfint32max = float(kint32max);
641 val = Json::Value(kint32max);
659 JSONTEST_ASSERT_EQUAL(kint32max, val.asInt());
660 JSONTEST_ASSERT_EQUAL(kint32max, val.asLargestInt());
661 JSONTEST_ASSERT_EQUAL(kint32max, val.asUInt());
662 JSONTEST_ASSERT_EQUAL(kint32max, val.asLargestUInt());
663 JSONTEST_ASSERT_EQUAL(kint32max, val.asDouble());
    [all...]
  /external/google-benchmark/src/
benchmark_register.cc 255 static const int kint32max = std::numeric_limits<int32_t>::max(); local
258 for (int32_t i = 1; i < kint32max / mult; i *= mult) {
  /external/libcxx/utils/google-benchmark/src/
benchmark_register.cc 255 static const int kint32max = std::numeric_limits<int32_t>::max(); local
258 for (int32_t i = 1; i < kint32max / mult; i *= mult) {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
benchmark_register.cc 241 static const int kint32max = std::numeric_limits<int32_t>::max(); local
244 for (int32_t i = 1; i < kint32max / mult; i *= mult) {
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-core/
libprotobuf-cpp-lite.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-core/
libprotobuf-cpp-lite.so 
  /external/tensorflow/tensorflow/core/platform/default/
test_benchmark.cc 77 for (int32 i = 1; i < kint32max / mult; i *= mult) {

Completed in 2755 milliseconds

1 2 3