/external/gemmlowp/internal/ |
D | kernel.h | 130 static const int kDepth = tDepth; member 133 static const int kSize = kWidth * kDepth; 147 static const int kDepth = Cell::kDepth; member 175 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, ""); 176 static const int kDepth = Lhs::Cell::kDepth; member 203 return d + w * CellFormat::kDepth; in OffsetIntoCell() 205 assert(CellFormat::kWidth == CellFormat::kDepth); in OffsetIntoCell()
|
D | kernel_reference.h | 41 Format::Lhs::Cell::kDepth, in Name() 43 Format::Rhs::Cell::kDepth, Format::Rhs::Cell::kWidth, in Name() 55 const int run_depth_cells = static_cast<int>(run_depth / Format::kDepth); in Run() 64 Format::Lhs::Cell::kWidth * Format::kDepth; in Run() 68 Format::Rhs::Cell::kWidth * Format::kDepth; in Run() 73 for (int di = 0; di < Format::kDepth; di++) { in Run()
|
D | kernel_sse.h | 47 std::int32_t run_depth_cells = run_depth / Format::kDepth; in Run() 222 const std::int64_t run_depth_cells = run_depth / Format::kDepth; in Run()
|
D | compute.h | 52 depth = RoundUp<Format::kDepth>(depth); in Compute() 95 assert(depth % Format::kDepth == 0); in ComputeL1()
|
D | pack_neon.h | 48 static const int kCellDepth = CellFormat::kDepth; 149 static const int kCellDepth = CellFormat::kDepth; 274 static const int kCellDepth = CellFormat::kDepth; 339 static const int kCellDepth = CellFormat::kDepth;
|
D | kernel_avx.h | 43 const std::int64_t run_depth_cells = run_depth / Format::kDepth; in Run()
|
D | pack_msa.h | 45 static const int kCellDepth = CellFormat::kDepth; 199 static const int kCellDepth = CellFormat::kDepth; 368 static const int kCellDepth = CellFormat::kDepth;
|
D | pack_avx.h | 47 static const int kCellDepth = CellFormat::kDepth; 201 static const int kCellDepth = CellFormat::kDepth;
|
D | block_params.h | 114 assert(depth % KernelFormat::kDepth == 0); in FindL1BlockSizes()
|
D | pack_sse.h | 47 static const int kCellDepth = CellFormat::kDepth;
|
D | pack.h | 220 static const int kCellDepth = CellFormat::kDepth; 308 static const int kCellDepth = CellFormat::kDepth;
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | deep_graph_test.cc | 25 const int kDepth = 200; in TEST_F() local 32 for (int i = 0; i < kDepth; ++i) { in TEST_F() 35 ComputeAndCompareR0<int32>(&b, /*expected=*/kDepth + 3, in TEST_F()
|
/external/gemmlowp/standalone/ |
D | neon-gemm-kernel-benchmark.cc | 210 static const int kDepth = tDepth; member 213 static const int kSize = kWidth * kDepth; 227 static const int kDepth = Cell::kDepth; member 237 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, ""); 238 static const int kDepth = Lhs::Cell::kDepth; member 264 return d + w * CellFormat::kDepth; in OffsetIntoCell() 266 assert(CellFormat::kWidth == CellFormat::kDepth); in OffsetIntoCell() 4836 const int depth_cells = static_cast<int>(depth / Format::kDepth); in Run() 4845 Format::Lhs::Cell::kWidth * Format::kDepth; in Run() 4849 Format::Rhs::Cell::kWidth * Format::kDepth; in Run() [all …]
|
/external/angle/src/tests/gl_tests/ |
D | ComputeShaderTest.cpp | 1157 constexpr int kWidth = 1, kHeight = 1, kDepth = 2; in TEST_P() local 1161 glTexStorage3D(GL_TEXTURE_2D_ARRAY, 1, GL_R32UI, kWidth, kHeight, kDepth); in TEST_P() 1162 glTexSubImage3D(GL_TEXTURE_2D_ARRAY, 0, 0, 0, 0, kWidth, kHeight, kDepth, GL_RED_INTEGER, in TEST_P() 1167 glTexStorage3D(GL_TEXTURE_2D_ARRAY, 1, GL_R32UI, kWidth, kHeight, kDepth); in TEST_P() 1168 glTexSubImage3D(GL_TEXTURE_2D_ARRAY, 0, 0, 0, 0, kWidth, kHeight, kDepth, GL_RED_INTEGER, in TEST_P() 1224 constexpr int kWidth = 1, kHeight = 1, kDepth = 2; in TEST_P() local 1228 glTexStorage3D(GL_TEXTURE_3D, 1, GL_R32UI, kWidth, kHeight, kDepth); in TEST_P() 1229 glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, kWidth, kHeight, kDepth, GL_RED_INTEGER, in TEST_P() 1234 glTexStorage3D(GL_TEXTURE_3D, 1, GL_R32UI, kWidth, kHeight, kDepth); in TEST_P() 1235 glTexSubImage3D(GL_TEXTURE_3D, 0, 0, 0, 0, kWidth, kHeight, kDepth, GL_RED_INTEGER, in TEST_P() [all …]
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | depth_map.h | 29 enum class DepthItemSemantic { kDepth = 1, kSegmentation = 2 }; enumerator 39 DepthItemSemantic item_semantic = DepthItemSemantic::kDepth;
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_object_avail_unittest.cpp | 206 const uint32_t kDepth = 100; in TEST() local 207 for (uint32_t i = 1; i < kDepth; ++i) { in TEST() 215 holder.AddObject(kDepth, pdfium::MakeRetain<CPDF_Dictionary>(), in TEST() 219 for (uint32_t i = 1; i <= kDepth; ++i) { in TEST()
|
/external/dynamic_depth/internal/dynamic_depth/ |
D | depth_map.cc | 52 case DepthItemSemantic::kDepth: in ItemSemanticToString() 67 return DepthItemSemantic::kDepth; in StringToItemSemantic()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | conv_ops_test.cc | 534 static constexpr int kDepth = 3; member in tensorflow::FusedConv2DOpTest 867 int depth = kDepth, int image_width = kImageWidth, 896 const std::vector<int>& explicit_paddings = {}, int depth = kDepth, in VerifyConv2DWithBiasAndActivation() 929 int depth = kDepth, 963 const std::vector<int>& explicit_paddings = {}, int depth = kDepth, in VerifyConv2DWithBatchNormAndActivation()
|
D | mkl_fused_ops_test.cc | 200 static constexpr int kDepth = 3; member in tensorflow::MklFusedConv2DOpTest 301 int depth = kDepth, int image_width = kImageWidth, in VerifyFusedConv2D() 894 static constexpr int kDepth = 3; member in tensorflow::MklPadWithFusedConv2DOpTest 905 int depth = kDepth, in VerifyPadAndConv2DWithBias() 931 int filter_size, int filter_count, int depth = kDepth, in VerifyPadAndConv2DWithBiasRelu()
|
/external/deqp-deps/amber/src/ |
D | buffer.h | 37 kDepth, enumerator
|
D | pipeline.cc | 270 if (buf->GetBufferType() != BufferType::kDepth) in SetDepthBuffer() 332 std::unique_ptr<Buffer> buf = MakeUnique<Buffer>(BufferType::kDepth); in GenerateDefaultDepthAttachmentBuffer()
|
/external/deqp-deps/amber/src/vkscript/ |
D | parser_test.cc | 152 EXPECT_EQ(BufferType::kDepth, buffers[1]->GetBufferType()); in TEST_F() 240 EXPECT_EQ(BufferType::kDepth, buffers[1]->GetBufferType()); in TEST_F()
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | depthwiseconv_3x3_filter_common.h | 381 template <DepthwiseConvOutputRounding output_rounding, int32 kDepth, 385 template <DepthwiseConvOutputRounding output_rounding, int32 kDepth,
|
/external/skqp/src/gpu/gl/ |
D | GrGLCreateNullInterface.cpp | 170 fAttachments[(int)AttachmentPoint::kDepth].reset(SkRef(attachment)); in setAttachment() 205 kDepth, enumerator
|
/external/v8/src/builtins/ |
D | builtins-definitions.h | 336 TFS(FlattenIntoArray, kTarget, kSource, kSourceLength, kStart, kDepth) \ 337 TFS(FlatMapIntoArray, kTarget, kSource, kSourceLength, kStart, kDepth, \
|