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

1 2

  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 18 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
31 OVERLAP_NODE overlaps[MAX_OVERLAPS]; member in struct:__anon10972
34 /* Structure used to hold all the overlaps of a macroblock. The overlaps of a
35 * macroblock is further divided into block overlaps.
39 B_OVERLAP overlaps[16]; member in struct:__anon10973
error_concealment.c 49 if (pbi->overlaps != NULL)
51 vpx_free(pbi->overlaps);
52 pbi->overlaps = NULL;
55 pbi->overlaps = vpx_calloc(pbi->common.mb_rows * pbi->common.mb_cols,
58 if (pbi->overlaps == NULL)
66 vpx_free(pbi->overlaps);
67 pbi->overlaps = NULL;
70 /* Inserts a new overlap area value to the list of overlaps of a block */
71 static void assign_overlap(OVERLAP_NODE* overlaps,
78 /* Find and assign to the next empty overlap node in the list of overlaps
    [all...]
onyxd_int.h 92 MB_OVERLAP *overlaps; member in struct:VP8D_COMP
onyxd_if.c 83 pbi->overlaps = NULL;
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
FileLockTest.java 146 * @tests java.nio.channels.FileLock#overlaps(long, long)
149 assertTrue(mockLock.overlaps(0, 11));
150 assertFalse(mockLock.overlaps(0, 10));
151 assertTrue(mockLock.overlaps(100, 110));
152 assertTrue(mockLock.overlaps(99, 110));
153 assertFalse(mockLock.overlaps(-1, 10));
155 assertTrue(mockLock.overlaps(1, 120));
156 assertTrue(mockLock.overlaps(20, 50));
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODInterval.h 105 bool overlaps(const T& low, const T& high) const function in class:WebCore::PODInterval
114 bool overlaps(const PODInterval& other) const function in class:WebCore::PODInterval
116 return overlaps(other.low(), other.high());
LoopBlinnPathProcessor.cpp 544 // Run plane-sweep algorithm to determine overlaps of control point
781 Vector<IntervalType> overlaps = tree.allOverlaps(tree.createInterval(seg->getPoint(0).y(), local
786 if (overlaps.size() != slowOverlaps.size()) {
788 LOG_ERROR(" overlaps:");
789 for (size_t i = 0; i < overlaps.size(); i++)
790 LOG_ERROR(" %d: %s", i+1, overlaps[i].data()->toString().ascii().data());
797 ASSERT(overlaps.size() == slowOverlaps.size());
799 for (Vector<IntervalType>::iterator iter = overlaps.begin(); iter != overlaps.end(); ++iter) {
817 break; // Abort iteration over overlaps
972 Vector<SweepInterval> overlaps; local
    [all...]
PODIntervalTree.h 112 // Starting from the given node, adds all overlaps with the given
132 if (node->data().overlaps(interval))
  /libcore/luni/src/main/java/java/nio/channels/
FileLock.java 36 * overlaps(long, long)}) method. Locks held in other processes may overlap
148 * Indicates if the receiver's lock region overlaps the region described
157 public final boolean overlaps(long start, long length) { method in class:FileLock
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 164 def overlaps?( range )
169 not overlaps?( range )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
basic.rb 234 error.to_s.should == %q<operation (replace @ 1..2 : "foo") overlaps with previous operation (replace @ 0..3 : "bar")>
245 error.to_s.should == %q<operation (insert-before @ 4 : "y") overlaps with previous operation (replace @ 2..4 : "x")>
256 error.to_s.should == %q<operation (replace @ 3..5 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
267 error.to_s.should == %q<operation (replace @ 1..3 : "foo") overlaps with previous operation (replace @ 2..4 : "xyz")>
  /external/webkit/Source/WebKit/android/jni/
PicturePile.cpp 213 // Find the overlaps
214 Vector<int> overlaps;
228 overlaps.append(i);
230 overlaps.append(i);
233 if (overlaps.size() >= MAX_OVERLAP_COUNT) {
236 for (int i = (int) overlaps.size() - 1; i >= 0; i--) {
237 overlap.unite(m_pile[overlaps[i]].area);
238 m_pile.remove(overlaps[i]);
  /external/webkit/Source/WebKit/chromium/tests/
PODIntervalTreeTest.cpp 161 Vector<PODInterval<float, UserData1> > overlaps = tree.allOverlaps(tree.createInterval(3, 5, data1)); local
162 EXPECT_EQ(1U, overlaps.size());
163 EXPECT_EQ(5, overlaps[0].data().a);
164 EXPECT_EQ(6, overlaps[0].data().b);
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 349 /// overlaps - Return true if the intersection of the two live intervals is
351 bool overlaps(const LiveInterval& other) const {
357 /// overlaps - Return true if the two intervals have overlapping segments
362 bool overlaps(const LiveInterval &Other, const CoalescerPair &CP,
365 /// overlaps - Return true if the live interval overlaps a range specified
367 bool overlaps(SlotIndex Start, SlotIndex End) const;
ScheduleDAG.h 131 bool overlaps(const SDep &Other) const { function in class:llvm::SDep
145 return overlaps(Other)
  /external/llvm/lib/CodeGen/
LiveRegMatrix.cpp 123 if (VirtReg.overlaps(LIS->getRegUnit(*Units), CP, *LIS->getSlotIndexes()))
RegAllocPBQP.cpp 217 // Record any overlaps with regmask operands.
234 // vregLI overlaps fixed regunit interference.
237 if (vregLI->overlaps(LIS->getRegUnit(*Units))) {
275 if (l1.overlaps(l2)) {
StackSlotColoring.cpp 196 /// OverlapWithAssignments - Return true if LiveInterval overlaps with any
203 if (OtherLI->overlaps(*li))
LiveInterval.cpp 80 // overlaps - Return true if the intersection of the two live intervals is
83 // An example for overlaps():
95 // A->overlaps(C) should return false since we want to be able to join
139 bool LiveInterval::overlaps(const LiveInterval &Other, function in class:LiveInterval
168 // Advance the iterator that ends first to check for more overlaps.
181 /// overlaps - Return true if the live interval overlaps a range specified
183 bool LiveInterval::overlaps(SlotIndex Start, SlotIndex End) const { function in class:LiveInterval
ScheduleDAG.cpp 73 if (I->overlaps(D)) {
StackColoring.cpp 762 if (!First->overlaps(*Second)) {
  /external/valgrind/main/coregrind/
m_transtab.c 1688 Bool overlaps ( Addr64 start, ULong range, VexGuestExtents* vge ) function
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 1219 private static boolean overlaps(int startOffset, int endOffset, method in class:VisualRefactoring
    [all...]
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 546 if (existingLock.overlaps(lock.position(), lock.size())) {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 230 elsif location.overlaps?( prior_location )
314 message = 'operation %p overlaps with previous operation %p' % [ current, previous ]

Completed in 1787 milliseconds

1 2