/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
H A D | fd5_program.c | 164 enum { VS = 0, FS = 1, HS = 2, DS = 3, GS = 4, MAX_STAGES }; enumerator 174 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ in setup_stages() 225 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; in setup_stages() 308 OUT_RING(ring, A5XX_HLSQ_DS_CONFIG_CONSTOBJECTOFFSET(s[DS].constoff) | in fd5_program_emit() 309 A5XX_HLSQ_DS_CONFIG_SHADEROBJOFFSET(s[DS].instroff) | in fd5_program_emit() 310 COND(s[DS].v, A5XX_HLSQ_DS_CONFIG_ENABLED)); in fd5_program_emit() 328 OUT_RING(ring, A5XX_HLSQ_DS_CNTL_INSTRLEN(s[DS].instrlen) | in fd5_program_emit() 329 COND(s[DS].v && s[DS].v->has_ssbo, in fd5_program_emit() 345 OUT_RING(ring, A5XX_SP_DS_CONFIG_CONSTOBJECTOFFSET(s[DS] in fd5_program_emit() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFUnitIndex.cpp | 107 StringRef DWARFUnitIndex::getColumnHeader(DWARFSectionKind DS) { in getColumnHeader() argument 108 #define CASE(DS) \ in getColumnHeader() 109 case DW_SECT_##DS: \ in getColumnHeader() 110 return #DS; in getColumnHeader() 111 switch (DS) { in getColumnHeader()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
H A D | fd4_program.c | 91 enum { VS = 0, FS = 1, HS = 2, DS = 3, GS = 4, MAX_STAGES }; enumerator 101 s[HS].v = s[DS].v = s[GS].v = NULL; /* for now */ in setup_stages() 149 s[HS].instroff = s[DS].instroff = s[GS].instroff = s[FS].instroff; in setup_stages() 150 s[HS].constoff = s[DS].constoff = s[GS].constoff = s[FS].constoff; in setup_stages() 271 A4XX_HLSQ_DS_CONTROL_REG_CONSTLENGTH(s[DS].constlen) | in fd4_program_emit() 272 A4XX_HLSQ_DS_CONTROL_REG_CONSTOBJECTOFFSET(s[DS].constoff) | in fd4_program_emit() 273 COND(s[DS].v && s[DS].v->has_ssbo, A4XX_HLSQ_DS_CONTROL_REG_SSBO_ENABLE) | in fd4_program_emit() 274 A4XX_HLSQ_DS_CONTROL_REG_INSTRLENGTH(s[DS].instrlen) | in fd4_program_emit() 275 A4XX_HLSQ_DS_CONTROL_REG_SHADEROBJOFFSET(s[DS] in fd4_program_emit() [all...] |
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluTextureUtil.cpp | 85 case TextureFormat::DS: format = GL_DEPTH_STENCIL; break; in getTransferFormat() 220 case FMT_CASE(DS, FLOAT_UNSIGNED_INT_24_8_REV): return GL_DEPTH32F_STENCIL8; in getInternalFormat() 221 case FMT_CASE(DS, UNSIGNED_INT_24_8): return GL_DEPTH24_STENCIL8; in getInternalFormat() 459 case GL_DEPTH_STENCIL: return TextureFormat(TextureFormat::DS, mapGLChannelType(dataType, true)); 549 case GL_DEPTH32F_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::FLOAT_UNSIGNED_INT_24_8_REV); 550 case GL_DEPTH24_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::UNSIGNED_INT_24_8); 865 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) 901 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) 937 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) 973 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) [all...] |
H A D | gluFboRenderContext.cpp | 40 if (format.order == tcu::TextureFormat::DS) in getNumDepthBits() 53 if (format.order == tcu::TextureFormat::DS) in getNumStencilBits()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonBlockRanges.cpp | 456 IndexType DS = IndexMap.getNextIndex(AE); in computeDeadMap() 459 if (DS < DE) in computeDeadMap() 460 DeadMap[R].add(DS, DE, false, false); in computeDeadMap() 466 IndexType DS = IndexMap.getNextIndex(ZE); in computeDeadMap() 467 if (DS < IndexType::Exit) in computeDeadMap() 468 DeadMap[R].add(DS, IndexType::Exit, false, false); in computeDeadMap()
|
H A D | RDFGraph.h | 679 Iterator &up() { Pos = DS.nextUp(Pos); return *this; } in up() 680 Iterator &down() { Pos = DS.nextDown(Pos); return *this; } in down() 684 return DS.Stack[Pos-1]; in operator *() 688 return &DS.Stack[Pos-1]; in operator ->() 700 const DefStack &DS; member 856 NodeAddr<T> TA, DefStack &DS);
|
H A D | RDFGraph.cpp | 665 bool Top) : DS(S) { in Iterator() 672 Pos = DS.Stack.size(); in Iterator() 673 while (Pos > 0 && DS.isDelimiter(DS.Stack[Pos-1])) in Iterator() 1567 DefStack &DS) { in linkRefUp() 1568 if (DS.empty()) in linkRefUp() 1576 for (auto I = DS.top(), E = DS.bottom(); I != E; I.down()) { in linkRefUp() 1631 DefStack &DS = F->second; in linkStmtRefs() local 1633 linkRefUp<UseNode*>(SA, RA, DS); in linkStmtRefs() 1566 linkRefUp(NodeAddr<InstrNode*> IA, NodeAddr<T> TA, DefStack &DS) linkRefUp() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ProfileSummaryInfo.cpp | 70 static const ProfileSummaryEntry &getEntryForPercentile(SummaryEntryVector &DS, in getEntryForPercentile() argument 72 auto It = partition_point(DS, [=](const ProfileSummaryEntry &Entry) { in getEntryForPercentile() 77 if (It == DS.end()) in getEntryForPercentile()
|
/third_party/musl/arch/i386/bits/ |
H A D | reg.h | 10 #define DS 7 macro
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
H A D | vktTextureFilteringTests.cpp | 236 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DFilteringTestInstance() 263 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DFilteringTestInstance() 277 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DFilteringTestInstance() 339 if (texFmt.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in iterate() 452 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in TextureCubeFilteringTestInstance() 484 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in TextureCubeFilteringTestInstance() 503 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in TextureCubeFilteringTestInstance() 571 if (texFmt.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in iterate() 700 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DArrayFilteringTestInstance() 735 if (texFormat.order == tcu::TextureFormat::DS in Texture2DArrayFilteringTestInstance() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/ |
H A D | vktTextureFilteringTests.cpp | 235 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DFilteringTestInstance() 262 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DFilteringTestInstance() 276 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DFilteringTestInstance() 338 if (texFmt.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in iterate() 451 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in TextureCubeFilteringTestInstance() 483 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in TextureCubeFilteringTestInstance() 502 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in TextureCubeFilteringTestInstance() 570 if (texFmt.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in iterate() 699 if (texFormat.order == tcu::TextureFormat::DS && m_testParameters.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT) in Texture2DArrayFilteringTestInstance() 734 if (texFormat.order == tcu::TextureFormat::DS in Texture2DArrayFilteringTestInstance() [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuTextureUtil.cpp | 138 case TextureFormat::DS: 153 case TextureFormat::DS: 227 if (format.order == TextureFormat::DS) 441 else if (format.order == TextureFormat::D || format.order == TextureFormat::DS) 823 DE_ASSERT(access.getFormat().order == TextureFormat::DS || access.getFormat().order == TextureFormat::D); 830 DE_ASSERT(access.getFormat().order == TextureFormat::DS || access.getFormat().order == TextureFormat::S); 956 const bool hasDepth = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::D; 957 const bool hasStencil = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::S; 1048 const bool hasDepth = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::D; 1049 const bool hasStencil = access.getFormat().order == tcu::TextureFormat::DS || acces [all...] |
H A D | tcuTestLog.cpp | 77 if (m_access.getFormat().order != tcu::TextureFormat::DS) in LogImage() 106 DE_ASSERT(access.getFormat().order != tcu::TextureFormat::DS); in LogImage() 117 // Cannot log a DS format in LogImage() 126 if (m_access.getFormat().order != tcu::TextureFormat::DS) in write()
|
H A D | tcuTexture.cpp | 688 return format.order == TextureFormat::DS; in isValid() 692 return format.order == TextureFormat::D || format.order == TextureFormat::DS; in isValid() 717 return format.order == TextureFormat::DS; in isValid() 759 case TextureFormat::DS: return 2; in getNumUsedChannels() 879 static const TextureSwizzle DS = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_ZERO, TextureSwizzle::CHANNEL_ONE }}; in getChannelReadSwizzle() local 904 case TextureFormat::DS: return DS; in getChannelReadSwizzle() 958 case TextureFormat::DS: in getChannelWriteSwizzle() 1116 DE_ASSERT(m_format.order != TextureFormat::DS); // combined formats cannot be accessed directly in getPixel() 1285 DE_ASSERT(m_format.order != TextureFormat::DS); // combine in getPixelInt() [all...] |
/third_party/musl/arch/x32/bits/ |
H A D | reg.h | 26 #define DS 23 macro
|
/third_party/musl/arch/x86_64/bits/ |
H A D | reg.h | 26 #define DS 23 macro
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fFboInvalidateTests.cpp | 465 bool depth = depthStencilFmt.order == tcu::TextureFormat::D || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 466 bool stencil = depthStencilFmt.order == tcu::TextureFormat::S || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 578 bool depth = depthStencilFmt.order == tcu::TextureFormat::D || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 579 bool stencil = depthStencilFmt.order == tcu::TextureFormat::S || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 712 bool depth = depthStencilFmt.order == tcu::TextureFormat::D || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 713 bool stencil = depthStencilFmt.order == tcu::TextureFormat::S || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 832 bool depth = depthStencilFmt.order == tcu::TextureFormat::D || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 833 bool stencil = depthStencilFmt.order == tcu::TextureFormat::S || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 934 bool depth = depthStencilFmt.order == tcu::TextureFormat::D || depthStencilFmt.order == tcu::TextureFormat::DS; in render() 935 bool stencil = depthStencilFmt.order == tcu::TextureFormat::S || depthStencilFmt.order == tcu::TextureFormat::DS; in render() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Solaris/sys/ |
H A D | regset.h | 19 #undef DS macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | PDBFile.cpp | 192 auto DS = MappedBlockStream::createDirectoryStream(ContainerLayout, *Buffer, in parseStreamData() local 194 BinaryStreamReader Reader(*DS); in parseStreamData() 229 DirectoryStream = std::move(DS); in parseStreamData()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFUnitIndex.h | 78 static StringRef getColumnHeader(DWARFSectionKind DS);
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_opt_value_numbering.cpp | 102 case Format::DS: return hash_murmur_32<DS_instruction>(instr); in operator ()() 244 case Format::DS: { in operator ()() 343 case Format::DS: in can_eliminate()
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | x86_64.rs | 144 pub const DS: ::c_int = 23; consts
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_pipeline_state.cpp | 248 pso_desc.DS.BytecodeLength = shader->bytecode_length; in create_gfx_pipeline_state() 249 pso_desc.DS.pShaderBytecode = shader->bytecode; in create_gfx_pipeline_state()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineReferenceRenderer.hpp | 194 if (!m_disableVulkanDepthRange && (m_depthStencilFormat.order == tcu::TextureFormat::D || m_depthStencilFormat.order == tcu::TextureFormat::DS)) in shadeFragments() 246 if (m_depthStencilFormat.order == tcu::TextureFormat::D || m_depthStencilFormat.order == tcu::TextureFormat::DS) in shadeFragments()
|