Lines Matching defs:store
47 * @ptrp: place to store the value associated to @key
191 * @keyp: place to store valid key
573 struct nilfs_bmap_store *store)
575 memcpy(store->data, bmap->b_u.u_data, sizeof(store->data));
576 store->last_allocated_key = bmap->b_last_allocated_key;
577 store->last_allocated_ptr = bmap->b_last_allocated_ptr;
578 store->state = bmap->b_state;
582 const struct nilfs_bmap_store *store)
584 memcpy(bmap->b_u.u_data, store->data, sizeof(store->data));
585 bmap->b_last_allocated_key = store->last_allocated_key;
586 bmap->b_last_allocated_ptr = store->last_allocated_ptr;
587 bmap->b_state = store->state;