Home
last modified time | relevance | path

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

/external/swiftshader/src/Pipeline/
DShader.hpp151 OPCODE_ATAN, enumerator
DShader.cpp934 case OPCODE_ATAN: return "atan"; in operationString()
DVertexProgram.cpp271 case Shader::OPCODE_ATAN: atan(d, s0); break; in program()
DPixelProgram.cpp277 case Shader::OPCODE_ATAN: atan(d, s0, pp); break; in applyShader()
/external/swiftshader/src/Shader/
DShader.hpp151 OPCODE_ATAN, enumerator
DShader.cpp934 case OPCODE_ATAN: return "atan"; in operationString()
DVertexProgram.cpp278 case Shader::OPCODE_ATAN: atan(d, s0); break; in program()
DPixelProgram.cpp277 case Shader::OPCODE_ATAN: atan(d, s0, pp); break; in applyShader()
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1155 …case EOpAtan: if(visit == PostVisit) emit(sw::Shader::OPCODE_ATAN, result, arg); break; in visitUnary()