Home
last modified time | relevance | path

Searched refs:SplitType (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/experimental/graphite/src/geom/
DIntersectionTree.cpp18 template<IntersectionTree::SplitType kSplitType>
47 return (kSplitType == SplitType::kX) ? rect.left() : rect.top(); in GetLoVal()
50 return (kSplitType == SplitType::kX) ? rect.right() : rect.bot(); in GetHiVal()
148 SplitType splitType = (splittableSize.x() > splittableSize.y()) ? SplitType::kX in split()
149 : SplitType::kY; in split()
153 if (splitType == SplitType::kX) { in split()
188 return (splitType == SplitType::kX) in split()
189 ? (Node*)arena->make<TreeNode<SplitType::kX>>(splitCoord, this, hiNode) in split()
190 : (Node*)arena->make<TreeNode<SplitType::kY>>(splitCoord, this, hiNode); in split()
205 static_assert(kTreeNodeSize == sizeof(TreeNode<SplitType::kX>)); in IntersectionTree()
[all …]
DIntersectionTree.h45 enum class SplitType : bool { enum
50 template<SplitType kSplitType> class TreeNode;
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTargetLoweringARM32.cpp1948 const Type SplitType = IceType_i32; in hiOperand() local
1960 return OperandARM32Mem::create(Func, SplitType, BaseR, IndexR, in hiOperand()
1969 if (!OperandARM32Mem::canHoldOffset(SplitType, ZeroExt, NextOffsetVal)) { in hiOperand()
1985 return OperandARM32Mem::create(Func, SplitType, BaseR, Offset, in hiOperand()
DIceTargetLoweringMIPS32.cpp2273 const Type SplitType = IceType_i32; in hiOperand() local
2279 if (!OperandMIPS32Mem::canHoldOffset(SplitType, SignExt, NextOffsetVal)) { in hiOperand()
2294 return OperandMIPS32Mem::create(Func, SplitType, Base, Offset, in hiOperand()