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

  /external/llvm/lib/Target/R600/
R600InstrInfo.cpp 44 bool R600InstrInfo::isVector(const MachineInstr &MI) const {
170 if (isVector(*MI) || isCubeOp(MI->getOpcode()))
923 } else if (isVector(*MI)) {
    [all...]
  /external/chromium_org/third_party/mesa/src/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/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 163 inline bool isVector() const { return rows()==1 || cols()==1; }
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 115 /// isVector - Return true if this is a vector value type.
116 bool isVector() const {
117 return isSimple() ? V.isVector() : isExtendedVector();
212 return isVector() ? getVectorElementType() : *this;
218 assert(isVector() && "Invalid vector type!");
227 assert(isVector() && "Invalid vector type!");
260 assert(isInteger() && !isVector() && "Invalid integer type!");
272 assert(isInteger() && !isVector() && "Invalid integer type!");
MachineValueType.h 184 /// isVector - Return true if this is a vector value type.
185 bool isVector() const {
261 return isVector() ? getVectorElementType() : *this;
  /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/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/chromium_org/third_party/angle/src/compiler/translator/
Types.h 355 bool isVector() const
558 bool isVector() const
582 return array || isMatrix() || isVector();
intermediate.h 290 bool isVector() const { return type.isVector(); }
  /external/llvm/include/llvm/IR/
DebugInfo.h 330 bool isVector() const { return (getFlags() & FlagVector) != 0; }
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 170 bool isVector() const { return NumVectors > 0; }
201 assert(isVector());
557 if (isVector())
1015 if (T.isHalf() && T.isVector() && !T.isScalarForMangling())
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 40 static inline bool isVector(MVT::SimpleValueType VT) {
41 return MVT(VT).isVector();
44 return !MVT(VT).isVector();
137 if (isVector(TypeVec[i]))
330 return FillWithPossibleTypes(TP, isVector, "vector");
337 if (!isVector(TypeVec[i])) {
394 if (isConcrete() && isVector(getConcrete())) {
402 assert(isVector(Other.TypeVec[i]) && "EnforceVector didn't work");
415 } else if (Other.isConcrete() && isVector(Other.getConcrete())) {
423 assert(isVector(TypeVec[i]) && "EnforceVector didn't work")
    [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 62 unsigned matchRegisterNameAlias(StringRef Name, bool isVector);
174 bool isVector;
880 bool isReg() const override { return Kind == k_Register && !Reg.isVector; }
881 bool isVectorReg() const { return Kind == k_Register && Reg.isVector; }
883 return Kind == k_Register && Reg.isVector &&
888 return Kind == k_Register && !Reg.isVector &&
893 return Kind == k_Register && !Reg.isVector &&
    [all...]

Completed in 218 milliseconds