HomeSort by relevance Sort by last modified time
    Searched refs:Covers (Results 1 - 18 of 18) 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_linear_scan.cc 327 } else if (!current->Covers(safepoint_position)) {
337 // given register, we create an interval that covers these locations. The register
525 } else if (!interval->Covers(position)) {
545 } else if (interval->Covers(position)) {
    [all...]
ssa_liveness_analysis.h 417 // Find the range that covers the positions after the loop.
488 bool Covers(size_t position) {
494 // Same as Covers but always tests all ranges.
641 * The new interval covers:
674 // Iterate over the ranges, and either find a range that covers this position, or
699 // This range covers position. We create a new last_range_ for this interval
700 // that covers last_range_->Start() and position. We also shorten the current
873 // Find the interval that covers `defined_by`_. Calls to this function
904 // Find the interval that covers `defined_by`_. Calls to this function
    [all...]
register_allocator_graph_color.cc     [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 276 bool Covers(LifetimePosition position);
lithium-allocator.cc 477 bool LiveRange::Covers(LifetimePosition position) {
    [all...]
hydrogen.cc     [all...]
  /external/v8/src/compiler/
register-allocator.cc 770 bool LiveRange::Covers(LifetimePosition position) const {
    [all...]
register-allocator.h 415 bool Covers(LifetimePosition position) const;
    [all...]
  /external/v8/tools/
grokdump.py 585 def Covers(self, addr):
    [all...]
  /external/abi-compliance-checker/
abi-compliance-checker.pl     [all...]

Completed in 563 milliseconds