Searched defs:tri (Results 1 - 25 of 37) sorted by relevance

12

/external/eigen/doc/snippets/
H A DTridiagonalization_compute.cpp1 Tridiagonalization<MatrixXf> tri; variable
4 tri.compute(A);
6 cout << tri.matrixT() << endl;
7 tri.compute(2*A); // re-use tri to compute eigenvalues of 2A
9 cout << tri.matrixT() << endl;
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.h60 CoalescerPair(const TargetRegisterInfo &tri) argument
61 : TRI(tri), DstReg(0), SrcReg(0), DstIdx(0), SrcIdx(0),
67 const TargetRegisterInfo &tri)
68 : TRI(tri), DstReg(PhysReg), SrcReg(VirtReg), DstIdx(0), SrcIdx(0),
66 CoalescerPair(unsigned VirtReg, unsigned PhysReg, const TargetRegisterInfo &tri) argument
H A DInterferenceCache.cpp47 const TargetRegisterInfo *tri) {
50 TRI = tri;
43 init(MachineFunction *mf, LiveIntervalUnion *liuarray, SlotIndexes *indexes, LiveIntervals *lis, const TargetRegisterInfo *tri) argument
H A DCalcSpillWeights.cpp45 const TargetRegisterInfo &tri,
71 return tri.getMatchingSuperReg(hreg, sub, rc);
98 const TargetRegisterInfo &tri = *MF.getSubtarget().getRegisterInfo(); local
151 unsigned hint = copyHint(mi, li.reg, tri, mri);
44 copyHint(const MachineInstr *mi, unsigned reg, const TargetRegisterInfo &tri, const MachineRegisterInfo &mri) argument
H A DLiveRangeEdit.cpp150 const TargetRegisterInfo &tri,
153 TII.reMaterialize(MBB, MI, DestReg, 0, RM.OrigMI, tri);
146 rematerializeAt(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI, unsigned DestReg, const Remat &RM, const TargetRegisterInfo &tri, bool Late) argument
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe.h71 void (*tri)( struct draw_stage *, member in struct:draw_stage
H A Ddraw_pipe_wide_line.c65 struct prim_header tri; local
139 tri.det = header->det; /* only the sign matters */
140 tri.v[0] = v0;
141 tri.v[1] = v2;
142 tri.v[2] = v3;
143 stage->next->tri( stage->next, &tri );
145 tri.v[0] = v0;
146 tri.v[1] = v3;
147 tri
[all...]
H A Ddraw_pipe_wide_point.c129 struct prim_header tri; local
179 tri.det = header->det; /* only the sign matters */
180 tri.v[0] = v0;
181 tri.v[1] = v2;
182 tri.v[2] = v3;
183 stage->next->tri( stage->next, &tri );
185 tri.v[0] = v0;
186 tri.v[1] = v3;
187 tri
[all...]
H A Ddraw_pipe_aapoint.c583 struct prim_header tri; local
666 tri.v[0] = v[0];
667 tri.v[1] = v[1];
668 tri.v[2] = v[2];
669 stage->next->tri( stage->next, &tri );
671 tri.v[0] = v[0];
672 tri.v[1] = v[2];
673 tri.v[2] = v[3];
674 stage->next->tri( stag
[all...]
H A Ddraw_pipe_aaline.c560 struct prim_header tri; local
651 tri.v[0] = v[2]; tri.v[1] = v[1]; tri.v[2] = v[0];
652 stage->next->tri( stage->next, &tri );
654 tri.v[0] = v[3]; tri.v[1] = v[1]; tri.v[2] = v[2];
655 stage->next->tri( stag
[all...]
/external/mesa3d/src/gallium/auxiliary/indices/
H A Du_indices_gen.py119 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/skia/gm/
H A Dconvexpolyeffect.cpp99 SkPath tri; variable
100 tri.moveTo(5.f, 5.f);
101 tri.lineTo(100.f, 20.f);
102 tri.lineTo(15.f, 100.f);
104 fPaths.addToTail(tri);
105 fPaths.addToTail(SkPath())->reverseAddPath(tri); variable
107 tri.close();
108 fPaths.addToTail(tri);
H A Dconvexpolyclip.cpp96 SkPath tri; variable
97 tri.moveTo(5.f, 5.f);
98 tri.lineTo(100.f, 20.f);
99 tri.lineTo(15.f, 100.f);
101 fClips.addToTail()->setPath(tri); variable
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h237 triangular_solve_retval(const TriangularType& tri, const Rhs& rhs) argument
238 : m_triangularMatrix(tri), m_rhs(rhs)
/external/eigen/Eigen/src/Core/products/
H A DTriangularSolverMatrix.h23 const Scalar* tri, Index triStride,
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
55 const_blas_data_mapper<Scalar, Index, TriStorageOrder> tri(_tri,triStride);
121 Scalar a = (Mode & UnitDiag) ? Scalar(1) : Scalar(1)/conj(tri(i,i));
127 const Scalar* l = &tri(i,s);
139 const Scalar* l = &tri(s,i);
158 pack_lhs(blockA, &tri(startTarget,startBlock), triStride, actualPanelWidth, lengthTarget);
175 pack_lhs(blockA, &tri(i2, IsLower ? k2 : k2-kc), triStride, actual_kc, actual_mc);
21 run( Index size, Index cols, const Scalar* tri, Index triStride, Scalar* _other, Index otherStride, level3_blocking<Scalar,Scalar>& blocking) argument
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DSweepSphere.java109 private boolean isPointInTriangle(Vector3f point, AbstractTriangle tri) { argument
110 if (pointsOnSameSide(point, tri.get1(), tri.get2(), tri.get3())
111 && pointsOnSameSide(point, tri.get2(), tri.get1(), tri.get3())
112 && pointsOnSameSide(point, tri.get3(), tri.get1(), tri
198 collideWithTriangle(AbstractTriangle tri) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DTempVars.java176 public final Vector3f[] tri = {new Vector3f(), field in class:TempVars
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast_debug.c180 const struct lp_rast_triangle *tri = arg.triangle.tri; local
182 const struct lp_rast_plane *tri_plane = GET_PLANES(tri);
189 if (tri->inputs.disable) {
H A Dlp_rast_tri_tmp.h44 const struct lp_rast_triangle *tri,
61 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask);
70 const struct lp_rast_triangle *tri,
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
145 block_full_4(task, tri, px, py);
158 const struct lp_rast_triangle *tri = arg.triangle.tri; local
160 const struct lp_rast_plane *tri_plane = GET_PLANES(tri);
167 if (tri->inputs.disable) {
232 TAG(do_block_16)(task, tri, plan
43 do_block_4(struct lp_rasterizer_task *task, const struct lp_rast_triangle *tri, const struct lp_rast_plane *plane, int x, int y, const int *c) argument
69 do_block_16(struct lp_rasterizer_task *task, const struct lp_rast_triangle *tri, const struct lp_rast_plane *plane, int x, int y, const int *c) argument
260 const struct lp_rast_triangle *tri = arg.triangle.tri; local
333 const struct lp_rast_triangle *tri = arg.triangle.tri; local
[all...]
H A Dlp_rast.h127 #define GET_PLANES(tri) ((struct lp_rast_plane *)((char *)(&(tri)->inputs + 1) + 3 * (tri)->inputs.stride))
151 const struct lp_rast_triangle *tri; member in struct:lp_rast_cmd_arg::__anon12056
181 arg.triangle.tri = triangle;
197 arg.triangle.tri = triangle;
H A Dlp_rast_tri.c47 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
46 block_full_4(struct lp_rasterizer_task *task, const struct lp_rast_triangle *tri, int x, int y) argument
58 block_full_16(struct lp_rasterizer_task *task, const struct lp_rast_triangle *tri, int x, int y) argument
369 const struct lp_rast_triangle *tri = arg.triangle.tri; local
[all...]
/external/toybox/kconfig/
H A Dsymbol.c126 prop->visible.tri = expr_calc_value(prop->visible.expr);
127 if (prop->visible.tri != no)
138 prop->visible.tri = expr_calc_value(prop->visible.expr);
139 if (prop->visible.tri != no)
197 tristate tri; local
200 tri = no;
202 prop->visible.tri = expr_calc_value(prop->visible.expr);
203 tri = E_OR(tri, prop->visible.tri);
[all...]
/external/deqp/modules/egl/
H A DteglGLES2SharingTests.cpp452 bool tri = yf >= xf; local
453 deUint8 a = m_buffer[i*4 + (tri ? 1 : 3)];
454 deUint8 b = m_buffer[i*4 + (tri ? 2 : 0)];
455 deUint8 c = m_buffer[i*4 + (tri ? 0 : 2)];
456 float s = tri ? xf : 1.0f-xf;
457 float t = tri ? 1.0f-yf : yf;
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DMesh.java785 * @param tri The triangle to store the positions in
787 public void getTriangle(int index, Triangle tri){ argument
788 getTriangle(index, tri.get1(), tri.get2(), tri.get3());
789 tri.setIndex(index);
790 tri.setNormal(null);
/external/llvm/include/llvm/Target/
H A DTargetRegisterInfo.h938 explicit PrintReg(unsigned reg, const TargetRegisterInfo *tri = nullptr,
940 : TRI(tri), Reg(reg), SubIdx(subidx) {}
963 PrintRegUnit(unsigned unit, const TargetRegisterInfo *tri) argument
964 : TRI(tri), Unit(unit) {}
977 PrintVRegOrUnit(unsigned VRegOrUnit, const TargetRegisterInfo *tri) argument
978 : PrintRegUnit(VRegOrUnit, tri) {}

Completed in 508 milliseconds

12