Home
last modified time | relevance | path

Searched refs:newOp (Results 1 – 6 of 6) sorted by relevance

/third_party/glslang/glslang/MachineIndependent/
DIntermediate.cpp567 bool TIntermediate::buildConvertOp(TBasicType dst, TBasicType src, TOperator& newOp) const in buildConvertOp()
572 case EbtUint: newOp = EOpConvUintToDouble; break; in buildConvertOp()
573 case EbtBool: newOp = EOpConvBoolToDouble; break; in buildConvertOp()
574 case EbtFloat: newOp = EOpConvFloatToDouble; break; in buildConvertOp()
575 case EbtInt: newOp = EOpConvIntToDouble; break; in buildConvertOp()
576 case EbtInt8: newOp = EOpConvInt8ToDouble; break; in buildConvertOp()
577 case EbtUint8: newOp = EOpConvUint8ToDouble; break; in buildConvertOp()
578 case EbtInt16: newOp = EOpConvInt16ToDouble; break; in buildConvertOp()
579 case EbtUint16: newOp = EOpConvUint16ToDouble; break; in buildConvertOp()
580 case EbtFloat16: newOp = EOpConvFloat16ToDouble; break; in buildConvertOp()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonFixupHwLoops.cpp174 unsigned newOp; in useExtLoopInstr() local
177 newOp = Hexagon::J2_loop0rext; in useExtLoopInstr()
180 newOp = Hexagon::J2_loop0iext; in useExtLoopInstr()
183 newOp = Hexagon::J2_loop1rext; in useExtLoopInstr()
186 newOp = Hexagon::J2_loop1iext; in useExtLoopInstr()
191 MIB = BuildMI(*MBB, MII, DL, TII->get(newOp)); in useExtLoopInstr()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cShaderAtomicCounterOpsTests.hpp257 ShaderPipeline(glu::ShaderType testedShader, AtomicOperation* newOp, bool contextGL46);
296 inline void addOperation(AtomicOperation* newOp) in addOperation() argument
300 m_shaderPipelines.push_back(ShaderPipeline((glu::ShaderType)i, newOp, m_contextSupportsGL46)); in addOperation()
Dgl4cShaderAtomicCounterOpsTests.cpp43 …erOpsTestBase::ShaderPipeline::ShaderPipeline(glu::ShaderType testedShader, AtomicOperation* newOp, in ShaderPipeline() argument
45 : m_program(NULL), m_programCompute(NULL), m_testedShader(testedShader), m_atomicOp(newOp) in ShaderPipeline()
/third_party/node/lib/internal/assert/
Dassertion_error.js413 const newOp = kReadableOperator[`${operator}Unequal`];
414 if (newOp) {
415 res = `${newOp}\n\n${res}\n\nshould not loosely deep-equal\n\n`;
/third_party/glslang/glslang/Include/
Dintermediate.h1418 void setOp(TOperator newOp) { op = newOp; } in setOp() argument