Home
last modified time | relevance | path

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

/external/swiftshader/src/Shader/
DShader.hpp150 OPCODE_ASIN, enumerator
DShader.cpp933 case OPCODE_ASIN: return "asin"; in operationString()
DVertexProgram.cpp277 case Shader::OPCODE_ASIN: asin(d, s0); break; in program()
DPixelProgram.cpp276 case Shader::OPCODE_ASIN: asin(d, s0, pp); break; in applyShader()
/external/swiftshader/src/Pipeline/
DShader.hpp150 OPCODE_ASIN, enumerator
DShader.cpp933 case OPCODE_ASIN: return "asin"; in operationString()
DVertexProgram.cpp270 case Shader::OPCODE_ASIN: asin(d, s0); break; in program()
DPixelProgram.cpp276 case Shader::OPCODE_ASIN: asin(d, s0, pp); break; in applyShader()
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1153 …case EOpAsin: if(visit == PostVisit) emit(sw::Shader::OPCODE_ASIN, result, arg); break; in visitUnary()