/external/curl/lib/ |
D | version_win32.c | 62 const WORD targetVersion = (WORD)_WIN32_WINNT; in curlx_verify_windows_version() local 66 matched = targetVersion < fullVersion; in curlx_verify_windows_version() 70 matched = targetVersion <= fullVersion; in curlx_verify_windows_version() 74 matched = targetVersion == fullVersion; in curlx_verify_windows_version() 78 matched = targetVersion >= fullVersion; in curlx_verify_windows_version() 82 matched = targetVersion > fullVersion; in curlx_verify_windows_version()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkSpirVProgram.hpp | 43 SpirvVersion targetVersion; member 48 , targetVersion (targetVersion_) in SpirVAsmBuildOptions() 54 , targetVersion (SPIRV_VERSION_1_0) in SpirVAsmBuildOptions()
|
D | vkShaderProgram.hpp | 52 SpirvVersion targetVersion; member 58 , targetVersion (targetVersion_) in ShaderBuildOptions() 65 , targetVersion (SPIRV_VERSION_1_0) in ShaderBuildOptions()
|
D | vkPrograms.cpp | 409 shaderstring += getSpirvVersionName(buildOptions.targetVersion); in getBuildOptions() 425 const SpirvVersion spirvVersion = program.buildOptions.targetVersion; in buildProgram() 510 const SpirvVersion spirvVersion = program.buildOptions.targetVersion; in buildProgram() 595 const SpirvVersion spirvVersion = program.buildOptions.targetVersion; in assembleProgram()
|
D | vkShaderToSpirV.cpp | 261 if (buildOptions.targetVersion >= SPIRV_VERSION_LAST) in compileShaderToSpirV() 283 switch ( buildOptions.targetVersion ) in compileShaderToSpirV()
|
/external/deqp/framework/randomshaders/ |
D | rsgVariable.cpp | 45 Version targetVersion = state.getProgramParameters().version; in tokenizeDeclaration() local 65 if (targetVersion >= VERSION_300) in tokenizeDeclaration() 91 if (targetVersion >= VERSION_300) in tokenizeDeclaration()
|
/external/deqp/modules/glshared/ |
D | glsShaderConstExprTests.cpp | 160 spec.targetVersion = version; in createTests() 181 spec.targetVersion = version; in createTests() 214 spec.targetVersion = version; in createTests() 235 spec.targetVersion = version; in createTests()
|
D | glsShaderLibraryCase.cpp | 143 const bool usesInout = glslVersionUsesInOutQualifiers(spec.targetVersion); in genVertexShader() 147 res << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genVertexShader() 234 const bool usesInout = glslVersionUsesInOutQualifiers(spec.targetVersion); in genFragmentShader() 237 const char* const prec = supportsFragmentHighp(spec.targetVersion) ? "highp" : "mediump"; in genFragmentShader() 239 shader << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genFragmentShader() 288 const bool usesInout = glslVersionUsesInOutQualifiers(spec.targetVersion); in specializeVertexShader() 362 const bool usesInout = glslVersionUsesInOutQualifiers(spec.targetVersion); in specializeFragmentShader() 436 const bool usesInout = glslVersionUsesInOutQualifiers(specParams.caseSpec.targetVersion); in generateVertexSpecialization() 475 const bool usesInout = glslVersionUsesInOutQualifiers(specParams.caseSpec.targetVersion); in generateFragmentSpecialization() 735 if (!isGLSLVersionSupported(m_renderCtx.getType(), m_spec.targetVersion)) in init() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktBuildPrograms.cpp | 267 DE_ASSERT(m_source.buildOptions.targetVersion < vk::SPIRV_VERSION_LAST); in execute() 322 DE_ASSERT(m_source.buildOptions.targetVersion < vk::SPIRV_VERSION_LAST); in execute() 452 …targetVersion > maxSpirvVersion && !(allowSpirV14 && progIter.getProgram().buildOptions.supports_V… in buildPrograms() 467 …targetVersion > maxSpirvVersion && !(allowSpirV14 && progIter.getProgram().buildOptions.supports_V… in buildPrograms() 482 …targetVersion > maxSpirvVersion && !(allowSpirV14 && progIter.getProgram().buildOptions.supports_V… in buildPrograms()
|
D | vktTestPackage.cpp | 284 if (!spirvVersionSupported(progIter.getProgram().buildOptions.targetVersion)) in init() 308 if (!spirvVersionSupported(progIter.getProgram().buildOptions.targetVersion)) in init() 332 if (!spirvVersionSupported(asmIterator.getProgram().buildOptions.targetVersion)) in init()
|
D | vktShaderLibrary.cpp | 160 res << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genVertexShader() 244 shader << glu::getGLSLVersionDeclaration(spec.targetVersion) << "\n"; in genFragmentShader()
|
/external/skia/src/core/ |
D | SkReadBuffer.h | 45 bool isVersionLT(SkPicturePriv::Version targetVersion) const { in isVersionLT() argument 46 SkASSERT(targetVersion > 0); in isVersionLT() 47 return fVersion > 0 && fVersion < targetVersion; in isVersionLT()
|
/external/deqp/framework/opengl/ |
D | gluShaderLibrary.hpp | 174 glu::GLSLVersion targetVersion; member 186 , targetVersion (glu::GLSL_VERSION_LAST) in ShaderCaseSpecification()
|
D | gluShaderLibrary.cpp | 110 if (spec.targetVersion != GLSL_VERSION_100_ES) in isValid() 1463 spec.targetVersion = version; in parseShaderCase() 1479 spec.targetVersion = version; in parseShaderCase() 1497 spec.targetVersion = version; in parseShaderCase() 1530 spec.targetVersion = version; in parseShaderCase()
|
/external/skqp/src/core/ |
D | SkReadBuffer.h | 55 bool isVersionLT(Version targetVersion) const { in isVersionLT() argument 56 SkASSERT(targetVersion > 0); in isVersionLT() 57 return fVersion > 0 && fVersion < targetVersion; in isVersionLT()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcShaderLibraryCase.hpp | 101 …ectResult expectResult, const std::vector<ValueBlock>& valueBlocks, glu::GLSLVersion targetVersion,
|
D | glcShaderLibraryCase.cpp | 81 … ExpectResult expectResult, const std::vector<ValueBlock>& valueBlocks, GLSLVersion targetVersion, in ShaderCase() argument 87 , m_targetVersion(targetVersion) in ShaderCase()
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmGraphicsShaderTestUtil.cpp | 1259 targetSpirvVersion = spirVAsmBuildOptions->targetVersion; in addShaderCodeCustomVertex() 1292 targetSpirvVersion = spirVAsmBuildOptions->targetVersion; in addShaderCodeCustomTessControl() 1331 targetSpirvVersion = spirVAsmBuildOptions->targetVersion; in addShaderCodeCustomTessEval() 1368 targetSpirvVersion = spirVAsmBuildOptions->targetVersion; in addShaderCodeCustomGeometry() 1403 targetSpirvVersion = spirVAsmBuildOptions->targetVersion; in addShaderCodeCustomFragment()
|