HomeSort by relevance Sort by last modified time
    Searched defs:map_item (Results 1 - 4 of 4) sorted by null

  /external/u-boot/fs/btrfs/
chunk-map.c 23 struct chunk_map_item *map_item; local
54 map_item = malloc(sizeof(struct chunk_map_item));
55 if (!map_item)
58 map_item->logical = key->offset;
59 map_item->length = chunk->length;
60 map_item->physical = le64_to_cpu(chunk->stripe.offset);
61 rb_link_node(&map_item->node, prnt, new);
62 rb_insert_color(&map_item->node, &btrfs_info.chunks_root);
64 debug("%s: Mapping %llu to %llu\n", __func__, map_item->logical,
65 map_item->physical)
    [all...]
  /art/libdexfile/dex/
dex_file_tracking_registrar.cc 234 const dex::MapItem& map_item = map_list->list_[map_ctr]; local
235 if (map_item.type_ == DexFile::kDexTypeStringDataItem) {
237 const void* string_data_begin = reinterpret_cast<const void*>(dex_file_->Begin() + map_item.offset_);
238 size_t string_data_size = next_map_item.offset_ - map_item.offset_;
dex_file.cc 191 const MapItem& map_item = map_list->list_[i]; local
192 if (map_item.type_ == kDexTypeMethodHandleItem) {
193 method_handles_ = reinterpret_cast<const MethodHandleItem*>(Begin() + map_item.offset_);
194 num_method_handles_ = map_item.size_;
195 } else if (map_item.type_ == kDexTypeCallSiteIdItem) {
196 call_site_ids_ = reinterpret_cast<const CallSiteIdItem*>(Begin() + map_item.offset_);
197 num_call_site_ids_ = map_item.size_;
198 } else if (map_item.type_ == kDexTypeHiddenapiClassData) {
199 hiddenapi_class_data_ = GetHiddenapiClassDataAtOffset(map_item.offset_);
  /art/dexlayout/
dex_writer.cc 716 dex::MapItem map_item; local
717 map_item.type_ = item.type_;
718 map_item.size_ = item.size_;
719 map_item.offset_ = item.offset_;
720 map_item.unused_ = 0u;
721 stream->Write(&map_item, sizeof(map_item));
    [all...]

Completed in 826 milliseconds