Home
last modified time | relevance | path

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

/external/swiftshader/src/Pipeline/
DShader.hpp153 OPCODE_COSH, enumerator
DShader.cpp936 case OPCODE_COSH: return "cosh"; in operationString()
DVertexProgram.cpp273 case Shader::OPCODE_COSH: cosh(d, s0, pp); break; in program()
DPixelProgram.cpp279 case Shader::OPCODE_COSH: cosh(d, s0, pp); break; in applyShader()
/external/swiftshader/src/Shader/
DShader.hpp153 OPCODE_COSH, enumerator
DShader.cpp936 case OPCODE_COSH: return "cosh"; in operationString()
DVertexProgram.cpp280 case Shader::OPCODE_COSH: cosh(d, s0, pp); break; in program()
DPixelProgram.cpp279 case Shader::OPCODE_COSH: cosh(d, s0, pp); break; in applyShader()
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1157 …case EOpCosh: if(visit == PostVisit) emit(sw::Shader::OPCODE_COSH, result, arg); break; in visitUnary()