/external/angle/third_party/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 75 static const int64_t int64_list[] = in TEST() local 77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
|
/external/cronet/tot/third_party/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 75 static const int64_t int64_list[] = in TEST() local 77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 75 static const int64_t int64_list[] = in TEST() local 77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
|
/external/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 75 static const int64_t int64_list[] = in TEST() local 77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
|
/external/openscreen/third_party/abseil/src/absl/base/ |
D | bit_cast_test.cc | 75 static const int64_t int64_list[] = in TEST() local 77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
|
/external/cronet/stable/third_party/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 75 static const int64_t int64_list[] = in TEST() local 77 TestMarshall<int64_t>(int64_list, ABSL_ARRAYSIZE(int64_list)); in TEST()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_fast_parsing_test.cc | 244 Int64List* int64_list = in ExampleWithSomeFeatures() local 247 int64_list->add_value(3); in ExampleWithSomeFeatures() 248 int64_list->add_value(270); in ExampleWithSomeFeatures() 249 int64_list->add_value(86942); in ExampleWithSomeFeatures() 388 Int64List* int64_list = in Fuzz() local 392 int64_list->add_value(rng->Rand64()); in Fuzz()
|
D | example_proto_fast_parsing.cc | 284 bool ParseInt64List(Result* int64_list) { in ParseInt64List() argument 285 DCHECK(int64_list != nullptr); in ParseInt64List() 307 int64_list->push_back(static_cast<int64_t>(n)); in ParseInt64List() 316 int64_list->push_back(static_cast<int64_t>(n)); in ParseInt64List() 549 SmallVector<int64_t> int64_list; member 750 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 753 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample() 754 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample() 757 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 832 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() [all …]
|
/external/tensorflow/tensorflow/lite/kernels/parse_example/ |
D | example_proto_fast_parsing.cc | 46 std::copy(src->int64_list.begin(), src->int64_list.end(), in CopySparseBufferToTensor() 161 return buffer.int64_list; in GetListFromBuffer()
|
D | example_proto_fast_parsing.h | 278 bool ParseInt64List(Result* int64_list) { in ParseInt64List() argument 279 DCHECK(int64_list != nullptr); in ParseInt64List() 301 int64_list->push_back(static_cast<int64_t>(n)); in ParseInt64List() 310 int64_list->push_back(static_cast<int64_t>(n)); in ParseInt64List() 380 SmallVector<int64_t> int64_list; member
|
D | parse_example.cc | 252 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 255 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample() 256 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample() 259 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 307 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 311 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 408 std::copy(src->int64_list.begin(), src->int64_list.end(), in CopySparseBufferToTensor()
|
/external/tensorflow/tensorflow/core/example/ |
D | feature_util_test.cc | 58 example.features().feature().at("tag").int64_list().value_size()); in TEST() 59 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0)); in TEST() 67 ASSERT_EQ(1, feature.int64_list().value_size()); in TEST() 68 EXPECT_EQ(42, feature.int64_list().value(0)); in TEST() 459 ASSERT_EQ(1, se.context().feature().at("tag").int64_list().value_size()); in TEST() 460 EXPECT_EQ(42, se.context().feature().at("tag").int64_list().value(0)); in TEST()
|
D | feature.proto | 44 // value { int64_list { 84 Int64List int64_list = 3; field
|
D | example.proto | 223 // feature: { int64_list: { value: [ 5 ] } } } 280 // value: { feature: { int64_list: { value: [ 4 ] } } 281 // feature: { int64_list: { value: [ 5 ] } } 282 // feature: { int64_list: { value: [ 2 ] } } }
|
D | feature_util.cc | 74 return feature.int64_list().value(); in GetFeatureValues()
|
/external/cronet/tot/net/android/ |
D | network_change_notifier_delegate_android.cc | 78 std::vector<int64_t> int64_list; in JavaLongArrayToNetworkMap() local 79 base::android::JavaLongArrayToInt64Vector(env, long_array, &int64_list); in JavaLongArrayToNetworkMap() 81 for (auto i = int64_list.begin(); i != int64_list.end(); ++i) { in JavaLongArrayToNetworkMap() 83 CHECK(++i != int64_list.end()); in JavaLongArrayToNetworkMap()
|
/external/cronet/stable/net/android/ |
D | network_change_notifier_delegate_android.cc | 78 std::vector<int64_t> int64_list; in JavaLongArrayToNetworkMap() local 79 base::android::JavaLongArrayToInt64Vector(env, long_array, &int64_list); in JavaLongArrayToNetworkMap() 81 for (auto i = int64_list.begin(); i != int64_list.end(); ++i) { in JavaLongArrayToNetworkMap() 83 CHECK(++i != int64_list.end()); in JavaLongArrayToNetworkMap()
|
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/ |
D | decode_json_example.dict | 5 "int64_list"
|
/external/federated-compute/fcp/client/ |
D | test_helpers.cc | 166 return example.features().feature().at(key).int64_list().value().at(0); in ExtractSingleInt64() 171 return example.features().feature().at(key).int64_list().value(); in ExtractRepeatedInt64()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.train.-feature.pbtxt | 22 name: "int64_list"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.train.-feature.pbtxt | 22 name: "int64_list"
|
/external/federated-compute/fcp/client/opstats/ |
D | opstats_example_store.cc | 80 auto* int64_list = feature.mutable_int64_list(); in CreateFeatureFromIntVector() local 82 int64_list->add_value(value); in CreateFeatureFromIntVector()
|
/external/tensorflow/tensorflow/lite/testing/op_tests/ |
D | parse_example.py | 36 int64_list=tf.train.Int64List(value=list(data)))
|
/external/tensorflow/tensorflow/lite/experimental/mlir/testing/op_tests/ |
D | parse_example.py | 40 int64_list=tf.train.Int64List(value=list(data)))
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | tf_record_test_base.py | 77 int64_list=feature_pb2.Int64List(value=[f])), 80 int64_list=feature_pb2.Int64List(value=[r])),
|