Searched refs:SplitType (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/experimental/graphite/src/geom/ |
D | IntersectionTree.cpp | 18 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 …]
|
D | IntersectionTree.h | 45 enum class SplitType : bool { enum 50 template<SplitType kSplitType> class TreeNode;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringARM32.cpp | 1948 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()
|
D | IceTargetLoweringMIPS32.cpp | 2273 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()
|