Home
last modified time | relevance | path

Searched refs:from_entry (Results 1 – 4 of 4) sorted by relevance

/external/e2fsprogs/lib/ext2fs/
Dswapfs.c165 struct ext2_ext_attr_entry *from_entry) in ext2fs_swap_ext_attr_entry() argument
167 to_entry->e_value_offs = ext2fs_swab16(from_entry->e_value_offs); in ext2fs_swap_ext_attr_entry()
168 to_entry->e_value_block = ext2fs_swab32(from_entry->e_value_block); in ext2fs_swap_ext_attr_entry()
169 to_entry->e_value_size = ext2fs_swab32(from_entry->e_value_size); in ext2fs_swap_ext_attr_entry()
170 to_entry->e_hash = ext2fs_swab32(from_entry->e_hash); in ext2fs_swap_ext_attr_entry()
179 struct ext2_ext_attr_entry *from_entry, *to_entry; in ext2fs_swap_ext_attr() local
188 from_entry = (struct ext2_ext_attr_entry *)(from_header+1); in ext2fs_swap_ext_attr()
191 from_entry = (struct ext2_ext_attr_entry *)from_header; in ext2fs_swap_ext_attr()
195 while ((char *)from_entry < from_end && *(__u32 *)from_entry) { in ext2fs_swap_ext_attr()
196 ext2fs_swap_ext_attr_entry(to_entry, from_entry); in ext2fs_swap_ext_attr()
[all …]
Dext2fs.h1441 struct ext2_ext_attr_entry *from_entry);
/external/google-breakpad/src/tools/mac/dump_syms/
Ddump_syms_tool.mm85 Module::StackFrameEntry* from_entry = *it;
86 Module::Address from_entry_end = from_entry->address + from_entry->size;
91 if (from_entry->address > (*to_it)->address)
98 if (to_it == to_data.end() || (from_entry->address < (*to_it)->address &&
100 to_module->AddStackFrameEntry(new Module::StackFrameEntry(*from_entry));
/external/v8/src/snapshot/
Dserialize.cc412 HashMap::Entry* from_entry = FindEntry(from); in Move() local
413 DCHECK(from_entry != NULL); in Move()
414 void* value = from_entry->value; in Move()
415 RemoveEntry(from_entry); in Move()