/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageSamplingInstance.cpp | 985 …reType* createSkeletonClone (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0); 1004 …tonClone<tcu::Texture1DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() argument 1006 return new tcu::Texture1D(format, level0.getWidth()); in createSkeletonClone() 1010 …one<tcu::Texture1DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() argument 1012 return new tcu::Texture1DArray(format, level0.getWidth(), level0.getHeight()); in createSkeletonClone() 1016 …tonClone<tcu::Texture2DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() argument 1018 return new tcu::Texture2D(format, level0.getWidth(), level0.getHeight()); in createSkeletonClone() 1022 …one<tcu::Texture2DArrayView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() argument 1024 return new tcu::Texture2DArray(format, level0.getWidth(), level0.getHeight(), level0.getDepth()); in createSkeletonClone() 1028 …tonClone<tcu::Texture3DView> (tcu::TextureFormat format, const tcu::ConstPixelBufferAccess& level0) in createSkeletonClone() argument [all …]
|
/external/deqp/framework/common/ |
D | tcuTexLookupVerifier.cpp | 869 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0, in isNearestMipmapLinearSampleResultValid() argument 878 const int w0 = level0.getWidth(); in isNearestMipmapLinearSampleResultValid() 894 const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), coordY, 0); in isNearestMipmapLinearSampleResultValid() 905 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0, in isNearestMipmapLinearSampleResultValid() argument 914 const int w0 = level0.getWidth(); in isNearestMipmapLinearSampleResultValid() 916 const int h0 = level0.getHeight(); in isNearestMipmapLinearSampleResultValid() 942 …const Vec4 c0 = lookup<float>(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT, j0… in isNearestMipmapLinearSampleResultValid() 955 static bool isNearestMipmapLinearSampleResultValid (const ConstPixelBufferAccess& level0, in isNearestMipmapLinearSampleResultValid() argument 963 const int w0 = level0.getWidth(); in isNearestMipmapLinearSampleResultValid() 965 const int h0 = level0.getHeight(); in isNearestMipmapLinearSampleResultValid() [all …]
|
D | tcuTexCompareVerifier.cpp | 642 static bool isNearestMipmapLinearCompareResultValid (const ConstPixelBufferAccess& level0, in isNearestMipmapLinearCompareResultValid() argument 652 const bool isFixedPointDepth = isFixedPointDepthTextureFormat(level0.getFormat()); in isNearestMipmapLinearCompareResultValid() 654 const int w0 = level0.getWidth(); in isNearestMipmapLinearCompareResultValid() 656 const int h0 = level0.getHeight(); in isNearestMipmapLinearCompareResultValid() 678 …const float depth0 = lookupDepth(level0, sampler, wrap(sampler.wrapS, i0, w0), wrap(sampler.wrapT,… in isNearestMipmapLinearCompareResultValid() 696 static bool isLinearMipmapLinearCompareResultValid (const ConstPixelBufferAccess& level0, in isLinearMipmapLinearCompareResultValid() argument 706 const bool isFixedPointDepth = isFixedPointDepthTextureFormat(level0.getFormat()); in isLinearMipmapLinearCompareResultValid() 711 const int w0 = level0.getWidth(); in isLinearMipmapLinearCompareResultValid() 713 const int h0 = level0.getHeight(); in isLinearMipmapLinearCompareResultValid() 747 depths0[0] = lookupDepth(level0, sampler, x0, y0, coordZ); in isLinearMipmapLinearCompareResultValid() [all …]
|
D | tcuTexture.cpp | 2201 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray1DOffset() local 2202 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray1DOffset() 2205 tcu::Vec4 t0 = levels[level0].sample1DOffset(sampler, levelFilter, s, offset); in sampleLevelArray1DOffset() 2241 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray2DOffset() local 2242 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray2DOffset() 2245 tcu::Vec4 t0 = levels[level0].sample2DOffset(sampler, levelFilter, s, t, offset); in sampleLevelArray2DOffset() 2281 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray3DOffset() local 2282 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray3DOffset() 2285 tcu::Vec4 t0 = levels[level0].sample3DOffset(sampler, levelFilter, s, t, r, offset); in sampleLevelArray3DOffset() 2321 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray1DCompare() local [all …]
|
/external/webp/src/enc/ |
D | filter_enc.c | 161 const int level0 = enc->dqm_[s].fstrength_; in VP8StoreFilterStats() local 182 const int level = level0 + d; in VP8StoreFilterStats()
|
D | quant_enc.c | 299 const int level0 = 5 * enc->config_->filter_strength; in SetupFilterStrength() local 307 const int f = base_strength * level0 / (256 + m->beta_); in SetupFilterStrength() 646 int level0 = QUANTDIV(coeff0, iQ, B); in TrellisQuantizeBlock() local 649 if (level0 > MAX_LEVEL) level0 = MAX_LEVEL; in TrellisQuantizeBlock() 660 int level = level0 + m; in TrellisQuantizeBlock()
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | buffer_assignment_test.cc | 731 const std::vector<const HloInstruction*> level0 = GetInstructions(sub); in TEST_F() local 732 int64 size0 = ValidateBuffers(level0, *buffers); in TEST_F() 734 << " for " << level0.size() << " instructions; " in TEST_F() 757 const std::vector<const HloInstruction*> level0 = GetInstructions(map); in TEST_F() local 758 EXPECT_EQ(2, level0.size()) << "Invalid main kernel size"; in TEST_F() 764 int64 size0 = ValidateBuffers(level0, *buffers); in TEST_F() 770 EXPECT_TRUE(BuffersDistinct(level0, level1, *buffers)) in TEST_F() 789 << " for " << level0.size() + level1.size() << " instructions; " in TEST_F() 868 const std::vector<const HloInstruction*> level0 = GetInstructions(while_op); in TEST_F() local 869 EXPECT_EQ(4, level0.size()) << "Invalid while kernel size"; in TEST_F() [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_tex_sample.c | 1952 const int level0 = psview->u.tex.first_level + (int)lod[j]; in mip_filter_linear() local 1963 else if (level0 >= (int) psview->u.tex.last_level) { in mip_filter_linear() 1972 args.level = level0; in mip_filter_linear() 1974 args.level = level0+1; in mip_filter_linear() 2204 const unsigned level0 = level > 0 ? level : 0; in img_filter_2d_ewa() local 2205 const float scaling = 1.0f / (1 << level0); in img_filter_2d_ewa() 2206 const int width = u_minify(texture->width0, level0); in img_filter_2d_ewa() 2207 const int height = u_minify(texture->height0, level0); in img_filter_2d_ewa() 2408 int level0; in mip_filter_linear_aniso() local 2473 level0 = psview->u.tex.first_level + (int)lambda; in mip_filter_linear_aniso() [all …]
|
/external/skia/tools/fiddle/ |
D | fiddle_main.cpp | 190 GrMipLevel level0 = { data.get(), backingDesc.fWidth*sizeof(uint32_t) }; in setup_backend_objects() local 193 &level0, 1); in setup_backend_objects()
|
/external/skqp/tools/fiddle/ |
D | fiddle_main.cpp | 190 GrMipLevel level0 = { data.get(), backingDesc.fWidth*sizeof(uint32_t) }; in setup_backend_objects() local 193 &level0, 1); in setup_backend_objects()
|
/external/swiftshader/third_party/subzero/bloat/ |
D | webtreemap.css | 57 .webtreemap-level0 {
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrReferenceContext.cpp | 4750 const tcu::ConstPixelBufferAccess& level0 = getLevel(baseLevel); in isComplete() local 4755 const TextureFormat& format = level0.getFormat(); in isComplete() 4756 const int w = level0.getWidth(); in isComplete() 4847 const tcu::ConstPixelBufferAccess& level0 = getLevel(baseLevel); in isComplete() local 4852 const TextureFormat& format = level0.getFormat(); in isComplete() 4853 const int w = level0.getWidth(); in isComplete() 4854 const int h = level0.getHeight(); in isComplete() 5079 const tcu::ConstPixelBufferAccess& level0 = getLevel(baseLevel); in isComplete() local 5084 const TextureFormat& format = level0.getFormat(); in isComplete() 5085 const int w = level0.getWidth(); in isComplete() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderDerivateTests.cpp | 1335 const tcu::PixelBufferAccess level0 = m_texture->getRefTexture().getLevel(0); in init() local 1336 for (int y = 0; y < level0.getHeight(); y++) in init() 1338 for (int x = 0; x < level0.getWidth(); x++) in init() 1340 const float xf = (float(x)+0.5f) / float(level0.getWidth()); in init() 1341 const float yf = (float(y)+0.5f) / float(level0.getHeight()); in init() 1344 level0.setPixel(m_texValueMin + (m_texValueMax - m_texValueMin)*s, x, y); in init()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderDerivateTests.cpp | 1256 const tcu::PixelBufferAccess level0 = texture->getLevel(0); in TextureDerivateCaseInstance() local 1257 for (int y = 0; y < level0.getHeight(); y++) in TextureDerivateCaseInstance() 1259 for (int x = 0; x < level0.getWidth(); x++) in TextureDerivateCaseInstance() 1261 const float xf = (float(x)+0.5f) / float(level0.getWidth()); in TextureDerivateCaseInstance() 1262 const float yf = (float(y)+0.5f) / float(level0.getHeight()); in TextureDerivateCaseInstance() 1265 …level0.setPixel(m_textureValues.texValueMin + (m_textureValues.texValueMax - m_textureValues.texVa… in TextureDerivateCaseInstance()
|
/external/icu/icu4c/source/test/cintltst/ |
D | cbiditst.c | 4940 UBiDiLevel level0 = ubidi_getLevelAt(bidi, 0); in TestExplicitLevel0() local 4942 if (level0 != 1 || level1 != 1) { in TestExplicitLevel0() 4943 log_err("resolved levels != 1: { %d, %d }\n", level0, level1); in TestExplicitLevel0()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | SupplementalDataInfo.java | 1215 String level0 = parts.getElement(0); 1237 if (level0.equals("ldmlBCP47")) {
|