Home
last modified time | relevance | path

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

/external/swiftshader/src/Shader/
DShader.hpp158 OPCODE_ATANH, enumerator
DShader.cpp941 case OPCODE_ATANH: return "atanh"; in operationString()
DVertexProgram.cpp285 case Shader::OPCODE_ATANH: atanh(d, s0, pp); break; in program()
DPixelProgram.cpp284 case Shader::OPCODE_ATANH: atanh(d, s0, pp); break; in applyShader()
/external/swiftshader/src/Pipeline/
DShader.hpp158 OPCODE_ATANH, enumerator
DShader.cpp941 case OPCODE_ATANH: return "atanh"; in operationString()
DVertexProgram.cpp278 case Shader::OPCODE_ATANH: atanh(d, s0, pp); break; in program()
DPixelProgram.cpp284 case Shader::OPCODE_ATANH: atanh(d, s0, pp); break; in applyShader()
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1161 …case EOpAtanh: if(visit == PostVisit) emit(sw::Shader::OPCODE_ATANH, result, arg); brea… in visitUnary()