HomeSort by relevance Sort by last modified time
    Searched defs:Elts (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/utils/TableGen/
TableGen.cpp 160 const std::vector<Record*> *Elts = Sets.expand(Rec);
161 assert(Elts && "Couldn't expand Set instance");
162 for (Record *Elt : *Elts)
  /external/llvm/lib/TableGen/
SetTheory.cpp 30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
32 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
38 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
48 Elts.insert(*I);
54 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
64 Elts.insert(*I);
71 RecSet &Elts, ArrayRef<SMLoc> Loc) = 0;
73 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
84 apply2(ST, Expr, Set, II->getValue(), Elts, Loc);
91 RecSet &Elts, ArrayRef<SMLoc> Loc) override
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 234 Constant *Elts[] = {
238 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
  /external/clang/include/clang/AST/
APValue.h 81 APValue *Elts;
83 Vec() : Elts(nullptr), NumElts(0) {}
84 ~Vec() { delete[] Elts; }
87 APValue *Elts;
93 APValue *Elts;
261 return ((Vec*)(char*)Data.buffer)->Elts[I];
274 return ((Arr*)(char*)Data.buffer)->Elts[I];
285 return ((Arr*)(char*)Data.buffer)->Elts[getArrayInitializedElts()];
309 return ((StructData*)(char*)Data.buffer)->Elts[i];
313 return ((StructData*)(char*)Data.buffer)->Elts[getStructNumBases() + i]
    [all...]
DeclObjC.h 49 void set(void *const* InList, unsigned Elts, ASTContext &Ctx);
60 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) {
61 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx);
88 void set(ObjCProtocolDecl* const* InList, unsigned Elts,
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 396 SmallVector<Metadata *, 1> Elts;
397 Elts.push_back(
399 MDNode *Node = MDNode::get(C, Elts);
    [all...]
DIBuilder.cpp 556 SmallVector<llvm::Metadata *, 16> Elts;
559 Elts.push_back(DITypeRef::get(cast<DIType>(Elements[i])));
561 Elts.push_back(Elements[i]);
563 return DITypeRefArray(MDNode::get(VMContext, Elts));
    [all...]
Function.cpp 779 Type *Elts[5];
782 Elts[i] = DecodeFixedType(Infos, Tys, Context);
783 return StructType::get(Context, makeArrayRef(Elts,D.Struct_NumElements));
    [all...]
Constants.cpp 864 SmallVector<ElementTy, 16> Elts;
867 Elts.push_back(CI->getZExtValue());
870 return SequentialTy::get(V[0]->getContext(), Elts);
877 SmallVector<ElementTy, 16> Elts;
880 Elts.push_back(CFP->getValueAPF().bitcastToAPInt().getLimitedValue());
883 return SequentialTy::getFP(V[0]->getContext(), Elts);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineMulDivRem.cpp 121 SmallVector<Constant *, 4> Elts;
127 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
130 return ConstantVector::get(Elts);
    [all...]
InstCombineVectorOps.cpp 32 // If all elts are the same, we can extract it and use any of the values.
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 655 SmallVector<llvm::Constant*, 2> Elts;
657 Elts.push_back(C);
668 Elts.push_back(llvm::UndefValue::get(Ty));
674 return llvm::ConstantStruct::get(STy, Elts);
793 std::vector<llvm::Constant*> Elts;
794 Elts.reserve(NumInitableElts + NumElements);
803 Elts.push_back(C);
807 Elts.resize(NumElements, fillC);
813 for (unsigned i = 0, e = Elts.size(); i < e; ++i)
814 Types.push_back(Elts[i]->getType())
    [all...]
CGDebugInfo.cpp     [all...]
CodeGenModule.cpp     [all...]
  /external/llvm/lib/Linker/
IRMover.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.h 207 GLuint *Elts;
447 void (*ClippedPolygon)( struct gl_context *ctx, const GLuint *elts, GLuint n );
448 /* Render a polygon with <n> vertices whose indexes are in the <elts>
455 tnl_points_func Points; /* must now respect vb->elts */
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_context.h 353 GLuint *Elts;
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]

Completed in 919 milliseconds

1 2