HomeSort by relevance Sort by last modified time
    Searched defs:isVector (Results 1 - 23 of 23) sorted by null

  /external/llvm/lib/Target/AMDGPU/
R600InstrInfo.cpp 38 bool R600InstrInfo::isVector(const MachineInstr &MI) const {
158 if (isVector(MI) || isCubeOp(MI.getOpcode()))
902 } else if (isVector(MI)) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineValueType.h 220 /// isVector - Return true if this is a vector value type.
221 bool isVector() const {
310 return isVector() ? getVectorElementType() : *this;
ValueTypes.h 96 if (isVector())
132 /// isVector - Return true if this is a vector value type.
133 bool isVector() const {
134 return isSimple() ? V.isVector() : isExtendedVector();
234 return isVector() ? getVectorElementType() : *this;
240 assert(isVector() && "Invalid vector type!");
249 assert(isVector() && "Invalid vector type!");
282 assert(isInteger() && !isVector() && "Invalid integer type!");
294 assert(isInteger() && !isVector() && "Invalid integer type!");
  /external/mesa3d/src/gallium/drivers/radeon/
R600InstrInfo.cpp 43 bool R600InstrInfo::isVector(const MachineInstr &MI) const
AMDILPeepholeOptimizer.cpp 471 bool isVector = aType->isVectorTy();
478 if (isVector) {
488 if (isVector) {
659 if (isVector) { name += "_v" + itostr(numEle) + "u32"; } else { name += "_u32"; }
711 bool isVector = aType->isVectorTy();
714 if (isVector) {
723 if (isVector) {
751 if (isVector) {
819 if (isVector) {
    [all...]
  /external/parameter-framework/upstream/parameter/
ElementHandle.cpp 155 struct isVector : std::false_type
159 struct isVector<std::vector<T>> : std::true_type
226 if (not checkGetValidity(isVector<T>::value, error)) {
  /system/tools/hidl/
VectorType.cpp 76 bool VectorType::isVector() const {
736 if (mElementType->isVector()) {
Type.cpp 93 bool Type::isVector() const {
  /external/clang/include/clang/AST/
APValue.h 187 bool isVector() const { return Kind == Vector; }
259 assert(isVector() && "Invalid accessor");
267 assert(isVector() && "Invalid accessor");
356 assert(isVector() && "Invalid accessor");
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 181 inline bool isVector() const { return rows()==1 || cols()==1; }
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInstrInfo.cpp 672 bool HexagonMCInstrInfo::isVector(MCInstrInfo const &MCII, MCInst const &MCI) {
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ValueTypes.h 157 /// isVector - Return true if this is a vector value type.
158 bool isVector() const {
183 return isVector() ? getVectorElementType() : *this;
478 /// isVector - Return true if this is a vector value type.
479 bool isVector() const {
480 return isSimple() ? V.isVector() : isExtendedVector();
570 return isVector() ? getVectorElementType() : *this;
576 assert(isVector() && "Invalid vector type!");
585 assert(isVector() && "Invalid vector type!");
614 assert(isInteger() && !isVector() && "Invalid integer type!")
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
Types.h 397 bool isVector() const { return primarySize > 1 && !isMatrix(); }
584 bool isVector() const
608 return array || isMatrix() || isVector();
intermediate.h 322 bool isVector() const { return type.isVector(); }
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
SpvBuilder.h 130 bool isVector(Id resultId) const { return isVectorType(getTypeId(resultId)); }
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
SpvBuilder.h 130 bool isVector(Id resultId) const { return isVectorType(getTypeId(resultId)); }
  /external/llvm/include/llvm/IR/
DebugInfoMetadata.h 583 bool isVector() const { return getFlags() & FlagVector; }
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 175 bool isVector() const { return NumVectors > 0; }
214 assert(isVector());
570 if (isVector())
1036 if (T.isHalf() && T.isVector() && !T.isScalarForMangling())
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 41 static inline bool isVector(MVT::SimpleValueType VT) {
42 return MVT(VT).isVector();
45 return !MVT(VT).isVector();
128 return std::any_of(TypeVec.begin(), TypeVec.end(), isVector);
314 return FillWithPossibleTypes(TP, isVector, "vector");
321 std::not1(std::ptr_fun(isVector))),
401 if (OtherVT.isVector() != Smallest.isVector())
434 if (OtherVT.isVector() != Largest.isVector())
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenDAGPatterns.cpp 35 static inline bool isVector(MVT::SimpleValueType VT) {
36 return EVT(VT).isVector();
39 return !EVT(VT).isVector();
119 if (isVector(TypeVec[i]))
296 return FillWithPossibleTypes(TP, isVector, "vector");
303 if (!isVector(TypeVec[i])) {
528 assert(isVector(TypeVec[i]) && "EnforceVector didn't work");
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
Types.h 1049 bool isVector = false) :
1050 basicType(t), vectorSize(vs), matrixCols(mc), matrixRows(mr), vector1(isVector && vs == 1),
1059 bool isVector = false) :
1060 basicType(t), vectorSize(vs), matrixCols(mc), matrixRows(mr), vector1(isVector && vs == 1),
    [all...]
intermediate.h 634 virtual bool isVector() const { return type.isVector(); }
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 60 unsigned matchRegisterNameAlias(StringRef Name, bool isVector);
179 bool isVector;
906 bool isReg() const override { return Kind == k_Register && !Reg.isVector; }
907 bool isVectorReg() const { return Kind == k_Register && Reg.isVector; }
909 return Kind == k_Register && Reg.isVector &&
914 return Kind == k_Register && !Reg.isVector &&
918 return Kind == k_Register && !Reg.isVector &&
923 return Kind == k_Register && !Reg.isVector &&
929 return Kind == k_Register && !Reg.isVector &&
    [all...]

Completed in 1131 milliseconds