Home
last modified time | relevance | path

Searched refs:RangeMap (Results 1 – 25 of 27) sorted by relevance

12

/external/valgrind/coregrind/
Dm_rangemap.c59 static void preen (/*MOD*/RangeMap* rm);
60 static Word find ( const RangeMap* rm, UWord key );
61 static void split_at ( /*MOD*/RangeMap* rm, UWord key );
62 static void show ( const RangeMap* rm );
65 RangeMap* VG_(newRangeMap) ( Alloc_Fn_t alloc_fn, in VG_()
73 RangeMap* rm = alloc_fn(cc, sizeof(RangeMap)); in VG_()
90 void VG_(deleteRangeMap) ( RangeMap* rm ) in VG_()
99 void VG_(bindRangeMap) ( RangeMap* rm, in VG_()
117 /*OUT*/UWord* val, const RangeMap* rm, UWord key ) in VG_()
126 UInt VG_(sizeRangeMap) ( const RangeMap* rm ) in VG_()
[all …]
/external/valgrind/include/
Dpub_tool_rangemap.h43 typedef struct _RangeMap RangeMap; typedef
50 RangeMap* VG_(newRangeMap) ( Alloc_Fn_t alloc_fn,
56 void VG_(deleteRangeMap) ( RangeMap* );
63 void VG_(bindRangeMap) ( RangeMap* rm,
71 /*OUT*/UWord* val, const RangeMap* rm, UWord key );
74 UInt VG_(sizeRangeMap) ( const RangeMap* rm );
78 /*OUT*/UWord* val, const RangeMap* rm, Word ix );
/external/guava/guava-tests/test/com/google/common/collect/
DTreeRangeMapTest.java60 RangeMap<Integer, String> rangeMap = TreeRangeMap.create(); in suite()
115 RangeMap<Integer, String> rangeMap = TreeRangeMap.create(); in suite()
192 RangeMap<Integer, Integer> rangeMap = TreeRangeMap.create(); in testSpanSingleRange()
207 RangeMap<Integer, Integer> rangeMap = TreeRangeMap.create(); in testSpanTwoRanges()
240 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testAllRangesAlone()
252 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testAllRangePairs()
268 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testAllRangeTriples()
286 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testPutAll()
287 RangeMap<Integer, Integer> test2 = TreeRangeMap.create(); in testPutAll()
305 RangeMap<Integer, Integer> test = TreeRangeMap.create(); in testPutAndRemove()
[all …]
DImmutableRangeMapTest.java132 RangeMap<Integer, Integer> rangemap = in testSpanSingleRange()
142 RangeMap<Integer, Integer> rangemap = in testSpanTwoRanges()
/external/guava/guava/src/com/google/common/collect/
DTreeRangeMap.java56 public final class TreeRangeMap<K extends Comparable, V> implements RangeMap<K, V> {
134 public void putAll(RangeMap<K, V> rangeMap) { in putAll()
249 public RangeMap<K, V> subRangeMap(Range<K> subRange) {
258 private RangeMap<K, V> emptySubRangeMap() {
262 private static final RangeMap EMPTY_SUB_RANGE_MAP =
263 new RangeMap() {
289 public void putAll(RangeMap rangeMap) {
310 public RangeMap subRangeMap(Range range) {
316 private class SubRangeMap implements RangeMap<K, V> {
380 public void putAll(RangeMap<K, V> rangeMap) {
[all …]
DRangeMap.java36 public interface RangeMap<K extends Comparable, V> { interface
76 void putAll(RangeMap<K, V> rangeMap); in putAll()
114 RangeMap<K, V> subRangeMap(Range<K> range); in subRangeMap()
DImmutableRangeMap.java42 public class ImmutableRangeMap<K extends Comparable<?>, V> implements RangeMap<K, V> {
66 RangeMap<K, ? extends V> rangeMap) { in copyOf()
92 private final RangeMap<K, V> rangeMap;
130 public Builder<K, V> putAll(RangeMap<K, ? extends V> rangeMap) { in putAll()
204 public void putAll(RangeMap<K, V> rangeMap) { in putAll()
288 if (o instanceof RangeMap) {
289 RangeMap<?, ?> rangeMap = (RangeMap<?, ?>) o;
/external/google-breakpad/src/processor/
Drange_map-inl.h50 bool RangeMap<AddressType, EntryType>::StoreRange(const AddressType &base, in StoreRange()
118 bool RangeMap<AddressType, EntryType>::RetrieveRange( in RetrieveRange()
147 bool RangeMap<AddressType, EntryType>::RetrieveNearestRange( in RetrieveNearestRange()
178 bool RangeMap<AddressType, EntryType>::RetrieveRangeAtIndex( in RetrieveRangeAtIndex()
206 int RangeMap<AddressType, EntryType>::GetCount() const { in GetCount()
212 void RangeMap<AddressType, EntryType>::Clear() { in Clear()
Dmap_serializers.h113 size_t SizeOf(const RangeMap<Address, Entry> &m) const;
118 char* Write(const RangeMap<Address, Entry> &m, char* dest) const;
124 char* Serialize(const RangeMap<Address, Entry> &m, unsigned int *size) const;
128 typedef typename RangeMap<Address, Entry>::Range Range;
Dbasic_source_line_resolver_types.h68 RangeMap< MemAddr, linked_ptr<Line> > lines;
145 RangeMap< MemAddr, linked_ptr<Function> > functions_;
165 RangeMap<MemAddr, string> cfi_initial_rules_;
Dbasic_code_modules.h49 template<typename AddressType, typename EntryType> class RangeMap; variable
78 RangeMap<uint64_t, linked_ptr<const CodeModule> > *map_;
Drange_map.h53 class RangeMap {
55 RangeMap() : map_() {} in RangeMap() function
Dbasic_code_modules.cc50 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules()
78 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules()
Dmap_serializers-inl.h120 const RangeMap<Address, Entry> &m) const { in SizeOf()
139 const RangeMap<Address, Entry> &m, char *dest) const { in Write()
170 const RangeMap<Address, Entry> &m, unsigned int *size) const { in Serialize()
Dmodule_comparer.cc110 RangeMap<MemAddr, linked_ptr<BasicFunc> >::MapConstIterator iter1; in CompareModule()
153 RangeMap<MemAddr, string>::MapConstIterator iter1; in CompareModule()
200 RangeMap<MemAddr, linked_ptr<BasicLine> >::MapConstIterator iter1; in CompareFunction()
Drange_map_unittest.cc49 using google_breakpad::RangeMap;
71 typedef RangeMap< AddressType, linked_ptr<CountedObject> > TestMap;
Dmap_serializers_unittest.cc210 google_breakpad::RangeMap<AddrType, EntryType> range_map_;
Dstatic_range_map_unittest.cc48 typedef google_breakpad::RangeMap< AddressType, EntryType > RMap;
Dminidump.cc2432 range_map_(new RangeMap<uint64_t, unsigned int>()), in MinidumpModuleList()
2688 range_map_(new RangeMap<uint64_t, unsigned int>()), in MinidumpMemoryList()
3797 range_map_(new RangeMap<uint64_t, unsigned int>()), in MinidumpMemoryInfoList()
/external/v8/src/profiler/
Dallocation-tracker.cc124 ranges_.insert(RangeMap::value_type(end, new_range)); in AddRange()
129 RangeMap::const_iterator it = ranges_.upper_bound(addr); in GetTraceNodeId()
153 for (RangeMap::iterator it = ranges_.begin(); it != ranges_.end(); ++it) { in Print()
162 RangeMap::iterator it = ranges_.upper_bound(start); in RemoveRange()
167 RangeMap::iterator to_remove_begin = it; in RemoveRange()
184 ranges_.insert(RangeMap::value_type(start, prev_range)); in RemoveRange()
Dallocation-tracker.h89 typedef std::map<Address, RangeStack> RangeMap; typedef
93 RangeMap ranges_;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcodes.java35 import com.google.common.collect.RangeMap;
101 RangeMap<Integer, Short> versionToValueMap; in Opcodes()
DOpcode.java37 import com.google.common.collect.RangeMap;
346 public final RangeMap<Integer, Short> apiToValueMap;
347 public final RangeMap<Integer, Short> artVersionToValueMap;
/external/google-breakpad/src/google_breakpad/processor/
Dminidump.h107 template<typename AddressType, typename EntryType> class RangeMap; variable
520 RangeMap<uint64_t, unsigned int> *range_map_;
575 RangeMap<uint64_t, unsigned int> *range_map_;
849 RangeMap<uint64_t, unsigned int> *range_map_;
/external/google-breakpad/src/processor/testdata/symbols/microdump/breakpad_unittests/DA7778FB66018A4E9B4110ED06E730D00/
Dbreakpad_unittests.sym13342RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:…
13354RangeMap<long long unsigned int, unsigned int>::Range, std::less<long long unsigned int>, std::all…
32666RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long …
33165 FUNC 4a508 b4 0 google_breakpad::RangeMap<long long unsigned int, unsigned int>::RetrieveRange
33643RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long …
33650RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long …
35863RangeMap<long long unsigned int, unsigned int>::Range>, std::priv::_Select1st<std::pair<long long …
35895 FUNC 4ffec 1e8 0 google_breakpad::RangeMap<long long unsigned int, unsigned int>::StoreRange
37056RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:…
37124RangeMap<long long unsigned int, google_breakpad::linked_ptr<const google_breakpad::CodeModule> >:…
[all …]

12