Searched defs:Vector (Results 51 - 75 of 81) sorted by relevance

1234

/external/eigen/Eigen/src/PaStiXSupport/
H A DPaStiXSupport.h128 typedef Matrix<Scalar,Dynamic,1> Vector; typedef in class:Eigen::PastixBase
/external/llvm/tools/verify-uselistorder/
H A Dverify-uselistorder.cpp110 SmallVector<char, 64> Vector; local
112 if (auto EC = sys::fs::createTemporaryFile("uselistorder", Ext, Vector)) {
116 assert(!Vector.empty());
118 Filename.assign(Vector.data(), Vector.data() + Vector.size());
/external/clang/include/clang/AST/
H A DAPValue.h37 /// [Vector: N * APValue], [Array: N * APValue]
49 Vector, enumerator in enum:clang::APValue::ValueKind
187 bool isVector() const { return Kind == Vector; }
417 Kind = Vector;
/external/clang/test/CodeGenCXX/
H A Dtemporaries.cpp668 namespace Vector { namespace
/external/deqp/framework/common/
H A DtcuTestLog.cpp144 static Vector<int, Size> computeScaledSize (const Vector<int, Size>& imageSize, int maxSize) argument
158 Vector<int, Size> res;
H A DtcuTexture.hpp325 Vector<T, 4> getPixelT (int x, int y, int z = 0) const;
454 CubeFaceCoords (CubeFace face_, const Vector<T, 2>& c) : face(face_), s(c.x()), t(c.y()) {} argument
H A DtcuTexLookupVerifier.cpp56 inline Vector<ScalarType, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
65 inline Vector<float, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, int i, int j, int k)
122 static T minComp (const Vector<T, Size>& vec) argument
131 static T maxComp (const Vector<T, Size>& vec) argument
495 const Vector<ScalarType, 4>& result)
507 const Vector<ScalarType, 4> color = lookup<ScalarType>(level, sampler, x, coordY, 0);
522 const Vector<ScalarType, 4>& result)
541 const Vector<ScalarType, 4> color = lookup<ScalarType>(level, sampler, x, y, coordZ);
556 const Vector<ScalarType, 4>& result)
581 const Vector<ScalarTyp
490 isNearestSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const float coordX, const int coordY, const Vector<ScalarType, 4>& result) argument
517 isNearestSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const Vec2& coord, const int coordZ, const Vector<ScalarType, 4>& result) argument
552 isNearestSampleResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const Vec3& coord, const Vector<ScalarType, 4>& result) argument
2258 isGatherOffsetsResultValid(const ConstPixelBufferAccess& level, const Sampler& sampler, const PrecType& prec, const Vec2& coord, int coordZ, int componentNdx, const IVec2 (&offsets)[4], const Vector<ScalarType, 4>& result) argument
2334 is2DArrayGatherOffsetsResultValid(const Texture2DArrayView& texture, const Sampler& sampler, const PrecType& prec, const Vec3& coord, int componentNdx, const IVec2 (&offsets)[4], const Vector<ScalarType, 4>& result) argument
2385 isGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const PrecType& prec, const CubeFaceFloatCoords& coords, int componentNdx, const Vector<ScalarType, 4>& result) argument
2442 isCubeGatherResultValid(const TextureCubeView& texture, const Sampler& sampler, const PrecType& prec, const Vec3& coord, int componentNdx, const Vector<ScalarType, 4>& result) argument
[all...]
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h141 typedef Matrix<Scalar,Dynamic,1> Vector; typedef in class:Eigen::UmfPackLU
/external/llvm/include/llvm/ADT/
H A DFoldingSet.h298 /// Bits - Vector of all the data bits that make the node unique.
543 VectorT Vector; member in class:llvm::FoldingSetVector
551 iterator begin() { return Vector.begin(); }
552 iterator end() { return Vector.end(); }
555 const_iterator begin() const { return Vector.begin(); }
556 const_iterator end() const { return Vector.end(); }
559 void clear() { Set.clear(); Vector.clear(); }
573 if (Result == N) Vector.push_back(N);
582 Vector.push_back(N);
589 Vector
[all...]
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h262 unsigned getNumberOfRegisters(bool Vector) { return 8; } argument
264 unsigned getRegisterBitWidth(bool Vector) { return 32; } argument
/external/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h281 /// \name Vector TTI Implementations
284 unsigned getNumberOfRegisters(bool Vector) { return 1; } argument
286 unsigned getRegisterBitWidth(bool Vector) { return 32; } argument
H A DRegAllocPBQP.h268 void setup(const Vector& Costs) {
332 typedef PBQP::Vector RawVector;
334 typedef PBQP::Vector Vector; typedef in class:llvm::PBQP::RegAlloc::RegAllocSolverImpl
336 typedef PBQP::PoolCostAllocator<Vector, Matrix> CostAllocator;
364 void handleSetNodeCosts(NodeId NId, const Vector& newCosts) {}
/external/llvm/include/llvm/CodeGen/PBQP/
H A DGraph.h54 typedef typename SolverT::Vector Vector; typedef in class:llvm::PBQP::Graph
494 const Vector& getNodeCosts(NodeId NId) const {
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp43 unsigned X86TTIImpl::getNumberOfRegisters(bool Vector) { argument
44 if (Vector && !ST->hasSSE1())
48 if (Vector && ST->hasAVX512())
55 unsigned X86TTIImpl::getRegisterBitWidth(bool Vector) { argument
56 if (Vector) {
231 // Vector shift left by non uniform constant can be lowered
/external/v8/benchmarks/
H A Draytrace.js216 Flog.RayTracer.Vector = Class.create();
218 Flog.RayTracer.Vector.prototype = {
237 return new Flog.RayTracer.Vector(this.x / m, this.y / m, this.z / m);
245 return new Flog.RayTracer.Vector(
256 return new Flog.RayTracer.Vector(w.x + v.x, w.y + v.y, w.z + v.z);
261 return new Flog.RayTracer.Vector(v.x - w.x, v.y - w.y, v.z - w.z);
265 return new Flog.RayTracer.Vector(v.x * w.x, v.y * w.y, v.z * w.z);
269 return new Flog.RayTracer.Vector(v.x * w, v.y * w, v.z * w);
273 return 'Vector [' + this.x + ',' + this.y + ',' + this.z + ']';
308 new Flog.RayTracer.Vector(
[all...]
/external/clang/test/Parser/
H A Dcxx-altivec.cpp165 struct Vector struct
170 Vector Add(Vector lhs, Vector rhs)
172 Vector result;
/external/eigen/Eigen/src/SuperLUSupport/
H A DSuperLUSupport.h298 typedef Matrix<Scalar,Dynamic,1> Vector; typedef in class:Eigen::SuperLUBase
/external/lldb/tools/debugserver/source/
H A DDNBDefs.h177 Vector // vector registers enumerator in enum:DNBRegisterType
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp925 SDValue Vector) const {
927 SDLoc DL(Vector);
928 EVT VecVT = Vector.getValueType();
935 Vector, DAG.getConstant(i, getVectorIdxTy())));
945 SDValue Vector = Op.getOperand(0); local
949 Vector.getOpcode() == AMDGPUISD::BUILD_VERTICAL_VECTOR)
952 Vector = vectorToVerticalVector(DAG, Vector);
954 Vector, Index);
960 SDValue Vector local
[all...]
H A DR600InstrInfo.cpp447 int Vector[4][3]; local
448 memset(Vector, -1, sizeof(Vector));
466 if (Vector[Src.second][j] < 0)
467 Vector[Src.second][j] = Src.first;
468 if (Vector[Src.second][j] != Src.first)
480 if (Vector[Src.second][Cycle] < 0)
481 Vector[Src.second][Cycle] = Src.first;
482 if (Vector[Src.second][Cycle] != Src.first)
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp286 Vector, enumerator in enum:__anon11086::ConvertToScalarInfo::__anon11087
349 if (ScalarKind == Vector && VectorTy->getBitWidth() != AllocaSize * 8)
359 if (ScalarKind == Vector) {
458 ScalarKind = Vector;
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp30 typedef int Vector __attribute__((vector_size(16))); typedef
170 { int arr[T(__is_pod(Vector))]; }
1171 int t07[T(__is_standard_layout(Vector))];
1806 { int arr[T(__is_trivial(Vector))]; }
1853 { int arr[T(__is_trivially_copyable(Vector))]; }
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp72 inline Vector<float, Size> FUNC_NAME (const Vector<float, Size>& v, float s) \
74 Vector<float, Size> res; \
82 inline Vector<float, Size> FUNC_NAME (float s, const Vector<float, Size>& v) \
84 Vector<float, Size> res; \
92 inline Vector<float, Size> FUNC_NAME (const Vector<float, Size>& v0, const Vector<float, Size>& v1, float s) \
94 Vector<floa
138 addOne(const Vector<float, Size>& v) argument
139 subOne(const Vector<float, Size>& v) argument
140 addOne(const Vector<int, Size>& v) argument
141 subOne(const Vector<int, Size>& v) argument
145 addVecScalar(const Vector<T, Size>& v, T s) argument
146 subVecScalar(const Vector<T, Size>& v, T s) argument
147 mulVecScalar(const Vector<T, Size>& v, T s) argument
148 divVecScalar(const Vector<T, Size>& v, T s) argument
150 addScalarVec(T s, const Vector<T, Size>& v) argument
151 subScalarVec(T s, const Vector<T, Size>& v) argument
152 mulScalarVec(T s, const Vector<T, Size>& v) argument
153 divScalarVec(T s, const Vector<T, Size>& v) argument
617 nop(const Vector<T, Size>& v) argument
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml36 | Vector Constructor in type:TypeKind/t
/external/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp2384 SDValue Vector = DAG.getUNDEF(ResTy); local
2386 Vector = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, ResTy, Vector,
2390 return Vector;

Completed in 4284 milliseconds

1234