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

1 2

  /external/llvm/lib/Target/ARM/
ARMHazardRecognizer.h 32 const ARMBaseRegisterInfo &TRI;
41 const ARMBaseRegisterInfo &tri,
45 TRI(tri), STI(sti), LastMI(0) {}
  /external/bluetooth/glib/tests/
markup-collect.c 32 #define TRI G_MARKUP_COLLECT_TRISTATE
41 gboolean mb = 2, ob = 2, tri = 2; local
45 TRI, "tri", &tri);
48 (mb == FALSE && ob == FALSE && tri != TRUE && tri != FALSE));
50 if (tri != FALSE && tri != TRUE)
51 tri = -1
    [all...]
  /external/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);
Spiller.cpp 59 const TargetRegisterInfo *tri; member in class:__anon8981::SpillerBase
69 tri = mf.getTarget().getRegisterInfo();
137 tri);
150 true, ss, trc, tri);
RenderMachineFunction.cpp 195 const TargetRegisterInfo *tri,
199 this->tri = tri;
248 for (TargetRegisterInfo::regclass_iterator rcItr = tri->regclass_begin(),
249 rcEnd = tri->regclass_end();
315 const TargetRegisterInfo *tri,
319 this->tri = tri;
348 for (unsigned preg = 1; preg < tri->getNumRegs(); ++preg) {
351 for (TargetRegisterInfo::regclass_iterator rcItr = tri->regclass_begin()
    [all...]
RenderMachineFunction.h 62 void setup(MachineFunction *mf, const TargetRegisterInfo *tri,
118 const TargetRegisterInfo *tri; member in class:llvm::MFRenderingOptions
142 const TargetRegisterInfo *tri, LiveIntervals *lis);
170 const TargetRegisterInfo *tri; member in class:llvm::TargetRegisterExtraInfo
247 const TargetRegisterInfo *tri; member in class:llvm::RenderMachineFunction
RegAllocPBQP.cpp 133 const TargetRegisterInfo *tri; member in class:__anon8952::RegAllocPBQP
201 const TargetRegisterInfo *tri = mf->getTarget().getRegisterInfo(); local
216 BitVector reservedRegs = tri->getReservedRegs(*mf);
254 BitVector regMaskOverlaps(tri->getNumRegs());
275 for (unsigned preg = 0; preg < tri->getNumRegs(); ++preg) {
294 const uint16_t *aliasItr = tri->getAliasSet(preg);
338 addInterferenceCosts(g.getEdgeCosts(edge), vr1Allowed, vr2Allowed, tri);
355 const TargetRegisterInfo *tri) {
365 if (tri->regsOverlap(preg1, preg2)) {
547 DEBUG(dbgs() << "VREG " << vreg << " -> " << tri->getName(preg) << "\n")
    [all...]
BranchFolding.h 30 const TargetRegisterInfo *tri,
91 const TargetRegisterInfo *TRI;
InterferenceCache.cpp 29 const TargetRegisterInfo *tri) {
32 TRI = tri;
33 PhysRegEntries.assign(TRI->getNumRegs(), 0);
41 if (!Entries[E].valid(LIUArray, TRI))
56 Entries[E].reset(PhysReg, LIUArray, TRI, MF);
75 const TargetRegisterInfo *TRI,
83 for (const uint16_t *AS = TRI->getOverlaps(PhysReg); *AS; ++AS) {
97 const TargetRegisterInfo *TRI) {
99 for (const uint16_t *AS = TRI->getOverlaps(PhysReg); *AS; ++AS, ++i)
    [all...]
LiveRangeEdit.cpp 135 const TargetRegisterInfo &tri,
138 TII.reMaterialize(MBB, MI, DestReg, 0, RM.OrigMI, tri);
RegisterCoalescer.cpp 85 const TargetRegisterInfo* TRI;
210 static unsigned compose(const TargetRegisterInfo &tri, unsigned a, unsigned b) {
213 return tri.composeSubRegIndices(a, b);
216 static bool isMoveInstr(const TargetRegisterInfo &tri, const MachineInstr *MI,
226 DstSub = compose(tri, MI->getOperand(0).getSubReg(),
241 if (!isMoveInstr(TRI, MI, Src, Dst, SrcSub, DstSub))
259 Dst = TRI.getSubReg(Dst, DstSub);
266 Dst = TRI.getMatchingSuperReg(Dst, SrcSub, MRI.getRegClass(Src));
284 if (!TRI.getCommonSubClass(DstRC, SrcRC))
302 NewRC = TRI.getMatchingSuperRegClass(DstRC, SrcRC, DstSub)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 109 private boolean isPointInTriangle(Vector3f point, AbstractTriangle tri) {
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.get2())
419 AbstractTriangle tri = (AbstractTriangle) other; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnLocalTriangulator.cpp 120 Triangle* tri = getTriangle(i); local
121 if (tri->contains(v)) {
122 Vertex* next = tri->nextVertex(v, sideToFill == LoopBlinnConstants::RightSide);
268 Triangle* tri = getTriangle(i);
269 if (tri->contains(v0) && tri->nextVertex(v0, true) == v1)
271 if (tri->contains(v1) && tri->nextVertex(v1, true) == v0)
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 390 AbstractTriangle tri = (AbstractTriangle) other; local
391 float d = intersects(tri.get1(), tri.get2(), tri.get3());
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java 176 public final Vector3f[] tri = {new Vector3f(), field in class:TempVars
  /external/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 138 const TargetRegisterInfo *tri);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
BatchNode.java 477 for (int tri = 0; tri < geomTriCount; tri++) {
479 int idx = inIdx.get(tri * components + comp) + globalVertIndex;
480 outIdx.put((globalTriIndex + tri) * components + comp, idx);
Mesh.java 785 * @param tri The triangle to store the positions in
787 public void getTriangle(int index, Triangle tri){
788 getTriangle(index, tri.get1(), tri.get2(), tri.get3());
789 tri.setIndex(index);
790 tri.setNormal(null);
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
GeometryBatchFactory.java 198 for (int tri = 0; tri < geomTriCount; tri++) {
200 int idx = inIdx.get(tri * components + comp) + globalVertIndex;
201 outIdx.put((globalTriIndex + tri) * components + comp, idx);
  /external/llvm/include/llvm/Target/
TargetRegisterInfo.h 369 /// The mask is an array containing (TRI::getNumRegs()+31)/32 entries.
719 /// Prints virtual and physical registers with or without a TRI instance.
724 /// %vreg5:sub_8bit - a virtual register with sub-register index (with TRI).
726 /// %physreg17 - a physical register when no TRI instance given.
728 /// Usage: OS << PrintReg(Reg, TRI) << '\n';
731 const TargetRegisterInfo *TRI;
735 PrintReg(unsigned reg, const TargetRegisterInfo *tri = 0, unsigned subidx = 0)
736 : TRI(tri), Reg(reg), SubIdx(subidx) {}
  /external/webkit/Source/WebCore/platform/android/
RenderThemeAndroid.cpp 603 Path tri = Path(); local
604 tri.clear();
607 tri.moveTo(br);
608 tri.addLineTo(FloatPoint(br.x() - aw, br.y()));
609 tri.addLineTo(FloatPoint(br.x(), br.y() - aw));
610 context->fillPath(tri);
  /system/core/libpixelflinger/
trap.cpp 99 float tri = 1.0f / TRI_ONE; local
103 v0[0]*tri, v0[1]*tri, v0[0], v0[1],
104 v1[0]*tri, v1[1]*tri, v1[0], v1[1],
105 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/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LODGeomap.java 942 Triangle tri = getTriangleAtPoint(x, z); local
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 268 const TargetRegisterInfo *TRI,
280 const TargetRegisterClass *RC = TRI->getRegClass(DstRCIdx);
288 const TargetRegisterClass *RC = TII->getRegClass(Desc, Idx, TRI);
311 LiveRegDefs.resize(TRI->getNumRegs() + 1, NULL);
312 LiveRegGens.resize(TRI->getNumRegs() + 1, NULL);
528 unsigned CallResource = TRI->getNumRegs();
729 unsigned CallResource = TRI->getNumRegs();
799 unsigned CallResource = TRI->getNumRegs();
    [all...]

Completed in 923 milliseconds

1 2