Lines Matching refs:spvConsts
7476 std::vector<spv::Id> spvConsts; local
7484 … spvConsts.push_back(createSpvConstantFromConstUnionArray(elementType, consts, nextConst, false));
7488 … spvConsts.push_back(createSpvConstantFromConstUnionArray(vectorType, consts, nextConst, false));
7492 … spvConsts.push_back(createSpvConstantFromConstUnionArray(*iter->type, consts, nextConst, false));
7498 … spvConsts.push_back(builder.makeInt8Constant(zero ? 0 : consts[nextConst].getI8Const()));
7501 … spvConsts.push_back(builder.makeUint8Constant(zero ? 0 : consts[nextConst].getU8Const()));
7504 … spvConsts.push_back(builder.makeInt16Constant(zero ? 0 : consts[nextConst].getI16Const()));
7507 … spvConsts.push_back(builder.makeUint16Constant(zero ? 0 : consts[nextConst].getU16Const()));
7510 … spvConsts.push_back(builder.makeIntConstant(zero ? 0 : consts[nextConst].getIConst()));
7513 … spvConsts.push_back(builder.makeUintConstant(zero ? 0 : consts[nextConst].getUConst()));
7516 … spvConsts.push_back(builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const()));
7519 … spvConsts.push_back(builder.makeUint64Constant(zero ? 0 : consts[nextConst].getU64Const()));
7522 …spvConsts.push_back(builder.makeFloatConstant(zero ? 0.0F : (float)consts[nextConst].getDConst()));
7525 … spvConsts.push_back(builder.makeDoubleConstant(zero ? 0.0 : consts[nextConst].getDConst()));
7528 …spvConsts.push_back(builder.makeFloat16Constant(zero ? 0.0F : (float)consts[nextConst].getDConst()…
7531 … spvConsts.push_back(builder.makeBoolConstant(zero ? false : consts[nextConst].getBConst()));
7588 return builder.makeCompositeConstant(typeId, spvConsts);