/external/toybox/kconfig/ |
D | symbol.c | 126 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_default_prop() 127 if (prop->visible.tri != no) in sym_get_default_prop() 138 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_range_prop() 139 if (prop->visible.tri != no) in sym_get_range_prop() 197 tristate tri; in sym_calc_visibility() local 200 tri = no; in sym_calc_visibility() 202 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_calc_visibility() 203 tri = E_OR(tri, prop->visible.tri); in sym_calc_visibility() 205 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no)) in sym_calc_visibility() 206 tri = yes; in sym_calc_visibility() [all …]
|
D | confdata.c | 152 sym->def[def].tri = no; in conf_read_simple() 189 sym->def[def].tri = no; in conf_read_simple() 229 sym->def[def].tri = mod; in conf_read_simple() 235 sym->def[def].tri = yes; in conf_read_simple() 240 sym->def[def].tri = no; in conf_read_simple() 291 switch (sym->def[def].tri) { in conf_read_simple() 295 if (cs->def[def].tri == yes) { in conf_read_simple() 301 if (cs->def[def].tri != no) { in conf_read_simple() 308 cs->def[def].tri = E_OR(cs->def[def].tri, sym->def[def].tri); in conf_read_simple() 339 if (sym->def[S_DEF_USER].tri != sym_get_tristate_value(sym)) in conf_read() [all …]
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_wide_line.c | 65 struct prim_header tri; in wideline_line() local 139 tri.det = header->det; /* only the sign matters */ in wideline_line() 140 tri.v[0] = v0; in wideline_line() 141 tri.v[1] = v2; in wideline_line() 142 tri.v[2] = v3; in wideline_line() 143 stage->next->tri( stage->next, &tri ); in wideline_line() 145 tri.v[0] = v0; in wideline_line() 146 tri.v[1] = v3; in wideline_line() 147 tri.v[2] = v1; in wideline_line() 148 stage->next->tri( stage->next, &tri ); in wideline_line() [all …]
|
D | draw_pipe_wide_point.c | 129 struct prim_header tri; in widepoint_point() local 179 tri.det = header->det; /* only the sign matters */ in widepoint_point() 180 tri.v[0] = v0; in widepoint_point() 181 tri.v[1] = v2; in widepoint_point() 182 tri.v[2] = v3; in widepoint_point() 183 stage->next->tri( stage->next, &tri ); in widepoint_point() 185 tri.v[0] = v0; in widepoint_point() 186 tri.v[1] = v3; in widepoint_point() 187 tri.v[2] = v1; in widepoint_point() 188 stage->next->tri( stage->next, &tri ); in widepoint_point() [all …]
|
D | draw_pipe_aaline.c | 560 struct prim_header tri; in aaline_line() local 651 tri.v[0] = v[2]; tri.v[1] = v[1]; tri.v[2] = v[0]; in aaline_line() 652 stage->next->tri( stage->next, &tri ); in aaline_line() 654 tri.v[0] = v[3]; tri.v[1] = v[1]; tri.v[2] = v[2]; in aaline_line() 655 stage->next->tri( stage->next, &tri ); in aaline_line() 657 tri.v[0] = v[4]; tri.v[1] = v[3]; tri.v[2] = v[2]; in aaline_line() 658 stage->next->tri( stage->next, &tri ); in aaline_line() 660 tri.v[0] = v[5]; tri.v[1] = v[3]; tri.v[2] = v[4]; in aaline_line() 661 stage->next->tri( stage->next, &tri ); in aaline_line() 663 tri.v[0] = v[6]; tri.v[1] = v[5]; tri.v[2] = v[4]; in aaline_line() [all …]
|
D | draw_pipe_twoside.c | 93 stage->next->tri( stage->next, &tmp ); in twoside_tri() 96 stage->next->tri( stage->next, header ); in twoside_tri() 137 stage->tri = twoside_tri; in twoside_first_tri() 138 stage->tri( stage, header ); in twoside_first_tri() 144 stage->tri = twoside_first_tri; in twoside_flush() 176 twoside->stage.tri = twoside_first_tri; in draw_twoside_stage()
|
D | draw_pipe_cull.c | 84 stage->next->tri( stage->next, header ); in cull_tri() 98 stage->tri = cull_tri; in cull_first_tri() 99 stage->tri( stage, header ); in cull_first_tri() 105 stage->tri = cull_first_tri; in cull_flush() 137 cull->stage.tri = cull_first_tri; in draw_cull_stage()
|
D | draw_pipe_flatshade.c | 126 stage->next->tri( stage->next, &tmp ); in flatshade_tri_0() 144 stage->next->tri( stage->next, &tmp ); in flatshade_tri_2() 206 stage->tri = flatshade_tri_0; in flatshade_init_state() 210 stage->tri = flatshade_tri_2; in flatshade_init_state() 218 stage->tri( stage, header ); in flatshade_first_tri() 232 stage->tri = flatshade_first_tri; in flatshade_flush() 265 flatshade->stage.tri = flatshade_first_tri; in draw_flatshade_stage()
|
D | draw_pipe_offset.c | 106 stage->next->tri( stage->next, header ); in do_offset_tri() 135 stage->tri = offset_tri; in offset_first_tri() 136 stage->tri( stage, header ); in offset_first_tri() 145 stage->tri = offset_first_tri; in offset_flush() 177 offset->stage.tri = offset_first_tri; in draw_offset_stage()
|
D | draw_pipe_unfilled.c | 145 stage->next->tri( stage->next, header ); in unfilled_tri() 168 stage->tri = unfilled_tri; in unfilled_first_tri() 169 stage->tri( stage, header ); in unfilled_first_tri() 179 stage->tri = unfilled_first_tri; in unfilled_flush() 211 unfilled->stage.tri = unfilled_first_tri; in draw_unfilled_stage()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast_tri_tmp.h | 44 const struct lp_rast_triangle *tri, in TAG() 61 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask); in TAG() 70 const struct lp_rast_triangle *tri, in TAG() 130 TAG(do_block_4)(task, tri, plane, px, py, cx); in TAG() 145 block_full_4(task, tri, px, py); in TAG() 158 const struct lp_rast_triangle *tri = arg.triangle.tri; in TAG() local 160 const struct lp_rast_plane *tri_plane = GET_PLANES(tri); in TAG() 167 if (tri->inputs.disable) { in TAG() 232 TAG(do_block_16)(task, tri, plane, px, py, cx); in TAG() 247 block_full_16(task, tri, px, py); in TAG() [all …]
|
D | lp_setup_tri.c | 89 struct lp_rast_triangle *tri; in lp_setup_alloc_triangle() local 95 tri = lp_scene_alloc_aligned( scene, *tri_size, 16 ); in lp_setup_alloc_triangle() 96 if (tri == NULL) in lp_setup_alloc_triangle() 99 tri->inputs.stride = input_array_sz; in lp_setup_alloc_triangle() 102 char *a = (char *)tri; in lp_setup_alloc_triangle() 103 char *b = (char *)&GET_PLANES(tri)[nr_planes]; in lp_setup_alloc_triangle() 107 return tri; in lp_setup_alloc_triangle() 244 struct lp_rast_triangle *tri; in do_triangle_ccw() local 301 tri = lp_setup_alloc_triangle(scene, in do_triangle_ccw() 305 if (!tri) in do_triangle_ccw() [all …]
|
D | lp_rast_tri.c | 47 const struct lp_rast_triangle *tri, in block_full_4() argument 50 lp_rast_shade_quads_all(task, &tri->inputs, x, y); in block_full_4() 59 const struct lp_rast_triangle *tri, in block_full_16() argument 67 block_full_4(task, tri, x + ix, y + iy); in block_full_16() 120 arg2.triangle.tri = arg.triangle.tri; in lp_rast_triangle_3_16() 130 arg2.triangle.tri = arg.triangle.tri; in lp_rast_triangle_4_16() 255 const struct lp_rast_triangle *tri = arg.triangle.tri; in lp_rast_triangle_3_16() local 256 const struct lp_rast_plane *plane = GET_PLANES(tri); in lp_rast_triangle_3_16() 355 &tri->inputs, in lp_rast_triangle_3_16() 369 const struct lp_rast_triangle *tri = arg.triangle.tri; in lp_rast_triangle_3_4() local [all …]
|
D | lp_rast.h | 127 #define GET_PLANES(tri) ((struct lp_rast_plane *)((char *)(&(tri)->inputs + 1) + 3 * (tri)->inputs.… argument 151 const struct lp_rast_triangle *tri; member 181 arg.triangle.tri = triangle; in lp_rast_arg_triangle() 197 arg.triangle.tri = triangle; in lp_rast_arg_triangle_contained()
|
/external/eigen/doc/snippets/ |
D | 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/jmonkeyengine/engine/src/core/com/jme3/collision/ |
D | SweepSphere.java | 109 private boolean isPointInTriangle(Vector3f point, AbstractTriangle tri) { in isPointInTriangle() argument 110 if (pointsOnSameSide(point, tri.get1(), tri.get2(), tri.get3()) in isPointInTriangle() 111 && pointsOnSameSide(point, tri.get2(), tri.get1(), tri.get3()) in isPointInTriangle() 112 && pointsOnSameSide(point, tri.get3(), tri.get1(), tri.get2())) in isPointInTriangle() 198 private CollisionResult collideWithTriangle(AbstractTriangle tri){ in collideWithTriangle() argument 200 scaledTri.get1().set(tri.get1()).multLocal(invDim); in collideWithTriangle() 201 scaledTri.get2().set(tri.get2()).multLocal(invDim); in collideWithTriangle() 202 scaledTri.get3().set(tri.get3()).multLocal(invDim); in collideWithTriangle() 419 AbstractTriangle tri = (AbstractTriangle) other; in collideWith() local 420 CollisionResult result = collideWithTriangle(tri); in collideWith()
|
/external/deqp/modules/gles2/functional/ |
D | es2fRasterizationTests.cpp | 1330 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local 1331 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles() 1332 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles() 1333 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles() 1335 outTriangles.push_back(tri); in extractTriangles() 1351 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local 1352 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles() 1353 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles() 1354 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles() 1356 outTriangles.push_back(tri); in extractTriangles() [all …]
|
/external/llvm/lib/CodeGen/ |
D | RegisterCoalescer.h | 60 CoalescerPair(const TargetRegisterInfo &tri) in CoalescerPair() argument 61 : TRI(tri), DstReg(0), SrcReg(0), DstIdx(0), SrcIdx(0), in CoalescerPair() 67 const TargetRegisterInfo &tri) in CoalescerPair() argument 68 : TRI(tri), DstReg(PhysReg), SrcReg(VirtReg), DstIdx(0), SrcIdx(0), in CoalescerPair()
|
/external/deqp/modules/gles3/functional/ |
D | es3fRasterizationTests.cpp | 1607 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local 1608 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles() 1609 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles() 1610 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles() 1612 outTriangles.push_back(tri); in extractTriangles() 1628 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local 1629 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles() 1630 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles() 1631 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles() 1633 outTriangles.push_back(tri); in extractTriangles() [all …]
|
/external/skia/gm/ |
D | convexpolyeffect.cpp | 99 SkPath tri; in onOnceBeforeDraw() local 100 tri.moveTo(5.f, 5.f); in onOnceBeforeDraw() 101 tri.lineTo(100.f, 20.f); in onOnceBeforeDraw() 102 tri.lineTo(15.f, 100.f); in onOnceBeforeDraw() 104 fPaths.addToTail(tri); in onOnceBeforeDraw() 105 fPaths.addToTail(SkPath())->reverseAddPath(tri); in onOnceBeforeDraw() 107 tri.close(); in onOnceBeforeDraw() 108 fPaths.addToTail(tri); in onOnceBeforeDraw()
|
D | multipicturedraw.cpp | 144 SkPath tri; in make_tri_path() local 145 tri.moveTo(originX, originY); in make_tri_path() 146 tri.rLineTo(SkScalarHalf(kTriSide), 1.5f * kTriSide / kRoot3); in make_tri_path() 147 tri.rLineTo(-kTriSide, 0); in make_tri_path() 148 tri.close(); in make_tri_path() 149 return tri; in make_tri_path() 153 SkPath tri = make_tri_path(SkScalarHalf(kTriSide), 0); in make_tri_picture() local 170 SkRect r = tri.getBounds(); in make_tri_picture() 175 canvas->drawPath(tri, fill); in make_tri_picture() 176 canvas->drawPath(tri, stroke); in make_tri_picture() [all …]
|
/external/mesa3d/src/gallium/drivers/trace/ |
D | README | 16 GALLIUM_TRACE=tri.trace trivial/tri 18 which should create a tri.trace file, which is an XML file. You can view copying 24 src/gallium/tools/trace/dump.py tri.trace | less -R
|
/external/ksoap2/kobjects/org/ksoap2/kobjects/base64/ |
D | Base64.java | 142 int tri = in decode() local 148 os.write((tri >> 16) & 255); in decode() 151 os.write((tri >> 8) & 255); in decode() 154 os.write(tri & 255); in decode()
|
/external/mesa3d/src/gallium/tests/graw/ |
D | SConscript | 30 'tri', 31 'tri-gs', 32 'tri-instanced',
|
/external/eigen/test/ |
D | product_trmm.cpp | 24 TriMatrix mat(rows,cols), tri(rows,cols), triTr(cols,rows); in trmm() local 35 tri = mat.template triangularView<Mode>(); in trmm() 40 VERIFY_IS_APPROX( ge_xs = mat.template triangularView<Mode>() * ge_right, tri * ge_right); in trmm() 41 VERIFY_IS_APPROX( ge_sx = ge_left * mat.template triangularView<Mode>(), ge_left * tri); in trmm() 43 …VERIFY_IS_APPROX( ge_xs.noalias() = mat.template triangularView<Mode>() * ge_right, tri * ge_right… in trmm() 44 VERIFY_IS_APPROX( ge_sx.noalias() = ge_left * mat.template triangularView<Mode>(), ge_left * tri); in trmm()
|