Home
last modified time | relevance | path

Searched refs:getI64Const (Results 1 – 5 of 5) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DConstant.cpp245 …else if (rightUnionArray[i].getI64Const() == -1 && leftUnionArray[i].getI64Const() == (long long)-… in fold()
248 … newConstArray[i].setI64Const(leftUnionArray[i].getI64Const() / rightUnionArray[i].getI64Const()); in fold()
300 … if (rightUnionArray[i].getI64Const() == -1 && leftUnionArray[i].getI64Const() == LLONG_MIN) { in fold()
539 case EbtInt64: newConstArray[i].setI64Const(-unionArray[i].getI64Const()); break; in fold()
727 newConstArray[i].setBConst(unionArray[i].getI64Const() != 0); break; in fold()
729 newConstArray[i].setBConst(unionArray[i].getI64Const() != 0); break; in fold()
861 … newConstArray[i].setI8Const(static_cast<signed char>(unionArray[i].getI64Const())); break; in fold()
863 … newConstArray[i].setI16Const(static_cast<signed short>(unionArray[i].getI64Const())); break; in fold()
865 newConstArray[i].setIConst(static_cast<int>(unionArray[i].getI64Const())); break; in fold()
867 … newConstArray[i].setU8Const(static_cast<unsigned char>(unionArray[i].getI64Const())); break; in fold()
[all …]
DintermOut.cpp1318 snprintf(buf, maxSize, "%lld (%s)", constUnion[i].getI64Const(), "const int64_t"); in OutputConstantUnion()
DIntermediate.cpp3891 case EbtInt64: TO_ALL(getI64Const); break; in promoteConstantUnion()
/external/deqp-deps/glslang/glslang/Include/
DConstantUnion.h124 long long getI64Const() const { return i64Const; } in getI64Const() function
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp8630 … spvConsts.push_back(builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const())); in createSpvConstantFromConstUnionArray()
8679 … scalar = builder.makeInt64Constant(zero ? 0 : consts[nextConst].getI64Const(), specConstant); in createSpvConstantFromConstUnionArray()