Home
last modified time | relevance | path

Searched refs:hash_list (Results 1 – 9 of 9) sorted by relevance

/external/e2fsprogs/e2fsck/
Drevoke.c123 struct list_head *hash_list; in insert_revoke_hash() local
135 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)]; in insert_revoke_hash()
136 list_add(&record->hash, hash_list); in insert_revoke_hash()
157 struct list_head *hash_list; in find_revoke_record() local
160 hash_list = &journal->j_revoke->hash_table[hash(journal, blocknr)]; in find_revoke_record()
162 record = (struct jbd_revoke_record_s *) hash_list->next; in find_revoke_record()
163 while (&(record->hash) != hash_list) { in find_revoke_record()
240 struct list_head *hash_list; in journal_destroy_revoke() local
248 hash_list = &table->hash_table[i]; in journal_destroy_revoke()
249 J_ASSERT (list_empty(hash_list)); in journal_destroy_revoke()
[all …]
/external/vboot_reference/host/lib21/
Dhost_fw_preamble.c21 const struct vb2_signature **hash_list, in vb2_fw_preamble_create() argument
49 hash_next += hash_list[i]->c.total_size; in vb2_fw_preamble_create()
69 memcpy(buf + hash_next, hash_list[i], in vb2_fw_preamble_create()
70 hash_list[i]->c.total_size); in vb2_fw_preamble_create()
71 hash_next += hash_list[i]->c.total_size; in vb2_fw_preamble_create()
/external/fio/
Dfilehash.c39 assert(!flist_empty(&f->hash_list)); in remove_file_hash()
40 flist_del_init(&f->hash_list); in remove_file_hash()
53 struct fio_file *f = flist_entry(n, struct fio_file, hash_list); in __lookup_file_hash()
84 INIT_FLIST_HEAD(&f->hash_list); in add_file_hash()
91 flist_add_tail(&f->hash_list, &file_hash[hash(f->file_name)]); in add_file_hash()
Dclient.h30 struct flist_head hash_list; member
Dfile.h65 struct flist_head hash_list; member
Dclient.c77 flist_add(&client->hash_list, &client_hash[bucket]); in fio_client_add_hash()
82 if (!flist_empty(&client->hash_list)) in fio_client_remove_hash()
83 flist_del_init(&client->hash_list); in fio_client_remove_hash()
149 client = flist_entry(entry, struct fio_client, hash_list); in find_client_by_fd()
260 INIT_FLIST_HEAD(&client->hash_list); in fio_client_add_explicit()
344 INIT_FLIST_HEAD(&client->hash_list); in fio_client_add()
/external/e2fsprogs/lib/e2p/
Dhashstr.c25 static struct hash hash_list[] = { variable
37 for (p = hash_list; p->string; p++) { in e2p_hash2string()
54 for (p = hash_list; p->string; p++) { in e2p_string2hash()
/external/vboot_reference/host/lib21/include/
Dhost_fw_preamble2.h30 const struct vb2_signature **hash_list,
/external/fio/t/
Dbtrace2fio.c71 struct flist_head hash_list; member
439 p = flist_entry(e, struct btrace_pid, hash_list); in pid_hash_find()
449 struct flist_head *hash_list; in pid_hash_get() local
452 hash_list = &pid_hash[hash_long(pid, PID_HASH_BITS)]; in pid_hash_get()
454 p = pid_hash_find(pid, hash_list); in pid_hash_get()
468 flist_add_tail(&p->hash_list, hash_list); in pid_hash_get()
850 flist_del(&p->hash_list); in free_p()