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

1 2 3 4

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
ec_types.h 21 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
34 OVERLAP_NODE overlaps[MAX_OVERLAPS]; member in struct:__anon16716
37 /* Structure used to hold all the overlaps of a macroblock. The overlaps of a
38 * macroblock is further divided into block overlaps.
42 B_OVERLAP overlaps[16]; member in struct:__anon16717
error_concealment.c 47 if (pbi->overlaps != NULL)
49 vpx_free(pbi->overlaps);
50 pbi->overlaps = NULL;
53 pbi->overlaps = vpx_calloc(pbi->common.mb_rows * pbi->common.mb_cols,
56 if (pbi->overlaps == NULL)
64 vpx_free(pbi->overlaps);
65 pbi->overlaps = NULL;
68 /* Inserts a new overlap area value to the list of overlaps of a block */
69 static void assign_overlap(OVERLAP_NODE* overlaps,
76 /* Find and assign to the next empty overlap node in the list of overlaps
    [all...]
onyxd_int.h 119 MB_OVERLAP *overlaps; member in struct:VP8D_COMP
  /external/libvpx/libvpx/vp8/decoder/
ec_types.h 21 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
34 OVERLAP_NODE overlaps[MAX_OVERLAPS]; member in struct:__anon28667
37 /* Structure used to hold all the overlaps of a macroblock. The overlaps of a
38 * macroblock is further divided into block overlaps.
42 B_OVERLAP overlaps[16]; member in struct:__anon28668
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 119 MB_OVERLAP *overlaps; member in struct:VP8D_COMP
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
ec_types.h 21 /* The area (pixel area in Q6) the block pointed to by bmi overlaps
34 OVERLAP_NODE overlaps[MAX_OVERLAPS]; member in struct:__anon39757
37 /* Structure used to hold all the overlaps of a macroblock. The overlaps of a
38 * macroblock is further divided into block overlaps.
42 B_OVERLAP overlaps[16]; member in struct:__anon39758
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 119 MB_OVERLAP *overlaps; member in struct:VP8D_COMP
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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/chromium_org/third_party/WebKit/Source/platform/
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());
PODIntervalTreeTest.cpp 160 Vector<PODInterval<float, UserData1> > overlaps = tree.allOverlaps(tree.createInterval(3, 5, data1)); local
161 EXPECT_EQ(1U, overlaps.size());
162 EXPECT_EQ(5, overlaps[0].data().a);
163 EXPECT_EQ(6, overlaps[0].data().b);
PODIntervalTree.h 59 if (data.overlaps(m_lowValue, m_highValue))
154 // Starting from the given node, adds all overlaps with the given
  /libcore/luni/src/main/java/java/nio/channels/
FileLock.java 36 * overlaps(long, long)}) method. Locks held in other processes may overlap
146 * Indicates if the receiver's lock region overlaps the region described
155 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/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInterval.h 70 bool overlaps(const ShapeInterval<T>& interval) const function in class:WebCore::ShapeInterval
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 375 /// overlaps - Return true if the intersection of the two live ranges is
377 bool overlaps(const LiveRange &other) const {
383 /// overlaps - Return true if the two ranges have overlapping segments
388 bool overlaps(const LiveRange &Other, const CoalescerPair &CP,
391 /// overlaps - Return true if the live range overlaps an interval specified
393 bool overlaps(SlotIndex Start, SlotIndex End) const;
ScheduleDAG.h 125 bool overlaps(const SDep &Other) const { function in class:llvm::SDep
139 return overlaps(Other) && Latency == Other.Latency;
  /build/tools/releasetools/
blockimgdiff.py 412 assert not touched.overlaps(xf.src_ranges)
414 assert not touched.overlaps(xf.tgt_ranges)
441 assert xf.src_ranges.overlaps(u.tgt_ranges)
620 assert not so_far.overlaps(i)
rangelib.py 151 def overlaps(self, other): member in class:RangeSet
  /external/llvm/lib/CodeGen/
LiveRegMatrix.cpp 127 if (VirtReg.overlaps(UnitRange, CP, *LIS->getSlotIndexes()))
RegAllocPBQP.cpp 212 // Record any overlaps with regmask operands.
229 // vregLI overlaps fixed regunit interference.
232 if (vregLI->overlaps(LIS->getRegUnit(*Units))) {
272 if (l1.overlaps(l2)) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/
console_tts_engine.js 68 // Create a new window that overlaps the bottom 40% of the current window
  /external/chromium_org/third_party/leveldatabase/src/db/
version_set.cc 25 // Maximum bytes of overlaps in grandparent (i.e., level+2) before we
502 std::vector<FileMetaData*> overlaps; local
509 GetOverlappingInputs(level + 2, &start, &limit, &overlaps);
510 const int64_t sum = TotalFileSize(overlaps);
    [all...]

Completed in 1543 milliseconds

1 2 3 4