HomeSort by relevance Sort by last modified time
    Searched refs:NumElts (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 67 unsigned NumElts = VT.getVectorNumElements();
71 unsigned NumLaneElts = NumElts / NumLanes;
73 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
77 if (Base >= NumLaneElts) Base += NumElts - NumLaneElts;
87 unsigned NumElts = VT.getVectorNumElements();
90 unsigned NumLaneElts = NumElts / NumLanes;
93 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
104 unsigned NumElts = VT.getVectorNumElements();
106 for (unsigned l = 0; l != NumElts; l += 8) {
120 unsigned NumElts = VT.getVectorNumElements()
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 141 unsigned NumElts = ReadVBR(6);
142 for (unsigned i = 0; i != NumElts; ++i)
162 unsigned NumElts = ReadVBR(6);
169 for (; NumElts; --NumElts)
176 unsigned NumElts = ReadVBR(6);
180 size_t NewEnd = GetCurrentBitNo()+((NumElts+3)&~3)*8;
199 unsigned NumElts = ReadVBR(6);
200 for (unsigned i = 0; i != NumElts; ++i)
231 unsigned NumElts = ReadVBR(6)
    [all...]
  /external/llvm/lib/Transforms/Utils/
CtorUtils.cpp 49 size_t NumElts = StructTy->getNumElements();
50 if (NumElts > 2)
53 ConstantStruct::get(StructTy, makeArrayRef(CSVals, NumElts)));
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 83 unsigned NumElts = CDS->getNumElements();
84 assert(NumElts != 0 && "Can't have an empty CDS");
86 if (CDS->getElementAsInteger(NumElts-1) != 0)
90 for (unsigned i = 0; i != NumElts-1; ++i)
  /external/clang/include/clang/AST/
APValue.h 82 unsigned NumElts;
83 Vec() : Elts(nullptr), NumElts(0) {}
88 unsigned NumElts, ArrSize;
89 Arr(unsigned NumElts, unsigned ArrSize);
268 return ((const Vec*)(const void *)Data.buffer)->NumElts;
292 return ((const Arr*)(const void *)Data.buffer)->NumElts;
358 ((Vec*)(char*)Data.buffer)->NumElts = N;
DeclObjC.h 41 unsigned NumElts;
44 ObjCListBase() : List(nullptr), NumElts(0) {}
45 unsigned size() const { return NumElts; }
46 bool empty() const { return NumElts == 0; }
66 iterator end() const { return (iterator)List+NumElts; }
69 assert(Idx < NumElts && "Invalid access");
    [all...]
  /external/llvm/include/llvm/IR/
DerivedTypes.h 408 unsigned NumElts = VTy->getNumElements();
409 assert ((NumElts & 1) == 0 &&
411 return VectorType::get(VTy->getElementType(), NumElts/2);
419 unsigned NumElts = VTy->getNumElements();
420 return VectorType::get(VTy->getElementType(), NumElts*2);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 346 unsigned NumElts = 2;
350 NumElts);
354 NumElts = N->getValueType(0).getVectorNumElements();
359 IntegerToVector(N->getOperand(0), NumElts, Ops, NVT.getVectorElementType());
362 makeArrayRef(Ops.data(), NumElts));
373 unsigned NumElts = VecVT.getVectorNumElements();
384 NewElts.reserve(NumElts*2);
386 for (unsigned i = 0; i < NumElts; ++i) {
413 unsigned NumElts = VecVT.getVectorNumElements();
425 EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewEVT, NumElts*2)
    [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/include/llvm/ADT/
SmallString.h 45 void assign(size_t NumElts, char Elt) {
46 this->SmallVectorImpl<char>::assign(NumElts, Elt);
SmallVector.h 442 void assign(unsigned NumElts, const T &Elt) {
444 if (this->capacity() < NumElts)
445 this->grow(NumElts);
446 this->setEnd(this->begin()+NumElts);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 333 unsigned NumElts = V->getType()->getVectorNumElements();
336 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
341 for (unsigned i = 0; i != NumElts; ++i)
347 for (unsigned i = 0; i != NumElts; ++i)
349 i+NumElts));
384 Mask[InsertedIdx % NumElts] =
389 Mask[InsertedIdx % NumElts] =
418 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
421 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
427 Mask.assign(NumElts, ConstantInt::get(Type::getInt32Ty(V->getContext()),0))
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 751 unsigned NumElts = ObjectVT.getVectorNumElements();
761 if (NumElts == 1) {
775 } else if (NumElts == 2) {
    [all...]
NVPTXISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/clang/lib/AST/
APValue.cpp 108 APValue::Arr::Arr(unsigned NumElts, unsigned Size) :
109 Elts(new APValue[NumElts + (NumElts != Size ? 1 : 0)]),
110 NumElts(NumElts), ArrSize(Size) {}
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 52 unsigned NumElts = DstTy->getNumElements();
53 if (NumElts != CV->getType()->getVectorNumElements())
60 for (unsigned i = 0; i != NumElts; ++i) {
    [all...]
DataLayout.cpp 508 int NumElts = Ty->getNumElements();
510 (StructLayout *)malloc(sizeof(StructLayout)+(NumElts-1) * sizeof(uint64_t));
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]

Completed in 1441 milliseconds

1 2 3