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

  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 96 if (isVector())
127 /// isVector - Return true if this is a vector value type.
128 bool isVector() const {
129 return isSimple() ? V.isVector() : isExtendedVector();
229 return isVector() ? getVectorElementType() : *this;
235 assert(isVector() && "Invalid vector type!");
244 assert(isVector() && "Invalid vector type!");
277 assert(isInteger() && !isVector() && "Invalid integer type!");
289 assert(isInteger() && !isVector() && "Invalid integer type!");
MachineValueType.h 213 /// isVector - Return true if this is a vector value type.
214 bool isVector() const {
303 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/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)) {
  /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 163 inline bool isVector() const { return rows()==1 || cols()==1; }
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCInstrInfo.cpp 557 bool HexagonMCInstrInfo::isVector(MCInstrInfo const &MCII, MCInst const &MCI) {
  /external/llvm/lib/Target/AMDGPU/
R600InstrInfo.cpp 42 bool R600InstrInfo::isVector(const MachineInstr &MI) const {
164 if (isVector(*MI) || isCubeOp(MI->getOpcode()))
913 } else if (isVector(*MI)) {
    [all...]
  /external/opencv3/modules/ts/src/
ts_perf.cpp 294 bool Regression::isVector(cv::InputArray a)
402 if (isVector(array))
457 if (isVector(array))
    [all...]
  /external/llvm/include/llvm/IR/
DebugInfoMetadata.h 576 bool isVector() const { return getFlags() & FlagVector; }
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 173 bool isVector() const { return NumVectors > 0; }
212 assert(isVector());
568 if (isVector())
1034 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/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 60 unsigned matchRegisterNameAlias(StringRef Name, bool isVector);
177 bool isVector;
920 bool isReg() const override { return Kind == k_Register && !Reg.isVector; }
921 bool isVectorReg() const { return Kind == k_Register && Reg.isVector; }
923 return Kind == k_Register && Reg.isVector &&
928 return Kind == k_Register && !Reg.isVector &&
932 return Kind == k_Register && !Reg.isVector &&
937 return Kind == k_Register && !Reg.isVector &&
943 return Kind == k_Register && !Reg.isVector &&
    [all...]

Completed in 1339 milliseconds