Home
last modified time | relevance | path

Searched refs:kuint32max (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dintegral_types_test.cc43 EXPECT_EQ(0, static_cast<uint32>(kuint32max + 1)); in TEST()
Dtypes.h47 static const uint32 kuint32max = ((uint32)0xFFFFFFFF); variable
/external/dynamic_depth/internal/base/
Dintegral_types.h96 static const uint32 kuint32max = ((uint32)0xFFFFFFFF); variable
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Drandom_ops.cc124 std::ceil(Exponent * std::log(num_elements) / std::log(kuint32max))); in Compile()
133 xla::XlaOp max_value = xla::ConstantR0(builder, kuint32max); in Compile()
/external/tensorflow/tensorflow/core/lib/wav/
Dwav_io.cc150 if (sample_rate == 0 || sample_rate > kuint32max) { in EncodeAudioAsS16LEWav()
170 if (file_size > kuint32max) { in EncodeAudioAsS16LEWav()
Dwav_io_test.cc44 const size_t kuint32max_plus_one = static_cast<size_t>(kuint32max) + 1; in TEST()
/external/jsoncpp/src/test_lib_json/
Dmain.cpp15 #define kuint32max Json::Value::maxUInt macro
23 static const float kfuint32max = float(kuint32max);
693 val = Json::Value(kuint32max); in JSONTEST_FIXTURE()
711 JSONTEST_ASSERT_EQUAL(kuint32max, val.asLargestInt()); in JSONTEST_FIXTURE()
713 JSONTEST_ASSERT_EQUAL(kuint32max, val.asUInt()); in JSONTEST_FIXTURE()
714 JSONTEST_ASSERT_EQUAL(kuint32max, val.asLargestUInt()); in JSONTEST_FIXTURE()
715 JSONTEST_ASSERT_EQUAL(kuint32max, val.asDouble()); in JSONTEST_FIXTURE()
1190 val = Json::Value(kuint32max + 0.5); in JSONTEST_FIXTURE()
/external/icu/icu4c/source/common/
Ddictbe.cpp1043 static const uint32_t kuint32max = 0xFFFFFFFF; variable
1245 bestSnlp.addElement(kuint32max, status); in divideUpDictionaryRange()
1273 if ((uint32_t)bestSnlp.elementAti(i) == kuint32max) { in divideUpDictionaryRange()
1340 if ((uint32_t)bestSnlp.elementAti(numCodePts) == kuint32max) { in divideUpDictionaryRange()
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py186 kuint32max = 2**32 - 1
224 self.assertEqual(kuint32max, message_options.Extensions[
232 self.assertEqual(kuint32max, message_options.Extensions[
/external/protobuf/src/google/protobuf/stubs/
Dport.h143 static const uint32 kuint32max = 0xFFFFFFFFu; variable
Dcommon_unittest.cc76 EXPECT_EQ(0, kuint32max + 1); in TEST()
Dstrutil.cc659 return kuint32max; in strtou32_adaptor()
660 } else if (errno == 0 && result > kuint32max) { in strtou32_adaptor()
662 return kuint32max; in strtou32_adaptor()
/external/tensorflow/tensorflow/core/lib/math/
Dmath_util_test.cc192 TestCeilOfRatioUnsigned<uint32>(kuint32max); in TEST()
/external/tensorflow/tensorflow/core/lib/strings/
Dnumbers.cc322 if (result > kuint32max) { in safe_strtou32()
/external/tensorflow/tensorflow/core/common_runtime/
Dexecutor.cc270 return ((offset == kuint32max) in node()
446 CHECK(node_offsets_[id] == kuint32max); // Initial value in constructor in InitializeNode()
458 CHECK_LE(static_cast<int64>(ptr - space_), kuint32max); in InitializeNode()
564 node_offsets_[i] = kuint32max; in Initialize()
/external/protobuf/src/google/protobuf/io/
Dcoded_stream.cc910 GOOGLE_DCHECK_LE(str.size(), kuint32max); in WriteStringWithSizeToArray()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc1133 max_value = kuint32max; in ParseDefaultAssignment()
/external/protobuf/src/google/protobuf/
Dtext_format.cc643 DO(ConsumeUnsignedInteger(&value, kuint32max)); in ConsumeFieldValue()
Ddescriptor_unittest.cc2759 EXPECT_EQ(kuint32max, options->GetExtension(protobuf_unittest::uint32_opt)); in TEST()
2763 EXPECT_EQ(kuint32max, options->GetExtension(protobuf_unittest::fixed32_opt)); in TEST()
Ddescriptor.cc5908 if (uninterpreted_option_->positive_int_value() > kuint32max) { in SetOptionValue()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2842 kuint32max_py = PyLong_FromLongLong(kuint32max); in CheckAndGetInteger()