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

1 2 3

  /external/llvm/include/llvm/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);
  /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/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...]
  /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/IR/
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...]
AutoUpgrade.cpp 396 SmallVector<Metadata *, 1> Elts;
397 Elts.push_back(
399 MDNode *Node = MDNode::get(C, Elts);
    [all...]
  /external/llvm/include/llvm/ADT/
TinyPtrVector.h 106 explicit TinyPtrVector(ArrayRef<EltTy> Elts)
107 : Val(Elts.size() == 1 ? PtrUnion(Elts[0])
108 : PtrUnion(new VecTy(Elts.begin(), Elts.end()))) {}
  /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...]
  /external/llvm/include/llvm/IR/
Constants.h 698 static Constant *get(LLVMContext &Context, ArrayRef<uint8_t> Elts);
699 static Constant *get(LLVMContext &Context, ArrayRef<uint16_t> Elts);
700 static Constant *get(LLVMContext &Context, ArrayRef<uint32_t> Elts);
701 static Constant *get(LLVMContext &Context, ArrayRef<uint64_t> Elts);
702 static Constant *get(LLVMContext &Context, ArrayRef<float> Elts);
703 static Constant *get(LLVMContext &Context, ArrayRef<double> Elts);
710 static Constant *getFP(LLVMContext &Context, ArrayRef<uint16_t> Elts);
711 static Constant *getFP(LLVMContext &Context, ArrayRef<uint32_t> Elts);
712 static Constant *getFP(LLVMContext &Context, ArrayRef<uint64_t> Elts);
759 static Constant *get(LLVMContext &Context, ArrayRef<uint8_t> 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...]
t_draw.c 333 /* Translate indices to GLuints and store in VB->Elts.
346 VB->Elts = NULL;
364 VB->Elts = (GLuint *) ptr;
367 GLuint *elts = (GLuint *)get_space(ctx, ib->count * sizeof(GLuint)); local
368 VB->Elts = elts;
373 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
378 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
383 *elts++ = (GLuint)(*in++) + VB->Primitive[0].basevertex;
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 102 uint64_t Elts = 0;
104 Elts = CArrTy->getSize().getZExtValue();
105 if (Elts == 0)
113 visitRecord(RT->getDecl(), Elts);
  /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/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/llvm/lib/AsmParser/
LLParser.cpp     [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/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.buffer)->Elts,
DeclObjC.cpp 27 void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) {
29 if (Elts == 0) return; // Setting to an empty list is a noop.
32 List = new (Ctx) void*[Elts];
33 NumElts = Elts;
34 memcpy(List, InList, sizeof(void*)*Elts);
37 void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts,
39 if (Elts == 0)
42 Locations = new (Ctx) SourceLocation[Elts];
43 memcpy(Locations, Locs, sizeof(SourceLocation) * Elts);
44 set(InList, Elts, Ctx)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
InstCombineVectorOps.cpp 32 // If all elts are the same, we can extract it and use any of the values.
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.c 111 #define GET_MESA_ELTS() TNL_CONTEXT(ctx)->vb.Elts
114 /* Don't really know how many elts will fit in what's left of cmdbuf,
322 rendering code may decide convert to elts.
326 const GLuint elts = ELTS_BUFSZ(nr_aos) * elt_count; local
329 if ( (!VB->Elts && VB->Primitive[i].count >= MAX_CONVERSION_SIZE)
330 || vbuf > index + elts)
333 space_required += index + elts;
475 if (VB->Elts)

Completed in 1109 milliseconds

1 2 3