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

1 2 3

  /external/llvm/utils/TableGen/
SetTheory.h 75 /// in Elts.
76 virtual void apply(SetTheory&, DagInit *Expr, RecSet &Elts,
88 virtual void expand(SetTheory&, Record*, RecSet &Elts) =0;
115 /// dag Elts = d;
123 /// evaluate - Evaluate Expr and append the resulting set to Elts.
124 void evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc);
126 /// evaluate - Evaluate a sequence of Inits and append to Elts.
128 void evaluate(Iter begin, Iter end, RecSet &Elts, ArrayRef<SMLoc> Loc) {
130 evaluate(*begin++, Elts, Loc);
SetTheory.cpp 30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
31 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
37 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
46 Elts.insert(*I);
52 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
61 Elts.insert(*I);
69 RecSet &Elts, ArrayRef<SMLoc> Loc) =0;
71 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
81 apply2(ST, Expr, Set, II->getValue(), Elts, Loc);
89 RecSet &Elts, ArrayRef<SMLoc> Loc)
    [all...]
TableGen.cpp 159 const std::vector<Record*> *Elts = Sets.expand(Recs[i]);
160 assert(Elts && "Couldn't expand Set instance");
161 for (unsigned ei = 0, ee = Elts->size(); ei != ee; ++ei)
162 OS << ' ' << (*Elts)[ei]->getName();
  /external/llvm/lib/IR/
