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.cpp1354 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate()
1366 Instruction *mov = emitCast(result, arrayIndex, argi, column); in visitAggregate()
1397 Instruction *mov = emitCast(result, i, arg0, 0); in visitAggregate()
1418 emitCast(result, i + n * outCols, &col, 0); in visitAggregate()
1423 Instruction *mov = emitCast(result, i + n * outCols, argi, i); in visitAggregate()
1442 Instruction *mov = emitCast(result, column, argi, 0); in visitAggregate()
1892 Instruction *OutputASM::emitCast(TIntermTyped *dst, TIntermTyped *src) in emitCast() function in glsl::OutputASM
1894 return emitCast(dst, 0, src, 0); in emitCast()
1897 Instruction *OutputASM::emitCast(TIntermTyped *dst, int dstIndex, TIntermTyped *src, int srcIndex) in emitCast() function in glsl::OutputASM