search for: overlap2

Displaying 2 results from an estimated 2 matches for "overlap2".

Did you mean: overlap
2005 Jul 25
8
My try on nested sortables
...but the upper edge of the draggable on the mouse moving up and the lower edge on the mouse moving down. Easier and consistent movement of the element, especially when traversing nested sortables. - Two LI in a UL switch position, when the dragged LI has made enough room for the other LI (Position.overlap2() ). The old code doesn''t work well for LI with different sizes, too much confusing stacking. - Moving a LI into a different UL happens on entering the UL, not when a LI in the new UL is reached. Makes it easier to move the items, earlier feedback. - Made onChange work. - Fixed Event.s...
2006 Dec 19
3
[LLVMdev] alias-aware scheduling
...2) <= Offset1); + } + + // If we know both bases then they can't alias. + if (KnownBase1 && KnownBase2) return false; + + if (SchedulerMemoryDisambiguationAA) { + // Use alias analysis information. + int Overlap1 = Size1 + SrcValueOffset1 + Offset1; + int Overlap2 = Size2 + SrcValueOffset2 + Offset2; + AliasAnalysis::AliasResult AAResult = + AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2); + if (AAResult == AliasAnalysis::NoAlias) + return false; + } + + // Otherwise we have to assume they alias. +...