/external/webrtc/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/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/rust/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/libtextclassifier/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/llvm-project/llvm/test/Transforms/Inline/ML/ |
D | bounds-checks-rewards.ll | 51 ; NOBOUNDS-NEXT: feature: { int64_list: { value: [6] } } 52 ; RELAXED-BOUNDS-NEXT: feature: { int64_list: { value: [6] } } 53 ; NOBOUNDS-NEXT: feature: { int64_list: { value: [-11] } } 54 ; NOBOUNDS-NEXT: feature: { int64_list: { value: [4] } } 55 ; BOUNDS-NEXT: feature: { int64_list: { value: [2147483647] } }
|
D | development-training-log.ll | 47 ; EXTRA-OUTPUTS-NEXT: feature: { int64_list: { value: [1] } } 49 ; CHECK-NEXT: feature: { int64_list: { value: [1] } } 51 ; CHECK-NEXT: feature: { int64_list: { value: [0] } }
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_fast_parsing_test.cc | 240 Int64List* int64_list = in ExampleWithSomeFeatures() local 243 int64_list->add_value(3); in ExampleWithSomeFeatures() 244 int64_list->add_value(270); in ExampleWithSomeFeatures() 245 int64_list->add_value(86942); in ExampleWithSomeFeatures() 384 Int64List* int64_list = in Fuzz() local 388 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>(n)); in ParseInt64List() 316 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List() 534 SmallVector<int64> int64_list; member 735 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 738 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample() 739 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample() 742 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 817 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() [all …]
|
D | example_proto_helper.cc | 70 const Int64List& values = feature.int64_list(); in FeatureDenseCopy() 120 const Int64List& values = feature.int64_list(); in FeatureSparseCopy()
|
/external/tensorflow/tensorflow/lite/kernels/parse_example/ |
D | example_proto_fast_parsing.cc | 43 std::copy(src->int64_list.begin(), src->int64_list.end(), in CopySparseBufferToTensor() 157 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>(n)); in ParseInt64List() 310 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List() 380 SmallVector<int64> int64_list; member
|
D | parse_example.cc | 250 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 253 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample() 254 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample() 257 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 305 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 309 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 406 std::copy(src->int64_list.begin(), src->int64_list.end(), in CopySparseBufferToTensor()
|
/external/tensorflow/tensorflow/core/example/ |
D | feature_util_test.cc | 56 example.features().feature().at("tag").int64_list().value_size()); in TEST() 57 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0)); in TEST() 65 ASSERT_EQ(1, feature.int64_list().value_size()); in TEST() 66 EXPECT_EQ(42, feature.int64_list().value(0)); in TEST() 359 ASSERT_EQ(1, se.context().feature().at("tag").int64_list().value_size()); in TEST() 360 EXPECT_EQ(42, se.context().feature().at("tag").int64_list().value(0)); in TEST()
|
D | feature.proto | 44 // value { int64_list { 83 Int64List int64_list = 3; field
|
D | example.proto | 224 // feature: { int64_list: { value: [ 5 ] } } } 281 // value: { feature: { int64_list: { value: [ 4 ] } } 282 // feature: { int64_list: { value: [ 5 ] } } 283 // feature: { int64_list: { value: [ 2 ] } } }
|
D | feature_util.cc | 69 return feature.int64_list().value(); in GetFeatureValues()
|
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/ |
D | decode_json_example.dict | 5 "int64_list"
|
/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/tensorflow/tensorflow/python/keras/feature_column/ |
D | sequence_feature_column_integration_test.py | 48 example.context.feature['int_ctx'].int64_list.value.extend([5]) 52 feat.int64_list.value.extend([val] * val)
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | reader_dataset_ops_test_base.py | 110 int64_list=feature_pb2.Int64List(value=[f])), 113 int64_list=feature_pb2.Int64List(value=[r])),
|
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/ |
D | map_vectorization_benchmark.py | 62 return feature_pb2.Feature(int64_list=feature_pb2.Int64List(value=values))
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | meta_graph.proto | 210 Int64List int64_list = 3; field
|
/external/tensorflow/tensorflow/python/tools/ |
D | saved_model_cli.py | 599 example.features.feature[feature_name].int64_list.value.extend(
|