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

1 2 34 5

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 313 debug_printf("Clipped tri: (flat-shade-first = %d)\n",
337 stage->next->tri(stage->next, &header);
757 stage->next->tri( stage->next, header );
914 stage->tri = clip_tri;
924 stage->tri( stage, header );
937 stage->tri = clip_first_tri;
970 clipper->stage.tri = clip_first_tri;
draw_pipe.c 166 draw->pipeline.first->tri( draw->pipeline.first, &prim );
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 43 Pointer<Byte> tri(function.Arg<1>());
61 Pointer<Byte> v0 = tri + V0;
62 Pointer<Byte> v1 = tri + V1;
63 Pointer<Byte> v2 = tri + V2;
466 setupGradient(primitive, tri, w012, M, v0, v1, v2, OFFSET(Vertex,v[attribute][component]), OFFSET(Primitive,V[interpolant][component]), flat, sprite, state.perspective, wrap, component);
473 setupGradient(primitive, tri, w012, M, v0, v1, v2, OFFSET(Vertex,f), OFFSET(Primitive,f), state.fog.flat, false, state.perspective, false, 0);
  /system/core/libpixelflinger/
trap.cpp 101 float tri = 1.0f / TRI_ONE; local
105 v0[0]*tri, v0[1]*tri, v0[0], v0[1],
106 v1[0]*tri, v1[1]*tri, v1[0], v1[1],
107 v2[0]*tri, v2[1]*tri, v2[0], v2[1] );
835 float tri = 1.0f / TRI_ONE; local
844 y_top, y_top*tri,
845 y_bot, y_bot*tri );
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTTriStrip.cpp 72 const unsigned int *pIdx; // three indices for the tri
80 int EdgeFromAdjTri(const CTri &tri) const; // Find the index of the adjacent tri
172 @Input tri The triangle to compare
177 int CTri::EdgeFromAdjTri(const CTri &tri) const
181 if(pAdj[i] == &tri)
195 @Input tri The triangle test
239 // The second tri in the strip may need to be orphaned, or it will have wrong winding order
250 // The second tri in the strip may need to be orphaned, or it will have wrong winding order
381 // Start strip from this tri
    [all...]
  /external/llvm/lib/CodeGen/
LiveRangeEdit.cpp 147 const TargetRegisterInfo &tri,
150 TII.reMaterialize(MBB, MI, DestReg, 0, *RM.OrigMI, tri);
226 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
228 LaneBitmask LaneMask = TRI.getSubRegIndexLaneMask(SubReg);
342 const TargetRegisterInfo &TRI = *MRI.getTargetRegisterInfo();
343 MI->substituteRegister(Dest, NewLI.reg, 0, TRI);
443 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
445 << TRI->getRegClassName(MRI.getRegClass(LI.reg)) << '\n';
  /external/toybox/kconfig/
menu.c 379 visible = menu->prompt->visible.tri;
381 visible = menu->prompt->visible.tri = expr_calc_value(menu->prompt->visible.expr);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_rasterpos.c 188 rs->stage.tri = rastpos_tri;
  /external/python/cpython2/Lib/lib-tk/
turtle.py     [all...]
  /external/python/cpython3/Lib/
turtle.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
turtle.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
turtle.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py     [all...]
  /external/deqp/modules/egl/
teglGLES2SharingTests.cpp 452 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;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 415 const bool tri = xf + yf >= 1.0f; local
416 const Vec4& v0 = tri ? v11 : v00;
417 const Vec4& v1 = tri ? v01 : v10;
418 const Vec4& v2 = tri ? v10 : v01;
419 const float s = tri ? 1.0f-xf : xf;
420 const float t = tri ? 1.0f-yf : yf;
    [all...]
es3fClippingTests.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
context.h 163 TRIANGLE_WORK_DESC tri; member in union:__anon30131
  /external/llvm/lib/Target/Hexagon/
RDFGraph.h 389 RegisterAliasInfo(const TargetRegisterInfo &tri) : TRI(tri) {}
397 const TargetRegisterInfo &TRI;
598 const TargetRegisterInfo &tri, const MachineDominatorTree &mdt,
622 return TRI;
792 const TargetRegisterInfo &TRI;
  /prebuilts/go/darwin-x86/src/math/big/
int_test.go 1303 func tri(n uint) *Int { func
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
int_test.go 1303 func tri(n uint) *Int { func
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterCoalescer.cpp 85 const TargetRegisterInfo* TRI;
217 static unsigned compose(const TargetRegisterInfo &tri, unsigned a, unsigned b) {
220 return tri.composeSubRegIndices(a, b);
223 static bool isMoveInstr(const TargetRegisterInfo &tri, const MachineInstr *MI,
233 DstSub = compose(tri, MI->getOperand(0).getSubReg(),
248 if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub))
266 Dst = TRI.getSubReg(Dst, DstSub);
273 Dst = TRI.getMatchingSuperReg(Dst, SrcSub, MRI.getRegClass(Src));
291 if (!TRI.getCommonSubClass(DstRC, SrcRC))
309 NewRC = TRI.getMatchingSuperRegClass(DstRC, SrcRC, DstSub)
    [all...]
VirtRegRewriter.cpp 69 const TargetRegisterInfo &TRI) {
71 MO.substPhysReg(Reg, TRI);
80 MI.addRegisterKilled(Reg, &TRI, /*AddIfNotFound=*/ true);
103 const TargetRegisterInfo *tri = MF.getTarget().getRegisterInfo(); local
129 pReg, *tri);
160 const TargetRegisterInfo *TRI;
178 AvailableSpills(const TargetRegisterInfo *tri, const TargetInstrInfo *tii)
179 : TRI(tri), TII(tii) {
188 const TargetRegisterInfo *getRegInfo() const { return TRI; }
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_state.c 666 info->tri.depth_offset_format != vec->fb.depth_offset_format ||
676 info->tri.depth_offset_format = vec->fb.depth_offset_format;
    [all...]
  /external/deqp/modules/gles2/functional/
es2fClippingTests.cpp     [all...]

Completed in 4890 milliseconds

1 2 34 5