Home
last modified time | relevance | path

Searched refs:in_n (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
Dtensor.cc483 const int64 in_n = ProtoHelper<T>::NumElements(in); in FromProtoField() local
484 if (in_n <= 0) { in FromProtoField()
488 if (n <= in_n) { in FromProtoField()
491 std::copy_n(begin, in_n, data); in FromProtoField()
492 const T& last = *(data + in_n - 1); in FromProtoField()
493 std::fill_n(data + in_n, n - in_n, last); in FromProtoField()
510 const int64 in_n = ProtoHelper<Variant>::NumElements(in); in FromProtoField() local
511 if (in_n <= 0) { in FromProtoField()
514 for (int64 i = 0; i < in_n; ++i) { in FromProtoField()
525 for (int64 i = in_n; i < n; ++i) { in FromProtoField()
[all …]
/external/webrtc/webrtc/base/
Djson_unittest.cc24 static Json::Value in_n(12); variable
45 EXPECT_TRUE(GetStringFromJson(in_n, &out)); in TEST()
62 EXPECT_TRUE(GetIntFromJson(in_n, &out)); in TEST()
82 EXPECT_TRUE(GetUIntFromJson(in_n, &out)); in TEST()
104 EXPECT_TRUE(GetBoolFromJson(in_n, &out)); in TEST()
131 EXPECT_TRUE(GetDoubleFromJson(in_n, &out)); in TEST()
/external/pdfium/third_party/lcms/src/
Dcmsalpha.c263 int in_n = FormatterPos(in); in _cmsGetFormatterAlpha() local
266 if (in_n < 0 || out_n < 0 || in_n > 4 || out_n > 4) { in _cmsGetFormatterAlpha()
272 return FormattersAlpha[in_n][out_n]; in _cmsGetFormatterAlpha()
/external/eigen/unsupported/test/
Dcxx11_tensor_cuda.cu787 Tensor<Scalar, 1> in_n(7); in test_cuda_polygamma() local
792 in_n(0) = Scalar(1); in test_cuda_polygamma()
793 in_n(1) = Scalar(1); in test_cuda_polygamma()
794 in_n(2) = Scalar(1); in test_cuda_polygamma()
795 in_n(3) = Scalar(17); in test_cuda_polygamma()
796 in_n(4) = Scalar(31); in test_cuda_polygamma()
797 in_n(5) = Scalar(28); in test_cuda_polygamma()
798 in_n(6) = Scalar(8); in test_cuda_polygamma()
826 cudaMemcpy(d_in_n, in_n.data(), bytes, cudaMemcpyHostToDevice); in test_cuda_polygamma()