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

1 2 3 4 5

  /external/eigen/doc/snippets/
Tridiagonalization_compute.cpp 1 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/
RegisterCoalescer.h 29 const TargetRegisterInfo &TRI;
60 CoalescerPair(const TargetRegisterInfo &tri)
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),
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMHazardRecognizer.h 28 const ARMBaseRegisterInfo &TRI;
39 const ARMBaseRegisterInfo &tri,
43 TRI(tri), STI(sti), LastMI(0), ITBlockSize(0) {}
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 65 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.v[2] = v1
    [all...]
draw_pipe_wide_point.c 133 struct prim_header tri; local
183 tri.det = header->det; /* only the sign matters */
184 tri.v[0] = v0;
185 tri.v[1] = v2;
186 tri.v[2] = v3;
187 stage->next->tri( stage->next, &tri );
189 tri.v[0] = v0;
190 tri.v[1] = v3;
191 tri.v[2] = v1
    [all...]
draw_pipe_twoside.c 74 /* Twoside tri:
93 stage->next->tri( stage->next, &tmp );
96 stage->next->tri( stage->next, header );
137 stage->tri = twoside_tri;
138 stage->tri( stage, header );
144 stage->tri = twoside_first_tri;
176 twoside->stage.tri = twoside_first_tri;
draw_pipe_aaline.c 534 struct prim_header tri; local
625 tri.v[0] = v[2]; tri.v[1] = v[1]; tri.v[2] = v[0];
626 stage->next->tri( stage->next, &tri );
628 tri.v[0] = v[3]; tri.v[1] = v[1]; tri.v[2] = v[2];
629 stage->next->tri( stage->next, &tri )
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterCoalescer.h 30 const TargetRegisterInfo &TRI;
59 CoalescerPair(const TargetInstrInfo &tii, const TargetRegisterInfo &tri)
60 : TII(tii), TRI(tri), DstReg(0), SrcReg(0), SubIdx(0),
CalcSpillWeights.cpp 60 const TargetRegisterInfo &tri,
86 return tri.getMatchingSuperReg(hreg, sub, rc);
91 const TargetRegisterInfo &tri = *MF.getTarget().getRegisterInfo(); local
141 unsigned hint = copyHint(mi, li.reg, tri, mri);
  /external/swiftshader/src/OpenGL/libGLESv2/
IndexDataManager.cpp 118 for(GLsizei tri = 0; tri < numTriangles; ++tri)
122 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex + bytesPerIndex);
133 for(GLsizei tri = 0; tri < numTriangles; ++tri)
135 if(tri & 1) // Reverse odd triangles
137 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex);
139 memcpy(outPtr, inPtr + ((tri + 0) * bytesPerIndex), bytesPerIndex)
    [all...]
  /external/testng/src/main/java/org/testng/junit/
JUnitTestRunner.java 91 TestRunInfo tri= m_tests.get(test); local
92 if(null != tri) {
93 tri.setThrowable(t);
102 TestRunInfo tri= m_tests.get(test); local
103 if(null == tri) {
107 org.testng.internal.TestResult tr= recordResults(test, tri);
117 private org.testng.internal.TestResult recordResults(Test test, TestRunInfo tri) {
124 tri.m_failure,
125 tri.m_start,
129 if(tri.isFailure()) {
    [all...]
  /external/toybox/kconfig/
symbol.c 126 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...]
lkc_proto.h 27 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
28 P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri_tmp.h 44 const struct lp_rast_triangle *tri,
67 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask);
76 const struct lp_rast_triangle *tri,
152 TAG(do_block_4)(task, tri, plane, px, py, cx);
167 block_full_4(task, tri, px, py);
180 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) {
233 * (in which case the tri will not get binned), or trivial accept fo
333 const struct lp_rast_triangle *tri = arg.triangle.tri; local
406 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
lp_setup_tri.c 95 struct lp_rast_triangle *tri; local
103 tri = lp_scene_alloc_aligned( scene, *tri_size, 16 );
104 if (!tri)
107 tri->inputs.stride = input_array_sz;
110 char *a = (char *)tri;
111 char *b = (char *)&GET_PLANES(tri)[nr_planes];
115 return tri;
277 struct lp_rast_triangle *tri; local
348 * edges if the bounding box of the tri is fully inside that edge.
357 tri = lp_setup_alloc_triangle(scene
    [all...]
lp_rast.h 155 #define GET_PLANES(tri) ((struct lp_rast_plane *)((char *)(&(tri)->inputs + 1) + 3 * (tri)->inputs.stride))
176 const struct lp_rast_triangle *tri; member in struct:lp_rast_cmd_arg::__anon29603
206 arg.triangle.tri = triangle;
222 arg.triangle.tri = triangle;
lp_rast_tri.c 43 const struct lp_rast_triangle *tri,
46 lp_rast_shade_quads_all(task, &tri->inputs, x, y);
55 const struct lp_rast_triangle *tri,
63 block_full_4(task, tri, x + ix, y + iy);
114 arg2.triangle.tri = arg.triangle.tri;
131 arg2.triangle.tri = arg.triangle.tri;
244 const struct lp_rast_triangle *tri = arg.triangle.tri; local
357 const struct lp_rast_triangle *tri = arg.triangle.tri; local
528 const struct lp_rast_triangle *tri = arg.triangle.tri; local
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
binner.cpp 62 /// @param tri: simdvector[3] of FP triangle verts
63 /// @param vXi: fixed point X coords of tri verts
64 /// @param vYi: fixed point Y coords of tri verts
65 INLINE static void FPToFixedPoint(const simdvector * const tri, simdscalari(&vXi)[3], simdscalari(&vYi)[3])
67 vXi[0] = fpToFixedPointVertical(tri[0].x);
68 vYi[0] = fpToFixedPointVertical(tri[0].y);
69 vXi[1] = fpToFixedPointVertical(tri[1].x);
70 vYi[1] = fpToFixedPointVertical(tri[1].y);
71 vXi[2] = fpToFixedPointVertical(tri[2].x);
72 vYi[2] = fpToFixedPointVertical(tri[2].y)
    [all...]
  /external/ksoap2/kobjects/org/ksoap2/kobjects/base64/
Base64.java 142 int tri = local
148 os.write((tri >> 16) & 255);
151 os.write((tri >> 8) & 255);
154 os.write(tri & 255);
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_raster.c 63 const struct ilo_state_raster_tri_info *tri = &info->tri; local
91 dw1 |= tri->front_winding << GEN7_CLIP_DW1_FRONT_WINDING__SHIFT |
92 tri->cull_mode << GEN7_CLIP_DW1_CULL_MODE__SHIFT;
223 const struct ilo_state_raster_tri_info *tri = &info->tri; local
233 if (tri->fill_mode_front != GEN6_FILLMODE_SOLID ||
234 tri->fill_mode_back != GEN6_FILLMODE_SOLID)
306 const struct ilo_state_raster_tri_info *tri = &info->tri; local
496 const struct ilo_state_raster_tri_info *tri = &info->tri; local
705 const struct ilo_state_raster_tri_info *tri = &info->tri; local
766 const struct ilo_state_raster_tri_info *tri = &info->tri; local
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
ViewMatrix.java 224 private void calcLook(TriData tri, float[] voxelDim, int w, int h) {
228 for (int i = 0; i < tri.mVert.length; i += 3) {
229 maxx = Math.max(tri.mVert[i], maxx);
230 minx = Math.min(tri.mVert[i], minx);
231 maxy = Math.max(tri.mVert[i + 1], maxy);
232 miny = Math.min(tri.mVert[i + 1], miny);
233 maxz = Math.max(tri.mVert[i + 2], maxz);
234 minz = Math.min(tri.mVert[i + 2], minz);
261 public void look(char dir, TriData tri, float[] voxelDim, int w, int h) {
262 calcLook(tri, w, h);
    [all...]
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix_BLAS.h 70 Map<const MatrixTri, 0, OuterStride<> > tri(_tri,size,size,OuterStride<>(triStride)); \
74 a_tmp = tri.conjugate(); \
123 Map<const MatrixTri, 0, OuterStride<> > tri(_tri,size,size,OuterStride<>(triStride)); \
127 a_tmp = tri.conjugate(); \
  /external/skia/gm/
convexpolyeffect.cpp 125 SkPath tri; variable
126 tri.moveTo(5.f, 5.f);
127 tri.lineTo(100.f, 20.f);
128 tri.lineTo(15.f, 100.f);
130 fPaths.addToTail(tri);
131 fPaths.addToTail(SkPath())->reverseAddPath(tri); variable
133 tri.close();
134 fPaths.addToTail(tri);
  /external/skqp/gm/
convexpolyeffect.cpp 125 SkPath tri; variable
126 tri.moveTo(5.f, 5.f);
127 tri.lineTo(100.f, 20.f);
128 tri.lineTo(15.f, 100.f);
130 fPaths.addToTail(tri);
131 fPaths.addToTail(SkPath())->reverseAddPath(tri); variable
133 tri.close();
134 fPaths.addToTail(tri);
  /external/eigen/test/
product_trmm.cpp 32 TriMatrix mat(rows,cols), tri(rows,cols), triTr(cols,rows);
43 tri = mat.template triangularView<Mode>();
48 VERIFY_IS_APPROX( ge_xs = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
49 VERIFY_IS_APPROX( ge_sx = ge_left * mat.template triangularView<Mode>(), ge_left * tri);
51 VERIFY_IS_APPROX( ge_xs.noalias() = mat.template triangularView<Mode>() * ge_right, tri * ge_right);
52 VERIFY_IS_APPROX( ge_sx.noalias() = ge_left * mat.template triangularView<Mode>(), ge_left * tri);

Completed in 550 milliseconds

1 2 3 4 5