Home
last modified time | relevance | path

Searched refs:Vec1 (Results 1 – 10 of 10) sorted by relevance

/external/vulkan-validation-layers/libs/glm/detail/
Dintrinsic_matrix.inl342 __m128 Vec1 = _mm_shuffle_ps(Temp1, Temp1, _MM_SHUFFLE(2, 2, 2, 0)); local
359 // + (Vec1[0] * Fac0[0] - Vec2[0] * Fac1[0] + Vec3[0] * Fac2[0]),
360 // - (Vec1[1] * Fac0[1] - Vec2[1] * Fac1[1] + Vec3[1] * Fac2[1]),
361 // + (Vec1[2] * Fac0[2] - Vec2[2] * Fac1[2] + Vec3[2] * Fac2[2]),
362 // - (Vec1[3] * Fac0[3] - Vec2[3] * Fac1[3] + Vec3[3] * Fac2[3]),
363 __m128 Mul00 = _mm_mul_ps(Vec1, Fac0);
383 // + (Vec0[0] * Fac1[0] - Vec1[0] * Fac3[0] + Vec3[0] * Fac5[0]),
384 // - (Vec0[0] * Fac1[1] - Vec1[1] * Fac3[1] + Vec3[1] * Fac5[1]),
385 // + (Vec0[0] * Fac1[2] - Vec1[2] * Fac3[2] + Vec3[2] * Fac5[2]),
386 // - (Vec0[0] * Fac1[3] - Vec1[3] * Fac3[3] + Vec3[3] * Fac5[3]),
[all …]
Dtype_mat4x4.inl513 detail::tvec4<T, P> Vec1(m[1][1], m[0][1], m[0][1], m[0][1]); local
517 detail::tvec4<T, P> Inv0(Vec1 * Fac0 - Vec2 * Fac1 + Vec3 * Fac2);
519 detail::tvec4<T, P> Inv2(Vec0 * Fac1 - Vec1 * Fac3 + Vec3 * Fac5);
520 detail::tvec4<T, P> Inv3(Vec0 * Fac2 - Vec1 * Fac4 + Vec2 * Fac5);
/external/deqp/framework/common/
DtcuVectorType.hpp38 typedef Vector<float, 1> Vec1; typedef
/external/llvm/test/Bindings/OCaml/
Dcore.ml1063 * CHECK: %build_extractelement = extractelement <4 x i32> %Vec1, i32 %P2
1064 * CHECK: %build_insertelement = insertelement <4 x i32> %Vec1, i32 %P1, i32 %P2
1065 …* CHECK: %build_shufflevector = shufflevector <4 x i32> %Vec1, <4 x i32> %Vec2, <4 x i32> <i32 1, …
1092 let vec1 = build_insertelement t1 p1 p2 "Vec1" atentry in
/external/clang/lib/AST/
DASTImporter.cpp551 const DependentSizedExtVectorType *Vec1 in IsStructurallyEquivalent() local
556 Vec1->getSizeExpr(), Vec2->getSizeExpr())) in IsStructurallyEquivalent()
559 Vec1->getElementType(), in IsStructurallyEquivalent()
567 const VectorType *Vec1 = cast<VectorType>(T1); in IsStructurallyEquivalent() local
570 Vec1->getElementType(), in IsStructurallyEquivalent()
573 if (Vec1->getNumElements() != Vec2->getNumElements()) in IsStructurallyEquivalent()
575 if (Vec1->getVectorKind() != Vec2->getVectorKind()) in IsStructurallyEquivalent()
/external/clang/lib/Sema/
DSemaOverload.cpp7718 Vec1 = CandidateTypes[0].vector_begin(), in addGenericBinaryArithmeticOverloads() local
7720 Vec1 != Vec1End; ++Vec1) { in addGenericBinaryArithmeticOverloads()
7725 QualType LandR[2] = { *Vec1, *Vec2 }; in addGenericBinaryArithmeticOverloads()
7728 if ((*Vec1)->isExtVectorType() || !(*Vec2)->isExtVectorType()) in addGenericBinaryArithmeticOverloads()
7729 Result = *Vec1; in addGenericBinaryArithmeticOverloads()
7966 Vec1 = CandidateTypes[0].vector_begin(), in addAssignmentArithmeticOverloads() local
7968 Vec1 != Vec1End; ++Vec1) { in addAssignmentArithmeticOverloads()
7976 ParamTypes[0] = S.Context.getLValueReferenceType(*Vec1); in addAssignmentArithmeticOverloads()
7982 ParamTypes[0] = S.Context.getVolatileType(*Vec1); in addAssignmentArithmeticOverloads()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp4344 Value *Vec1, *Vec2, *Mask; in parseFunctionBody() local
4345 if (getValueTypePair(Record, OpNum, NextValueNo, Vec1) || in parseFunctionBody()
4346 popValue(Record, OpNum, NextValueNo, Vec1->getType(), Vec2)) in parseFunctionBody()
4351 if (!Vec1->getType()->isVectorTy() || !Vec2->getType()->isVectorTy()) in parseFunctionBody()
4353 I = new ShuffleVectorInst(Vec1, Vec2, Mask); in parseFunctionBody()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp2055 SDValue Vec1 = IntermedVals[0].first; in ExpandBVWithShuffles() local
2069 Res = DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data()); in ExpandBVWithShuffles()
2170 SDValue Vec1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Value1); in ExpandBUILD_VECTOR() local
2178 return DAG.getVectorShuffle(VT, dl, Vec1, Vec2, ShuffleVec.data()); in ExpandBUILD_VECTOR()
/external/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp2365 SDValue Vec1 = Op.getOperand(1); in LowerCONCAT_VECTORS() local
2369 SDValue B1 = DAG.getNode(ISD::BITCAST, dl, OpTy, Vec1); in LowerCONCAT_VECTORS()
/external/llvm/docs/
DProgrammersManual.rst840 PackedVector<State, 2> Vec1;
841 Vec1.push_back(FirstCondition);
846 Vec1 |= Vec2;
847 return Vec1[0]; // returns 'Both'.