DIBuilder.cpp 110 Value *Elts[] = {
126 MDNode *CUNode = MDNode::get(VMContext, Elts);
141 Value *Elts[] = {
147 R = MDNode::get(C, Elts);
149 Value *Elts[] = {
156 R = MDNode::get(C, Elts);
182 Value *Elts[] = {
188 DIImportedEntity M(MDNode::get(VMContext, Elts));
197 Value *Elts[] = {
201 return DIFile(MDNode::get(VMContext, Elts));
    [all...]
Constants.cpp 774 SmallVector<uint8_t, 16> Elts;
777 Elts.push_back(CI->getZExtValue());
780 if (Elts.size() == V.size())
781 return ConstantDataArray::get(C->getContext(), Elts);
783 SmallVector<uint16_t, 16> Elts;
786 Elts.push_back(CI->getZExtValue());
789 if (Elts.size() == V.size())
790 return ConstantDataArray::get(C->getContext(), Elts);
792 SmallVector<uint32_t, 16> Elts;
795 Elts.push_back(CI->getZExtValue())
    [all...]
DebugInfo.cpp 813 SmallVector<Value *, 16> Elts;
816 i == 7 ? Elts.push_back(InlinedScope) :
817 Elts.push_back(DV->getOperand(i));
818 return DIVariable(MDNode::get(VMContext, Elts));
823 SmallVector<Value *, 16> Elts;
827 Elts.push_back(Constant::getNullValue(Type::getInt32Ty(VMContext))):
828 Elts.push_back(DV->getOperand(i));
829 return DIVariable(MDNode::get(VMContext, Elts));
    [all...]
DebugLoc.cpp 109 Value *Elts[] = {
113 return MDNode::get(Ctx2, Elts);
  /external/clang/include/clang/AST/
APValue.h 81 APValue *Elts;
83 Vec() : Elts(0), NumElts(0) {}
84 ~Vec() { delete[] Elts; }
87 APValue *Elts;
93 APValue *Elts;
262 return ((Vec*)(char*)Data)->Elts[I];
275 return ((Arr*)(char*)Data)->Elts[I];
286 return ((Arr*)(char*)Data)->Elts[getArrayInitializedElts()];
310 return ((StructData*)(char*)Data)->Elts[i];
314 return ((StructData*)(char*)Data)->Elts[getStructNumBases() + i]
    [all...]
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 83 SmallVector<Value*, 4> Elts;
84 Elts.reserve(MD->getNumOperands());
88 Elts.push_back(0);
95 Elts.push_back(Mapped_Op);
98 MDNode *NewMD = MDNode::get(V->getContext(), Elts);
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_render.c 121 const GLuint * const elt = VB->Elts; \
139 /* Elts, with the possibility of clipping.
147 /* TODO: do this for all primitives, verts and elts:
157 const GLuint * const elt = VB->Elts;
211 const GLuint * const elt = VB->Elts; \
226 /* Elts, no clipping.
238 void _tnl_RenderClippedPolygon( struct gl_context *ctx, const GLuint *elts, GLuint n )
242 GLuint *tmp = VB->Elts;
244 VB->Elts = (GLuint *)elts;
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_render.c 121 const GLuint * const elt = VB->Elts; \
139 /* Elts, with the possibility of clipping.
147 /* TODO: do this for all primitives, verts and elts:
157 const GLuint * const elt = VB->Elts;
211 const GLuint * const elt = VB->Elts; \
226 /* Elts, no clipping.
238 void _tnl_RenderClippedPolygon( struct gl_context *ctx, const GLuint *elts, GLuint n )
242 GLuint *tmp = VB->Elts;
244 VB->Elts = (GLuint *)elts;
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp 579 SmallVector<Value *, 16> Elts;
585 ParseMDNodeVector(Elts, NULL) ||
589 MDNode *Init = MDNode::get(Context, Elts);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_dmatmp.h 76 static void *TAG(emit_elts)( struct gl_context *ctx, GLuint *elts, GLuint nr,
83 for ( i = 0 ; i+1 < nr ; i+=2, elts += 2 ) {
84 EMIT_TWO_ELTS( 0, elts[0], elts[1] );
89 EMIT_ELT( 0, elts[0] );
500 /* Vertices won't fit in a single buffer or elts not
679 * Render elts using hardware indexed verts *
692 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
703 TAG(emit_elts)( ctx, elts+j, nr, ALLOC_ELTS(nr) )
724 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
761 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
795 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
864 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
900 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
937 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
975 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1015 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1081 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1104 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_dmatmp.h 76 static void *TAG(emit_elts)( struct gl_context *ctx, GLuint *elts, GLuint nr,
83 for ( i = 0 ; i+1 < nr ; i+=2, elts += 2 ) {
84 EMIT_TWO_ELTS( 0, elts[0], elts[1] );
89 EMIT_ELT( 0, elts[0] );
500 /* Vertices won't fit in a single buffer or elts not
679 * Render elts using hardware indexed verts *
692 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
703 TAG(emit_elts)( ctx, elts+j, nr, ALLOC_ELTS(nr) )
724 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
761 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
795 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
864 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
900 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
937 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
975 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1015 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1081 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
1104 GLuint *elts = TNL_CONTEXT(ctx)->vb.Elts; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
ss_triangle.c 219 if (VB->Elts) {
221 if (VB->ClipMask[VB->Elts[i]] == 0)
222 _swrast_Point( ctx, &verts[VB->Elts[i]] );
  /external/llvm/include/llvm/IR/
Constants.h 662 static Constant *get(LLVMContext &Context, ArrayRef<uint8_t> Elts);
663 static Constant *get(LLVMContext &Context, ArrayRef<uint16_t> Elts);
664 static Constant *get(LLVMContext &Context, ArrayRef<uint32_t> Elts);
665 static Constant *get(LLVMContext &Context, ArrayRef<uint64_t> Elts);
666 static Constant *get(LLVMContext &Context, ArrayRef<float> Elts);
667 static Constant *get(LLVMContext &Context, ArrayRef<double> Elts);
714 static Constant *get(LLVMContext &Context, ArrayRef<uint8_t> Elts);
715 static Constant *get(LLVMContext &Context, ArrayRef<uint16_t> Elts);
716 static Constant *get(LLVMContext &Context, ArrayRef<uint32_t> Elts);
717 static Constant *get(LLVMContext &Context, ArrayRef<uint64_t> Elts);
    [all...]
  /external/mesa3d/src/mesa/swrast_setup/
ss_triangle.c 219 if (VB->Elts) {
221 if (VB->ClipMask[VB->Elts[i]] == 0)
222 _swrast_Point( ctx, &verts[VB->Elts[i]] );
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tcl.c 114 #define GET_MESA_ELTS() rmesa->tcl.Elts
117 /* Don't really know how many elts will fit in what's left of cmdbuf,
322 rendering code may decide convert to elts.
325 const GLuint elts = ELTS_BUFSZ(nr_aos); local
330 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE)
331 || vbuf > index + elts)
334 space_required += index + elts;
402 rmesa->tcl.Elts = VB->Elts;
413 if (rmesa->tcl.Elts)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tcl.c 114 #define GET_MESA_ELTS() rmesa->tcl.Elts
117 /* Don't really know how many elts will fit in what's left of cmdbuf,
322 rendering code may decide convert to elts.
325 const GLuint elts = ELTS_BUFSZ(nr_aos); local
330 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE)
331 || vbuf > index + elts)
334 space_required += index + elts;
402 rmesa->tcl.Elts = VB->Elts;
413 if (rmesa->tcl.Elts)
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 635 SmallVector<llvm::Constant*, 2> Elts;
637 Elts.push_back(C);
648 Elts.push_back(llvm::UndefValue::get(Ty));
654 return llvm::ConstantStruct::get(STy, Elts);
756 std::vector<llvm::Constant*> Elts;
757 Elts.reserve(NumInitableElts + NumElements);
766 Elts.push_back(C);
779 Elts.resize(NumElements, fillC);
785 for (unsigned i = 0, e = Elts.size(); i < e; ++i)
786 Types.push_back(Elts[i]->getType())
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 508 std::vector<Constant*> Elts;
509 Elts.reserve(Src.size());
525 Elts.push_back(CV);
528 ArrayType::get(Elts.front()->getType(), (uint64_t)Elts.size());
529 Holder = ConstantArray::get(ArrTy, Elts);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 27 // If all elts are the same, we can extract it and use any of the values.
782 SmallVector<Constant*, 16> Elts;
785 Elts.push_back(UndefValue::get(Type::getInt32Ty(SVI.getContext())));
792 Elts.push_back(UndefValue::get(Type::getInt32Ty(SVI.getContext())));
795 Elts.push_back(ConstantInt::get(Type::getInt32Ty(SVI.getContext()),
801 SVI.setOperand(2, ConstantVector::get(Elts));
    [all...]
InstCombineSimplifyDemanded.cpp     [all...]
  /external/clang/lib/AST/
APValue.cpp 109 Elts(new APValue[NumElts + (NumElts != Size ? 1 : 0)]),
111 APValue::Arr::~Arr() { delete [] Elts; }
114 Elts(new APValue[NumBases+NumFields]),
117 delete [] Elts;
139 setVector(((const Vec *)(const char *)RHS.Data)->Elts,

Completed in 993 milliseconds

1 2 3