Home
last modified time | relevance | path

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

/external/swiftshader/src/Pipeline/
DSpirvShaderGLSLstd450.cpp571 auto combinedExponent = exponent.Int(i) + significandExponent; in EmitExtGLSLstd450() local
575 auto isExponentNotTooSmall = SIMD::UInt(CmpGE(combinedExponent, SIMD::Int(-126))); in EmitExtGLSLstd450()
576 auto isExponentNotTooLarge = SIMD::UInt(CmpLE(combinedExponent, SIMD::Int(128))); in EmitExtGLSLstd450()
581 v |= (SIMD::UInt(combinedExponent + SIMD::Int(126)) << SIMD::UInt(23)); // Add exponent. in EmitExtGLSLstd450()