HomeSort by relevance Sort by last modified time
    Searched refs:Covers (Results 1 - 16 of 16) sorted by null

  /external/google-breakpad/src/common/
memory_range.h 75 // Returns true if this range covers a subrange of |sub_length| bytes
77 bool Covers(size_t sub_offset, size_t sub_length) const {
91 return Covers(sub_offset, sub_length) ? (data_ + sub_offset) : NULL;
125 return Covers(sub_offset, sub_length) ?
memory_range_unittest.cc 44 // Test vectors for verifying Covers, GetData, and Subrange.
150 EXPECT_TRUE(range.Covers(sub_offset, sub_length));
156 EXPECT_FALSE(range.Covers(sub_offset, sub_length));
  /art/compiler/optimizing/
live_interval_test.cc 70 TEST(LiveInterval, Covers) {
77 ASSERT_TRUE(interval->Covers(0));
78 ASSERT_TRUE(interval->Covers(4));
79 ASSERT_TRUE(interval->Covers(41));
80 ASSERT_FALSE(interval->Covers(42));
81 ASSERT_FALSE(interval->Covers(54));
87 ASSERT_FALSE(interval->Covers(0));
88 ASSERT_TRUE(interval->Covers(4));
89 ASSERT_TRUE(interval->Covers(11));
90 ASSERT_FALSE(interval->Covers(12))
    [all...]
register_allocator.cc 347 } else if (!current->Covers(safepoint_position)) {
357 // given register, we create an interval that covers these locations. The register
637 } else if (!interval->Covers(position)) {
657 } else if (interval->Covers(position)) {
    [all...]
ssa_liveness_analysis.h 361 // Find the range that covers the positions after the loop.
432 bool Covers(size_t position) {
438 // Same as Covers but always tests all ranges.
571 * The new interval covers:
606 // Iterate over the ranges, and either find a range that covers this position, or
631 // This range covers position. We create a new last_range_ for this interval
632 // that covers last_range_->Start() and position. We also shorten the current
803 // Find the interval that covers `defined_by`_. Calls to this function
834 // Find the interval that covers `defined_by`_. Calls to this function
903 // Searches for a LiveRange that either covers the given position or is th
    [all...]
  /external/google-breakpad/src/tools/linux/md2core/
minidump_memory_range.h 60 if (Covers(sub_offset, sub_length))
65 // Returns a subrange that covers the offset and length specified by
minidump_memory_range_unittest.cc 45 // Test vectors for verifying Covers, GetData, and Subrange.
151 EXPECT_TRUE(range.Covers(sub_offset, sub_length));
157 EXPECT_FALSE(range.Covers(sub_offset, sub_length));
179 EXPECT_TRUE(range.Covers(sub_offset, sub_length));
185 EXPECT_FALSE(range.Covers(sub_offset, sub_length));
  /system/extras/perfprofd/quipper/
address_mapper.h 94 // Determines if this range fully covers another range in real space.
95 inline bool Covers(const MappedRange& range) const {
101 // This is different from Covers() in that the boundaries cannot overlap.
address_mapper.cc 58 if (!old_range_found && iter->Covers(range) && iter->size > range.size) {
  /external/autotest/client/site_tests/security_RootCA/
security_RootCA.py 162 Covers both NSS and OpenSSL.
  /external/v8/src/crankshaft/
lithium-allocator.h 274 bool Covers(LifetimePosition position);
lithium-allocator.cc 474 bool LiveRange::Covers(LifetimePosition position) {
    [all...]
hydrogen.cc     [all...]
  /external/v8/src/compiler/
register-allocator.cc 625 bool LiveRange::Covers(LifetimePosition position) const {
    [all...]
register-allocator.h 400 bool Covers(LifetimePosition position) const;
    [all...]
  /external/v8/tools/
grokdump.py 584 def Covers(self, addr):
    [all...]

Completed in 3816 milliseconds