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

12 3 4

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_unfilled.c 125 /* Unfilled tri:
145 stage->next->tri( stage->next, header );
168 stage->tri = unfilled_tri;
169 stage->tri( stage, header );
179 stage->tri = unfilled_first_tri;
211 unfilled->stage.tri = unfilled_first_tri;
draw_pipe_flatshade.c 109 * Flatshade tri. Required for clipping and when unfilled tris are
126 stage->next->tri( stage->next, &tmp );
144 stage->next->tri( stage->next, &tmp );
206 stage->tri = flatshade_tri_0;
210 stage->tri = flatshade_tri_2;
218 stage->tri( stage, header );
232 stage->tri = flatshade_first_tri;
265 flatshade->stage.tri = flatshade_first_tri;
draw_pipe.h 71 void (*tri)( struct draw_stage *, member in struct:draw_stage
draw_pipe_util.c 54 stage->next->tri(stage->next, header);
draw_pipe_vbuf.c 283 stage->tri = vbuf_tri;
284 stage->tri( stage, prim );
345 /* Reset point/line/tri function pointers.
353 vbuf->stage.tri = vbuf_first_tri;
436 vbuf->stage.tri = vbuf_first_tri;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_flatshade.c 109 * Flatshade tri. Required for clipping and when unfilled tris are
126 stage->next->tri( stage->next, &tmp );
144 stage->next->tri( stage->next, &tmp );
206 stage->tri = flatshade_tri_0;
210 stage->tri = flatshade_tri_2;
218 stage->tri( stage, header );
232 stage->tri = flatshade_first_tri;
265 flatshade->stage.tri = flatshade_first_tri;
draw_pipe.h 71 void (*tri)( struct draw_stage *, member in struct:draw_stage
draw_pipe_util.c 54 stage->next->tri(stage->next, header);
draw_pipe_vbuf.c 283 stage->tri = vbuf_tri;
284 stage->tri( stage, prim );
345 /* Reset point/line/tri function pointers.
353 vbuf->stage.tri = vbuf_first_tri;
436 vbuf->stage.tri = vbuf_first_tri;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 47 const struct lp_rast_triangle *tri,
50 lp_rast_shade_quads_all(task, &tri->inputs, x, y);
59 const struct lp_rast_triangle *tri,
67 block_full_4(task, tri, x + ix, y + iy);
120 arg2.triangle.tri = arg.triangle.tri;
130 arg2.triangle.tri = arg.triangle.tri;
255 const struct lp_rast_triangle *tri = arg.triangle.tri; local
369 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
lp_setup_context.h 194 struct lp_rast_triangle *tri,
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix_MKL.h 72 Map<const MatrixTri, 0, OuterStride<> > tri(_tri,size,size,OuterStride<>(triStride)); \
76 a_tmp = tri.conjugate(); \
127 Map<const MatrixTri, 0, OuterStride<> > tri(_tri,size,size,OuterStride<>(triStride)); \
131 a_tmp = tri.conjugate(); \
TriangularSolverMatrix.h 23 const Scalar* tri, Index triStride,
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
48 const_blas_data_mapper<Scalar, Index, TriStorageOrder> tri(_tri,triStride);
114 Scalar a = (Mode & UnitDiag) ? Scalar(1) : Scalar(1)/conj(tri(i,i));
120 const Scalar* l = &tri(i,s);
132 const Scalar* l = &tri(s,i);
151 pack_lhs(blockA, &tri(startTarget,startBlock), triStride, actualPanelWidth, lengthTarget);
168 pack_lhs(blockA, &tri(i2, IsLower ? k2 : k2-kc), triStride, actual_kc, actual_mc);
  /external/llvm/lib/CodeGen/
Spiller.cpp 59 const TargetRegisterInfo *tri; member in class:__anon23616::SpillerBase
69 tri = mf.getTarget().getRegisterInfo();
137 tri);
150 true, ss, trc, tri);
RegAllocPBQP.cpp 131 const TargetRegisterInfo *tri; member in class:__anon23587::RegAllocPBQP
196 const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo(); local
203 for (unsigned Reg = 1, e = tri->getNumRegs(); Reg != e; ++Reg) {
236 for (MCRegUnitIterator Units(preg, tri); Units.isValid(); ++Units) {
280 addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri);
297 const TargetRegisterInfo *tri) {
307 if (tri->regsOverlap(preg1, preg2)) {
488 DEBUG(dbgs() << "VREG " << PrintReg(vreg, tri) << " -> "
489 << tri->getName(preg) << "\n");
498 DEBUG(dbgs() << "VREG " << PrintReg(vreg, tri) << " -> SPILLED (Cost:
    [all...]
CalcSpillWeights.cpp 63 const TargetRegisterInfo &tri,
89 return tri.getMatchingSuperReg(hreg, sub, rc);
116 const TargetRegisterInfo &tri = *MF.getTarget().getRegisterInfo(); local
165 unsigned hint = copyHint(mi, li.reg, tri, mri);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 47 const struct lp_rast_triangle *tri,
50 lp_rast_shade_quads_all(task, &tri->inputs, x, y);
59 const struct lp_rast_triangle *tri,
67 block_full_4(task, tri, x + ix, y + iy);
120 arg2.triangle.tri = arg.triangle.tri;
130 arg2.triangle.tri = arg.triangle.tri;
255 const struct lp_rast_triangle *tri = arg.triangle.tri; local
369 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
  /external/eigen/test/
product_trmm.cpp 26 TriMatrix mat(rows,cols), tri(rows,cols), triTr(cols,rows);
37 tri = mat.template triangularView<Mode>();
42 VERIFY_IS_APPROX( ge_xs = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
43 VERIFY_IS_APPROX( ge_sx = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
45 VERIFY_IS_APPROX( ge_xs.noalias() = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
46 VERIFY_IS_APPROX( ge_sx.noalias() = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_draw.c 83 rs->stage.tri = nv50_render_tri;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_draw.c 83 rs->stage.tri = nvc0_render_tri;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_draw.c 83 rs->stage.tri = nv50_render_tri;
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_draw.c 83 rs->stage.tri = nvc0_render_tri;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
u_indices_gen.py 119 def tri( intype, outtype, ptr, v0, v1, v2 ): function
135 tri( intype, outtype, ptr, v0, v1, v2 )
138 tri( intype, outtype, ptr, v1, v2, v0 )
140 tri( intype, outtype, ptr, v2, v0, v1 )
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 390 AbstractTriangle tri = (AbstractTriangle) other; local
391 float d = intersects(tri.get1(), tri.get2(), tri.get3());
  /external/llvm/include/llvm/Target/
TargetRegisterInfo.h 431 /// The mask is an array containing (TRI::getNumRegs()+31)/32 entries.
    [all...]

Completed in 1605 milliseconds

12 3 4