Home
last modified time | relevance | path

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

/external/swiftshader/src/Pipeline/
DShader.hpp149 OPCODE_ACOS, enumerator
DShader.cpp932 case OPCODE_ACOS: return "acos"; in operationString()
DVertexProgram.cpp269 case Shader::OPCODE_ACOS: acos(d, s0); break; in program()
DPixelProgram.cpp275 case Shader::OPCODE_ACOS: acos(d, s0, pp); break; in applyShader()
/external/swiftshader/src/Shader/
DShader.hpp149 OPCODE_ACOS, enumerator
DShader.cpp932 case OPCODE_ACOS: return "acos"; in operationString()
DVertexProgram.cpp276 case Shader::OPCODE_ACOS: acos(d, s0); break; in program()
DPixelProgram.cpp275 case Shader::OPCODE_ACOS: acos(d, s0, pp); break; in applyShader()
/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp1154 …case EOpAcos: if(visit == PostVisit) emit(sw::Shader::OPCODE_ACOS, result, arg); break; in visitUnary()