Lines Matching refs:constantValue
317 CreateConstant(insn).constantValue[0] = insn.word(3);
321 CreateConstant(insn).constantValue[0] = 0; // Represent Boolean false as zero.
325 CreateConstant(insn).constantValue[0] = ~0u; // Represent Boolean true as all bits set.
336 object.constantValue[i] = 0;
351 object.constantValue[offset++] = constituent.constantValue[j];
369 modes.WorkgroupSizeX = object.constantValue[0];
370 modes.WorkgroupSizeY = object.constantValue[1];
371 modes.WorkgroupSizeZ = object.constantValue[2];
835 object.constantValue.resize(objectTy.componentCount); in CreateConstant()
2300 …auto memorySemantics = static_cast<spv::MemorySemanticsMask>(getObject(semanticsId).constantValue[… in EmitAtomicOp()
2375 …rySemanticsEqual = static_cast<spv::MemorySemanticsMask>(getObject(insn.word(5)).constantValue[0]); in EmitAtomicCompareExchange()
2377 …SemanticsUnequal = static_cast<spv::MemorySemanticsMask>(getObject(insn.word(6)).constantValue[0]); in EmitAtomicCompareExchange()
2469 return scopeObj.constantValue[0]; in GetConstScalarInt()
2539 …: constant(object.kind == SpirvShader::Object::Kind::Constant ? object.constantValue.data() : null… in Operand()
2541 , componentCount(intermediate ? intermediate->componentCount : object.constantValue.size()) in Operand()