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

  /external/llvm/lib/Target/R600/
R600InstrInfo.cpp 45 bool R600InstrInfo::isVector(const MachineInstr &MI) const {
845 } else if (isVector(*MI)) {
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
Types.h 167 bool isVector() const { return size > 1 && !matrix; }
intermediate.h 261 bool isVector() const { return type.isVector(); }
  /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 160 inline bool isVector() const { return rows()==1 || cols()==1; }
  /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 188 bool isVector() const { return Kind == Vector; }
260 assert(isVector() && "Invalid accessor");
268 assert(isVector() && "Invalid accessor");
357 assert(isVector() && "Invalid accessor");
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 184 /// isVector - Return true if this is a vector value type.
185 bool isVector() const {
255 return isVector() ? getVectorElementType() : *this;
635 /// isVector - Return true if this is a vector value type.
636 bool isVector() const {
637 return isSimple() ? V.isVector() : isExtendedVector();
732 return isVector() ? getVectorElementType() : *this;
738 assert(isVector() && "Invalid vector type!");
747 assert(isVector() && "Invalid vector type!");
776 assert(isInteger() && !isVector() && "Invalid integer type!")
    [all...]
  /external/llvm/include/llvm/
DebugInfo.h 248 bool isVector() const {
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 38 static inline bool isVector(MVT::SimpleValueType VT) {
39 return EVT(VT).isVector();
42 return !EVT(VT).isVector();
127 if (isVector(TypeVec[i]))
320 return FillWithPossibleTypes(TP, isVector, "vector");
327 if (!isVector(TypeVec[i])) {
567 assert(isVector(TypeVec[i]) && "EnforceVector didn't work");
    [all...]

Completed in 246 milliseconds