Home
last modified time | relevance | path

Searched refs:other_base (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/processor/
Drange_map-inl.h84 AddressType other_base = iterator_base->second.base(); in StoreRangeInternal() local
85 if (base < other_base) { in StoreRangeInternal()
86 return StoreRangeInternal(base, delta, other_base - base, entry); in StoreRangeInternal()
87 } else if (other_base < base) { in StoreRangeInternal()
91 RetrieveRange(other_high, &other_entry, &other_base, &other_delta, in StoreRangeInternal()
95 MapValue(base - 1, Range(other_base, other_delta, other_entry))); in StoreRangeInternal()
126 AddressType other_base = iterator_high->second.base(); in StoreRangeInternal() local
127 if (base < other_base) { in StoreRangeInternal()
128 return StoreRangeInternal(base, delta, other_base - base, entry); in StoreRangeInternal()
129 } else if (other_base < base) { in StoreRangeInternal()
[all …]
/external/llvm-project/lldb/test/API/lang/cpp/covariant-return-types/
Dmain.cpp12 OtherBase other_base; variable
20 virtual OtherBase* getOtherPtr() { return &other_base; } in getOtherPtr()
21 virtual OtherBase& getOtherRef() { return other_base; } in getOtherRef()
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/
Dgrpclb.cc269 int Cmp(const AttributeInterface* other_base) const override { in Cmp()
271 static_cast<const TokenAndClientStatsAttribute*>(other_base); in Cmp()