Home
last modified time | relevance | path

Searched refs:emitCast (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DOutputASM.h267 Instruction *emitCast(TIntermTyped *dst, TIntermTyped *src);
268 Instruction *emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex);
DOutputASM.cpp1359 Instruction *mov = emitCast(result, argi); in visitAggregate()
1371 Instruction *mov = emitCast(result, 0, argi, column); in visitAggregate()
1402 Instruction *mov = emitCast(result, i, arg0, 0); in visitAggregate()
1418 Instruction *mov = emitCast(result, i, &col, 0); in visitAggregate()
1423 Instruction *mov = emitCast(result, i, arg0, i); in visitAggregate()
1441 Instruction *mov = emitCast(result, column, argi, 0); in visitAggregate()
1891 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src) in emitCast() function in glsl::OutputASM
1893 return emitCast(dst, 0, src, 0); in emitCast()
1896 Instruction *OutputASM::emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex) in emitCast() function in glsl::OutputASM