HomeSort by relevance Sort by last modified time
    Searched refs:NumElements (Results 26 - 50 of 66) sorted by null

12 3

  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 604 uint64_t NumElements = AT->getNumElements();
610 if (Idx->getZExtValue() >= NumElements)
623 uint64_t NumElements;
625 NumElements = SubArrayTy->getNumElements();
627 NumElements = SubVectorTy->getNumElements();
635 if (!IdxVal || IdxVal->getZExtValue() >= NumElements)
704 unsigned NumElements = 0;
706 NumElements = ATy->getNumElements();
708 NumElements = cast<VectorType>(STy)->getNumElements();
710 if (NumElements > 16 && GV->hasNUsesOrMore(16)
    [all...]
  /external/clang/lib/AST/
Type.cpp 78 const llvm::APInt &NumElements) {
88 return NumElements.getActiveBits() + llvm::Log2_64(ElementSize);
93 if ((ElementSize >> 32) == 0 && NumElements.getBitWidth() <= 64 &&
94 (NumElements.getZExtValue() >> 32) == 0) {
95 uint64_t TotalSize = NumElements.getZExtValue() * ElementSize;
100 llvm::APSInt SizeExtended(NumElements, true);
180 VectorTypeBits.NumElements = nElements;
192 VectorTypeBits.NumElements = nElements;
    [all...]
Expr.cpp     [all...]
RecordLayoutBuilder.cpp 417 uint64_t NumElements = Context.getConstantArrayElementCount(AT);
419 for (uint64_t I = 0; I != NumElements; ++I) {
519 uint64_t NumElements = Context.getConstantArrayElementCount(AT);
522 for (uint64_t I = 0; I != NumElements; ++I) {
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 555 llvm::Value *&numElements,
574 // We multiply the size of all dimensions for NumElements.
575 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
576 numElements = CGF.EmitScalarExpr(e->getArraySize());
577 assert(isa<llvm::IntegerType>(numElements->getType()));
588 = cast<llvm::IntegerType>(numElements->getType());
609 dyn_cast<llvm::ConstantInt>(numElements)) {
618 // We want to do all this arithmetic in size_t. If numElements is
633 // Scale numElements by that. This might overflow, but we don't
636 numElements = llvm::ConstantInt::get(CGF.SizeTy
    [all...]
CGCXXABI.cpp 158 llvm::Value *NumElements,
187 llvm::Value *&numElements,
197 numElements = 0;
205 numElements = readArrayCookieImpl(CGF, allocPtr, cookieSize);
ItaniumCXXABI.cpp 159 llvm::Value *NumElements,
199 llvm::Value *NumElements,
    [all...]
CodeGenModule.cpp     [all...]
  /external/chromium_org/v8/src/
utils.h 955 template<typename ElementType, int NumElements>
960 int length() const { return NumElements; }
971 ElementType elems_[NumElements];
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 494 unsigned NumElements = Cond.getValueType().getVectorNumElements();
495 EVT VCondTy = EVT::getVectorVT(*DAG.getContext(), MVT::i1, NumElements / 2);
499 DAG.getConstant(NumElements / 2, TLI.getVectorIdxTy()));
LegalizeTypes.cpp     [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/v8/src/
utils.h 833 template<typename ElementType, int NumElements>
838 int length() { return NumElements; }
845 ElementType elems_[NumElements];
  /external/ceres-solver/internal/ceres/
solver_impl.cc     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3dapi/
d3d11.idl     [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
d3d11.idl     [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 889 unsigned NumElements =
892 for (unsigned i = 0; i < NumElements; i++) {
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 483 unsigned NumElements = NumInits;
487 NumElements = CAType->getSize().getZExtValue();
492 NumElements = VType->getNumElements();
499 for (unsigned Init = 0; Init != NumElements; ++Init) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 117 Value *NumElements = // See if the array size is a decomposable linear expr.
128 Amt = NumElements;
132 Amt = AllocaBuilder.CreateMul(Amt, NumElements);
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 926 unsigned NumElements = Record[Idx++];
927 assert(NumElements == E->getNumElements() && "Wrong number of elements");
929 for (unsigned I = 0, N = NumElements; I != N; ++I)
937 unsigned NumElements = Record[Idx++];
938 assert(NumElements == E->getNumElements() && "Wrong number of elements");
943 for (unsigned I = 0; I != NumElements; ++I) {
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp     [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]

Completed in 315 milliseconds

12 3