HomeSort by relevance Sort by last modified time
    Searched full:dedupe_map_ (Results 1 - 1 of 1) sorted by null

  /art/compiler/
oat_writer.cc 367 auto lb = dedupe_map_.lower_bound(compiled_method);
368 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(compiled_method, lb->first)) {
372 dedupe_map_.PutBefore(lb, compiled_method, quick_code_offset);
489 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
511 auto lb = dedupe_map_.lower_bound(map);
512 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(map, lb->first)) {
516 dedupe_map_.PutBefore(lb, map, offset_);
530 SafeMap<const SwapVector<uint8_t>*, uint32_t> dedupe_map_; member in namespace:art
    [all...]

Completed in 122 milliseconds