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

12 3

  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
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;
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 */
  /external/llvm/lib/IR/
AutoUpgrade.cpp 197 SmallVector<Value *, 1> Elts;
198 Elts.push_back(ConstantInt::get(Type::getInt32Ty(C), 1));
199 MDNode *Node = MDNode::get(C, Elts);
Function.cpp 618 Type *Elts[5];
621 Elts[i] = DecodeFixedType(Infos, Tys, Context);
622 return StructType::get(Context, ArrayRef<Type*>(Elts,D.Struct_NumElements));
  /external/mesa3d/src/mesa/tnl/
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;
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...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/lib/AST/
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/chromium_org/third_party/mesa/src/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)
  /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)
  /external/clang/lib/CodeGen/
CGValue.h 312 static LValue MakeExtVectorElt(llvm::Value *Vec, llvm::Constant *Elts,
317 R.VectorElts = Elts;
CGDebugInfo.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 105 SmallVector<Constant *, 4> Elts;
111 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
114 return ConstantVector::get(Elts);
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 213 Constant *Elts[] = {
217 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_context.h 353 GLuint *Elts;
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
gen_matypes.c 116 OFFSET( "VB_ELTS ", struct vertex_buffer, Elts );
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_context.h 353 GLuint *Elts;
  /external/mesa3d/src/mesa/x86/
gen_matypes.c 116 OFFSET( "VB_ELTS ", struct vertex_buffer, Elts );
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_tritmp.h 638 if (VB->Elts == 0) {
647 GLuint e = VB->Elts[i];
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 127 Type *Elts[] = { JmpBufTy, PointerType::getUnqual(JBLinkTy) };
128 JBLinkTy->setBody(Elts);
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_tritmp.h 638 if (VB->Elts == 0) {
647 GLuint e = VB->Elts[i];
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
intel_tris.c 872 const GLuint * const elt = TNL_CONTEXT(ctx)->vb.Elts; \
893 intelRenderClippedPoly(struct gl_context * ctx, const GLuint * elts, GLuint n)
903 GLuint *tmp = VB->Elts;
904 VB->Elts = (GLuint *) elts;
907 VB->Elts = tmp;
925 intelFastRenderClippedPoly(struct gl_context * ctx, const GLuint * elts, GLuint n)
931 const GLuint *start = (const GLuint *) V(elts[0]);
935 COPY_DWORDS(j, vb, vertsize, V(elts[i - 1]));
936 COPY_DWORDS(j, vb, vertsize, V(elts[i]))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tris.c 872 const GLuint * const elt = TNL_CONTEXT(ctx)->vb.Elts; \
893 intelRenderClippedPoly(struct gl_context * ctx, const GLuint * elts, GLuint n)
903 GLuint *tmp = VB->Elts;
904 VB->Elts = (GLuint *) elts;
907 VB->Elts = tmp;
925 intelFastRenderClippedPoly(struct gl_context * ctx, const GLuint * elts, GLuint n)
931 const GLuint *start = (const GLuint *) V(elts[0]);
935 COPY_DWORDS(j, vb, vertsize, V(elts[i - 1]));
936 COPY_DWORDS(j, vb, vertsize, V(elts[i]))
    [all...]

Completed in 543 milliseconds

12 3