Home
last modified time | relevance | path

Searched refs:constantVector (Results 1 - 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/test_utils/
H A DConstantFoldingTest.h30 ConstantFinder(const std::vector<T> &constantVector) in ConstantFinder() argument
32 mConstantVector(constantVector), in ConstantFinder()
37 ConstantFinder(const std::vector<T> &constantVector, const T &faultTolerance) in ConstantFinder() argument
39 mConstantVector(constantVector), in ConstantFinder()
152 bool constantVectorFoundInAST(const std::vector<T> &constantVector)
154 ConstantFinder<T> finder(constantVector);
166 bool constantVectorNearFoundInAST(const std::vector<T> &constantVector, const T &faultTolerance)
168 ConstantFinder<T> finder(constantVector, faultTolerance);
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DReactor.cpp1335 int64_t constantVector[8] = { x0, x1, x2, x3, x4, x5, x6, x7 };
1336 storeValue(Nucleus::createConstantVector(constantVector, type()));
1539 int64_t constantVector[8] = { x0, x1, x2, x3, x4, x5, x6, x7 };
1540 Value *vector = Nucleus::createConstantVector(constantVector, type());
1785 int64_t constantVector[4] = { xyzw, xyzw, xyzw, xyzw };
1786 storeValue(Nucleus::createConstantVector(constantVector, type()));
1791 int64_t constantVector[4] = { x, y, z, w };
1792 storeValue(Nucleus::createConstantVector(constantVector, type()));
2015 int64_t constantVector[4] = { xyzw, xyzw, xyzw, xyzw };
2016 storeValue(Nucleus::createConstantVector(constantVector, typ
[all...]
H A DLLVMReactor.cpp1813 llvm::Constant *constantVector[16]; in createConstantVector() local
1817 constantVector[i] = llvm::ConstantInt::get(T(type)->getContainedType(0), constants[i % numConstants]); in createConstantVector()
1820 return V(llvm::ConstantVector::get(llvm::ArrayRef<llvm::Constant *>(constantVector, numElements))); in createConstantVector()
1830 llvm::Constant *constantVector[8]; in createConstantVector() local
1834 constantVector[i] = llvm::ConstantFP::get(T(type)->getContainedType(0), constants[i % numConstants]); in createConstantVector()
1837 return V(llvm::ConstantVector::get(llvm::ArrayRef<llvm::Constant *>(constantVector, numElements))); in createConstantVector()

Completed in 11 milliseconds