Home
last modified time | relevance | path

Searched refs:tri (Results 1 – 25 of 171) sorted by relevance

1234567

/third_party/toybox/kconfig/
Dsymbol.c128 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_default_prop()
129 if (prop->visible.tri != no) in sym_get_default_prop()
140 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_range_prop()
141 if (prop->visible.tri != no) in sym_get_range_prop()
199 tristate tri; in sym_calc_visibility() local
202 tri = no; in sym_calc_visibility()
204 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_calc_visibility()
205 tri = E_OR(tri, prop->visible.tri); in sym_calc_visibility()
207 if (tri == mod && (sym->type != S_TRISTATE || modules_val == no)) in sym_calc_visibility()
208 tri = yes; in sym_calc_visibility()
[all …]
Dconfdata.c152 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 …]
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_wide_line.c54 struct prim_header tri; in wideline_line() local
128 tri.det = header->det; /* only the sign matters */ in wideline_line()
129 tri.v[0] = v0; in wideline_line()
130 tri.v[1] = v2; in wideline_line()
131 tri.v[2] = v3; in wideline_line()
132 stage->next->tri( stage->next, &tri ); in wideline_line()
134 tri.v[0] = v0; in wideline_line()
135 tri.v[1] = v3; in wideline_line()
136 tri.v[2] = v1; in wideline_line()
137 stage->next->tri( stage->next, &tri ); in wideline_line()
[all …]
Ddraw_pipe_wide_point.c133 struct prim_header tri; in widepoint_point() local
183 tri.det = header->det; /* only the sign matters */ in widepoint_point()
184 tri.v[0] = v0; in widepoint_point()
185 tri.v[1] = v2; in widepoint_point()
186 tri.v[2] = v3; in widepoint_point()
187 stage->next->tri( stage->next, &tri ); in widepoint_point()
189 tri.v[0] = v0; in widepoint_point()
190 tri.v[1] = v3; in widepoint_point()
191 tri.v[2] = v1; in widepoint_point()
192 stage->next->tri( stage->next, &tri ); in widepoint_point()
[all …]
Ddraw_pipe_cull.c89 stage->next->tri( stage->next, header ); in cull_tri()
99 stage->next->tri( stage->next, header ); in cull_tri()
113 stage->tri = cull_tri; in cull_first_tri()
114 stage->tri( stage, header ); in cull_first_tri()
120 stage->tri = cull_first_tri; in cull_flush()
152 cull->stage.tri = cull_first_tri; in draw_cull_stage()
Ddraw_pipe_twoside.c93 stage->next->tri( stage->next, &tmp ); in twoside_tri()
96 stage->next->tri( stage->next, header ); in twoside_tri()
140 stage->tri = twoside_tri; in twoside_first_tri()
141 stage->tri( stage, header ); in twoside_first_tri()
147 stage->tri = twoside_first_tri; in twoside_flush()
179 twoside->stage.tri = twoside_first_tri; in draw_twoside_stage()
Ddraw_pipe_aaline.c379 struct prim_header tri; in aaline_line() local
475 tri.v[0] = v[2]; tri.v[1] = v[1]; tri.v[2] = v[0]; in aaline_line()
476 stage->next->tri(stage->next, &tri); in aaline_line()
478 tri.v[0] = v[3]; tri.v[1] = v[1]; tri.v[2] = v[2]; in aaline_line()
479 stage->next->tri(stage->next, &tri); in aaline_line()
591 aaline->stage.tri = draw_pipe_passthrough_tri; in draw_aaline_stage()
Ddraw_pipe_flatshade.c107 stage->next->tri( stage->next, &tmp ); in flatshade_tri_0()
125 stage->next->tri( stage->next, &tmp ); in flatshade_tri_2()
264 stage->tri = flatshade_tri_0; in flatshade_init_state()
268 stage->tri = flatshade_tri_2; in flatshade_init_state()
276 stage->tri( stage, header ); in flatshade_first_tri()
290 stage->tri = flatshade_first_tri; in flatshade_flush()
323 flatshade->stage.tri = flatshade_first_tri; in draw_flatshade_stage()
Ddraw_pipe_aapoint.c474 struct prim_header tri; in aapoint_point() local
557 tri.v[0] = v[0]; in aapoint_point()
558 tri.v[1] = v[1]; in aapoint_point()
559 tri.v[2] = v[2]; in aapoint_point()
560 stage->next->tri( stage->next, &tri ); in aapoint_point()
562 tri.v[0] = v[0]; in aapoint_point()
563 tri.v[1] = v[2]; in aapoint_point()
564 tri.v[2] = v[3]; in aapoint_point()
565 stage->next->tri( stage->next, &tri ); in aapoint_point()
703 aapoint->stage.tri = draw_pipe_passthrough_tri; in draw_aapoint_stage()
Ddraw_pipe_offset.c127 stage->next->tri( stage->next, header ); in do_offset_tri()
200 stage->tri = offset_tri; in offset_first_tri()
201 stage->tri( stage, header ); in offset_first_tri()
210 stage->tri = offset_first_tri; in offset_flush()
242 offset->stage.tri = offset_first_tri; in draw_offset_stage()
Ddraw_pipe_unfilled.c197 stage->next->tri( stage->next, header ); in unfilled_tri()
220 stage->tri = unfilled_tri; in unfilled_first_tri()
221 stage->tri( stage, header ); in unfilled_first_tri()
231 stage->tri = unfilled_first_tri; in unfilled_flush()
286 unfilled->stage.tri = unfilled_first_tri; in draw_unfilled_stage()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DIndexDataManager.cpp118 for(GLsizei tri = 0; tri < numTriangles; ++tri) in copyIndices() local
122 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex + bytesPerIndex); in copyIndices()
133 for(GLsizei tri = 0; tri < numTriangles; ++tri) in copyIndices() local
135 if(tri & 1) // Reverse odd triangles in copyIndices()
137 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex); in copyIndices()
139 memcpy(outPtr, inPtr + ((tri + 0) * bytesPerIndex), bytesPerIndex); in copyIndices()
141 memcpy(outPtr, inPtr + ((tri + 2) * bytesPerIndex), bytesPerIndex); in copyIndices()
147 memcpy(outPtr, inPtr + (tri * bytesPerIndex), numBytes); in copyIndices()
166 for(GLsizei tri = 0; tri < (numLines - 1); ++tri) in copyIndices() local
168 memcpy(outPtr, inPtr + tri * bytesPerIndex, bytesPerLine); in copyIndices()
[all …]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_rast_tri_tmp.h44 const struct lp_rast_triangle *tri, in TAG()
87 lp_rast_shade_quads_mask_sample(task, &tri->inputs, x, y, mask); in TAG()
97 const struct lp_rast_triangle *tri, in TAG()
171 TAG(do_block_4)(task, tri, plane, px, py, cx); in TAG()
186 block_full_4(task, tri, px, py); in TAG()
199 const struct lp_rast_triangle *tri = arg.triangle.tri; in TAG() local
201 const struct lp_rast_plane *tri_plane = GET_PLANES(tri); in TAG()
208 if (tri->inputs.disable) { in TAG()
326 TAG(do_block_16)(task, tri, plane, px, py, cx); in TAG()
341 block_full_16(task, tri, px, py); in TAG()
[all …]
Dlp_setup_tri.c98 struct lp_rast_triangle *tri = lp_scene_alloc_aligned(scene, *tri_size, 16); in lp_setup_alloc_triangle() local
99 if (!tri) in lp_setup_alloc_triangle()
102 tri->inputs.stride = input_array_sz; in lp_setup_alloc_triangle()
105 ASSERTED char *a = (char *)tri; in lp_setup_alloc_triangle()
106 ASSERTED char *b = (char *)&GET_PLANES(tri)[nr_planes]; in lp_setup_alloc_triangle()
111 return tri; in lp_setup_alloc_triangle()
349 struct lp_rast_triangle *tri = in do_triangle_ccw() local
351 if (!tri) in do_triangle_ccw()
355 tri->v[0][0] = v0[0][0]; in do_triangle_ccw()
356 tri->v[1][0] = v1[0][0]; in do_triangle_ccw()
[all …]
Dlp_rast_tri.c43 const struct lp_rast_triangle *tri, in block_full_4() argument
46 lp_rast_shade_quads_all(task, &tri->inputs, x, y); in block_full_4()
55 const struct lp_rast_triangle *tri, in block_full_16() argument
62 block_full_4(task, tri, x + ix, y + iy); in block_full_16()
113 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()
140 arg2.triangle.tri = arg.triangle.tri; in lp_rast_triangle_ms_3_16()
157 arg2.triangle.tri = arg.triangle.tri; in lp_rast_triangle_ms_4_16()
295 const struct lp_rast_triangle *tri = arg.triangle.tri; in lp_rast_triangle_32_3_16() local
296 const struct lp_rast_plane *plane = GET_PLANES(tri); in lp_rast_triangle_32_3_16()
[all …]
Dlp_rast.h224 GET_PLANES(const struct lp_rast_triangle *tri) in GET_PLANES() argument
226 const uint8_t *p = (const uint8_t *) (&tri->inputs + 1); in GET_PLANES()
227 return (struct lp_rast_plane *) (p + 3 * tri->inputs.stride); in GET_PLANES()
248 const struct lp_rast_triangle *tri; member
279 arg.triangle.tri = triangle; in lp_rast_arg_triangle()
296 arg.triangle.tri = triangle; in lp_rast_arg_triangle_contained()
/third_party/skia/gm/
Dconvexpolyeffect.cpp54 SkPath tri; in onOnceBeforeDraw() local
55 tri.moveTo(5.f, 5.f); in onOnceBeforeDraw()
56 tri.lineTo(100.f, 20.f); in onOnceBeforeDraw()
57 tri.lineTo(15.f, 100.f); in onOnceBeforeDraw()
59 fPaths.push_back(tri); in onOnceBeforeDraw()
61 fPaths.back().reverseAddPath(tri); in onOnceBeforeDraw()
63 tri.close(); in onOnceBeforeDraw()
64 fPaths.push_back(tri); in onOnceBeforeDraw()
Dtessellation.cpp357 static SkPath build_outset_triangle(const std::array<float, 3>* tri) { in build_outset_triangle() argument
360 SkPoint p = {tri[i][0], tri[i][1]}; in build_outset_triangle()
361 SkPoint left = {tri[(i + 2) % 3][0], tri[(i + 2) % 3][1]}; in build_outset_triangle()
362 SkPoint right = {tri[(i + 1) % 3][0], tri[(i + 1) % 3][1]}; in build_outset_triangle()
/third_party/icu/icu4c/source/data/lang/
Dfr_CA.txt104 big5han{"ordre de tri chinois traditionnel - Big5"}
105 dictionary{"ordre de tri du dictionnaire"}
107 gb2312han{"ordre de tri chinois simplifié - GB2312"}
108 phonebook{"ordre de tri de l’annuaire"}
109 pinyin{"ordre de tri pinyin"}
110 reformed{"ordre de tri réformé"}
112 stroke{"ordre de tri des traits"}
113 traditional{"ordre de tri traditionnel"}
114 zhuyin{"ordre de tri zhuyin"}
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fRasterizationTests.cpp1464 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local
1465 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles()
1466 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles()
1467 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles()
1469 outTriangles.push_back(tri); in extractTriangles()
1485 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local
1486 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles()
1487 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles()
1488 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles()
1490 outTriangles.push_back(tri); in extractTriangles()
[all …]
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fRasterizationTests.cpp1613 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local
1614 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles()
1615 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles()
1616 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles()
1618 outTriangles.push_back(tri); in extractTriangles()
1634 TriangleSceneSpec::SceneTriangle tri; in extractTriangles() local
1635 tri.positions[0] = v0; tri.sharedEdge[0] = false; in extractTriangles()
1636 tri.positions[1] = v1; tri.sharedEdge[1] = false; in extractTriangles()
1637 tri.positions[2] = v2; tri.sharedEdge[2] = false; in extractTriangles()
1639 outTriangles.push_back(tri); in extractTriangles()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DRegisterCoalescer.h58 CoalescerPair(const TargetRegisterInfo &tri) : TRI(tri) {} in CoalescerPair() argument
63 const TargetRegisterInfo &tri) in CoalescerPair() argument
64 : TRI(tri), DstReg(PhysReg), SrcReg(VirtReg) {} in CoalescerPair()
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
DREADME16 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
/third_party/mesa3d/src/gallium/tests/graw/
Dmeson.build24 'tex-srgb', 'tex-swizzle', 'tri', 'tri-large', 'tri-gs', 'tri-instanced',
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
DvktTextureSwizzleTests.cpp177 tcu::Vec3 tri[2][2] = in iterate() local
188 { tri[m_testParameters.texCoordMapping[0]][0], tri[m_testParameters.texCoordMapping[0]][1] }, in iterate()
189 { tri[m_testParameters.texCoordMapping[1]][0], tri[m_testParameters.texCoordMapping[1]][1] } in iterate()
192 memcpy(tri, swz, sizeof(tri)); in iterate()
196 const tcu::Vec3 triS[2] = { tri[0][0], tri[0][1] }; in iterate()
197 const tcu::Vec3 triT[2] = { tri[1][0], tri[1][1] }; in iterate()

1234567