/external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/function/ |
D | func.go | 26 var boolType = reflect.TypeOf(true) var 36 if ni == 2 && no == 1 && t.In(0) == t.In(1) && t.Out(0) == boolType { 40 if ni == 2 && no == 1 && t.In(0).AssignableTo(t.In(1)) && t.Out(0) == boolType {
|
/external/skqp/src/sksl/ |
D | SkSLContext.h | 389 static std::unique_ptr<Type> fp_type(const Type* intType, const Type* boolType) { in fp_type() argument 397 Type::Field(mods, "usesLocalCoords", boolType), in fp_type() 398 Type::Field(mods, "compatibleWithCoverageAsAlpha", boolType), in fp_type() 399 Type::Field(mods, "preservesOpaqueInput", boolType), in fp_type() 400 Type::Field(mods, "hasConstantOutputForConstantInput", boolType) in fp_type()
|
D | SkSLSPIRVCodeGenerator.cpp | 1896 SpvId boolType = this->getType(*fContext.fBool_Type); in writeMatrixComparison() local 1906 this->writeInstruction(vectorMergeOperator, boolType, merge, compare, out); in writeMatrixComparison() 1909 this->writeInstruction(mergeOperator, boolType, next, result, merge, out); in writeMatrixComparison()
|
/external/skia/src/sksl/ |
D | SkSLContext.h | 395 static std::unique_ptr<Type> fp_type(const Type* intType, const Type* boolType) { in fp_type() argument 403 Type::Field(mods, "usesLocalCoords", boolType), in fp_type() 404 Type::Field(mods, "compatibleWithCoverageAsAlpha", boolType), in fp_type() 405 Type::Field(mods, "preservesOpaqueInput", boolType), in fp_type() 406 Type::Field(mods, "hasConstantOutputForConstantInput", boolType) in fp_type()
|
D | SkSLSPIRVCodeGenerator.cpp | 1964 SpvId boolType = this->getType(*fContext.fBool_Type); in writeMatrixComparison() local 1974 this->writeInstruction(vectorMergeOperator, boolType, merge, compare, out); in writeMatrixComparison() 1977 this->writeInstruction(mergeOperator, boolType, next, result, merge, out); in writeMatrixComparison()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | SimpleSValBuilder.cpp | 708 QualType boolType = getContext().BoolTy; in evalBinOpLL() local 709 NonLoc l = evalCastFromLoc(lhs, boolType).castAs<NonLoc>(); in evalBinOpLL() 710 NonLoc r = makeTruthVal(false, boolType).castAs<NonLoc>(); in evalBinOpLL()
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | Program.cpp | 500 static GLenum boolType[] = { GL_BOOL, GL_BOOL_VEC2, GL_BOOL_VEC3, GL_BOOL_VEC4 }; in setUniformfv() local 525 else if(targetUniform->type == boolType[index]) in setUniformfv() 743 static GLenum boolType[] = { GL_BOOL, GL_BOOL_VEC2, GL_BOOL_VEC3, GL_BOOL_VEC4 }; in setUniformiv() local 768 else if(targetUniform->type == boolType[index]) in setUniformiv() 861 static GLenum boolType[] = { GL_BOOL, GL_BOOL_VEC2, GL_BOOL_VEC3, GL_BOOL_VEC4 }; in setUniformuiv() local 886 else if(targetUniform->type == boolType[index]) in setUniformuiv()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderCommonFunctionTests.cpp | 793 const glu::DataType boolType = vecSize > 1 ? glu::getDataTypeBoolVec(vecSize) : glu::TYPE_BOOL; in IsnanCase() local 796 m_spec.outputs.push_back(Symbol("out0", glu::VarType(boolType, glu::PRECISION_LAST))); in IsnanCase() 874 const glu::DataType boolType = vecSize > 1 ? glu::getDataTypeBoolVec(vecSize) : glu::TYPE_BOOL; in IsinfCase() local 877 m_spec.outputs.push_back(Symbol("out0", glu::VarType(boolType, glu::PRECISION_LAST))); in IsinfCase()
|
/external/deqp-deps/glslang/SPIRV/ |
D | SpvBuilder.cpp | 2049 Id boolType = makeBoolType(); in createCompositeCompare() local 2079 resultId = createBinOp(op, boolType, value1, value2); in createCompositeCompare() 2082 resultId = createBinOp(op, makeVectorType(boolType, numConstituents), value1, value2); in createCompositeCompare() 2085 resultId = createUnaryOp(equal ? OpAll : OpAny, boolType, resultId); in createCompositeCompare() 2108 …resultId = setPrecision(createBinOp(equal ? OpLogicalAnd : OpLogicalOr, boolType, resultId, subRes… in createCompositeCompare()
|
D | GlslangToSpv.cpp | 3417 spv::Id boolType = builder.makeBoolType(); in accessChainLoad() local 3418 if (nominalTypeId != boolType) in accessChainLoad() 3419 … loadedId = builder.createBinOp(spv::OpINotEqual, boolType, loadedId, builder.makeUintConstant(0)); in accessChainLoad() 3444 spv::Id boolType = builder.makeBoolType(); in accessChainStore() local 3445 if (nominalTypeId != boolType) { in accessChainStore() 3450 } else if (builder.getTypeId(rvalue) != boolType) in accessChainStore() 3451 … rvalue = builder.createBinOp(spv::OpINotEqual, boolType, rvalue, builder.makeUintConstant(0)); in accessChainStore()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderExecutor.cpp | 1961 std::string boolType; in sclarComparison() local 1981 boolType = "%v2bool"; in sclarComparison() 1985 boolType = "%v3bool"; in sclarComparison() 1989 boolType = "%v4bool"; in sclarComparison() 1998 …<< "%operation_result_" << operationNdx << " = " << opeartion << " " << boolType << " %in0_val %in… in sclarComparison()
|
D | vktShaderCommonFunctionTests.cpp | 1080 const glu::DataType boolType = vecSize > 1 ? glu::getDataTypeBoolVec(vecSize) : glu::TYPE_BOOL; in IsnanCase() local 1083 m_spec.outputs.push_back(Symbol("out0", glu::VarType(boolType, glu::PRECISION_LAST))); in IsnanCase() 1178 const glu::DataType boolType = vecSize > 1 ? glu::getDataTypeBoolVec(vecSize) : glu::TYPE_BOOL; in IsinfCase() local 1181 m_spec.outputs.push_back(Symbol("out0", glu::VarType(boolType, glu::PRECISION_LAST))); in IsinfCase()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderCommonFunctionTests.cpp | 871 const glu::DataType boolType = vecSize > 1 ? glu::getDataTypeBoolVec(vecSize) : glu::TYPE_BOOL; in IsnanCase() local 874 m_spec.outputs.push_back(Symbol("out0", glu::VarType(boolType, glu::PRECISION_LAST))); in IsnanCase() 954 const glu::DataType boolType = vecSize > 1 ? glu::getDataTypeBoolVec(vecSize) : glu::TYPE_BOOL; in IsinfCase() local 957 m_spec.outputs.push_back(Symbol("out0", glu::VarType(boolType, glu::PRECISION_LAST))); in IsinfCase()
|
/external/deqp/framework/randomshaders/ |
D | rsgBinaryOps.cpp | 286 VariableType boolType(VariableType::TYPE_BOOL, 1); in createNextChild() local 287 const ValueRange boolRange(boolType); in createNextChild()
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.cpp | 4668 const TType boolType(EbtBool, EvqTemporary, in decomposeIntrinsic() local 4674 typedArg = intermediate.addConversion(EOpConstructBool, boolType, typedArg); in decomposeIntrinsic() 5149 … const TType boolType(EbtBool, EvqTemporary, arg0->getVectorSize(), arg0->getMatrixCols(), in decomposeIntrinsic() local 5153 isnan->setType(boolType); in decomposeIntrinsic() 5156 notnan->setType(boolType); in decomposeIntrinsic() 5159 isinf->setType(boolType); in decomposeIntrinsic() 5162 notinf->setType(boolType); in decomposeIntrinsic() 5165 andNode->setType(boolType); in decomposeIntrinsic() 5170 compoundStatement->setType(boolType); in decomposeIntrinsic()
|