Home
last modified time | relevance | path

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

/external/swiftshader/src/Pipeline/
DShader.hpp157 OPCODE_ASINH, enumerator
DShader.cpp940 case OPCODE_ASINH: return "asinh"; in operationString()
DVertexProgram.cpp277 case Shader::OPCODE_ASINH: asinh(d, s0, pp); break; in program()
DPixelProgram.cpp283 case Shader::OPCODE_ASINH: asinh(d, s0, pp); break; in applyShader()
/external/swiftshader/src/Shader/
DShader.hpp157 OPCODE_ASINH, enumerator
DShader.cpp940 case OPCODE_ASINH: return "asinh"; in operationString()
DVertexProgram.cpp284 case Shader::OPCODE_ASINH: asinh(d, s0, pp); break; in program()
DPixelProgram.cpp283 case Shader::OPCODE_ASINH: asinh(d, s0, pp); break; in applyShader()
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1159 …case EOpAsinh: if(visit == PostVisit) emit(sw::Shader::OPCODE_ASINH, result, arg); brea… in visitUnary()