Home
last modified time | relevance | path

Searched refs:ins (Results 1 – 16 of 16) sorted by relevance

/linux-4.19.296/drivers/misc/sgi-gru/
Dgru_instructions.h340 static inline void gru_start_instruction(struct gru_instruction *ins, unsigned long op64) in gru_start_instruction() argument
342 gru_ordered_store_ulong(ins, op64); in gru_start_instruction()
344 gru_flush_cache(ins); in gru_start_instruction()
362 struct gru_instruction *ins = (struct gru_instruction *)cb; in gru_vload_phys() local
364 ins->baddr0 = (long)gpa | ((unsigned long)iaa << 62); in gru_vload_phys()
365 ins->nelem = 1; in gru_vload_phys()
366 ins->op1_stride = 1; in gru_vload_phys()
367 gru_start_instruction(ins, __opdword(OP_VLOAD, 0, XTYPE_DW, iaa, 0, in gru_vload_phys()
374 struct gru_instruction *ins = (struct gru_instruction *)cb; in gru_vstore_phys() local
376 ins->baddr0 = (long)gpa | ((unsigned long)iaa << 62); in gru_vstore_phys()
[all …]
/linux-4.19.296/fs/ocfs2/
Dextent_map.c186 struct ocfs2_extent_map_item *ins) in ocfs2_try_to_merge_extent_map() argument
191 if (ins->ei_phys == (emi->ei_phys + emi->ei_clusters) && in ocfs2_try_to_merge_extent_map()
192 ins->ei_cpos == (emi->ei_cpos + emi->ei_clusters) && in ocfs2_try_to_merge_extent_map()
193 ins->ei_flags == emi->ei_flags) { in ocfs2_try_to_merge_extent_map()
194 emi->ei_clusters += ins->ei_clusters; in ocfs2_try_to_merge_extent_map()
196 } else if ((ins->ei_phys + ins->ei_clusters) == emi->ei_phys && in ocfs2_try_to_merge_extent_map()
197 (ins->ei_cpos + ins->ei_clusters) == emi->ei_cpos && in ocfs2_try_to_merge_extent_map()
198 ins->ei_flags == emi->ei_flags) { in ocfs2_try_to_merge_extent_map()
199 emi->ei_phys = ins->ei_phys; in ocfs2_try_to_merge_extent_map()
200 emi->ei_cpos = ins->ei_cpos; in ocfs2_try_to_merge_extent_map()
[all …]
/linux-4.19.296/fs/btrfs/
Dulist.c144 static int ulist_rbtree_insert(struct ulist *ulist, struct ulist_node *ins) in ulist_rbtree_insert() argument
154 if (cur->val < ins->val) in ulist_rbtree_insert()
156 else if (cur->val > ins->val) in ulist_rbtree_insert()
161 rb_link_node(&ins->rb_node, parent, p); in ulist_rbtree_insert()
162 rb_insert_color(&ins->rb_node, &ulist->root); in ulist_rbtree_insert()
Dinode.c753 struct btrfs_key ins; in submit_compressed_extents() local
814 0, alloc_hint, &ins, 1, 1); in submit_compressed_extents()
845 ins.objectid, /* block_start */ in submit_compressed_extents()
846 ins.offset, /* block_len */ in submit_compressed_extents()
847 ins.offset, /* orig_block_len */ in submit_compressed_extents()
858 ins.objectid, in submit_compressed_extents()
860 ins.offset, in submit_compressed_extents()
870 btrfs_dec_block_group_reservations(fs_info, ins.objectid); in submit_compressed_extents()
886 ins.objectid, in submit_compressed_extents()
887 ins.offset, async_extent->pages, in submit_compressed_extents()
[all …]
Ddelayed-ref.c110 struct btrfs_delayed_ref_head *ins; in htree_insert() local
113 ins = rb_entry(node, struct btrfs_delayed_ref_head, href_node); in htree_insert()
114 bytenr = ins->bytenr; in htree_insert()
134 struct btrfs_delayed_ref_node *ins) in tree_insert() argument
137 struct rb_node *node = &ins->ref_node; in tree_insert()
147 comp = comp_refs(ins, entry, true); in tree_insert()
Dextent-tree.c65 struct btrfs_key *ins, int ref_mod);
2170 struct btrfs_key ins; in run_delayed_data_ref() local
2175 ins.objectid = node->bytenr; in run_delayed_data_ref()
2176 ins.offset = node->num_bytes; in run_delayed_data_ref()
2177 ins.type = BTRFS_EXTENT_ITEM_KEY; in run_delayed_data_ref()
2191 ref->offset, &ins, in run_delayed_data_ref()
7237 u64 hint_byte, struct btrfs_key *ins, in find_free_extent() argument
7259 ins->type = BTRFS_EXTENT_ITEM_KEY; in find_free_extent()
7260 ins->objectid = 0; in find_free_extent()
7261 ins->offset = 0; in find_free_extent()
[all …]
Ddelayed-inode.c399 struct btrfs_delayed_item *ins, in __btrfs_add_delayed_item() argument
415 node = &ins->rb_node; in __btrfs_add_delayed_item()
422 cmp = btrfs_comp_cpu_keys(&item->key, &ins->key); in __btrfs_add_delayed_item()
433 ins->delayed_node = delayed_node; in __btrfs_add_delayed_item()
434 ins->ins_or_del = action; in __btrfs_add_delayed_item()
436 if (ins->key.type == BTRFS_DIR_INDEX_KEY && in __btrfs_add_delayed_item()
438 ins->key.offset >= delayed_node->index_cnt) in __btrfs_add_delayed_item()
439 delayed_node->index_cnt = ins->key.offset + 1; in __btrfs_add_delayed_item()
Dtree-log.c663 struct btrfs_key ins; in replay_one_extent() local
678 ins.objectid = btrfs_file_extent_disk_bytenr(eb, item); in replay_one_extent()
679 ins.offset = btrfs_file_extent_disk_num_bytes(eb, item); in replay_one_extent()
680 ins.type = BTRFS_EXTENT_ITEM_KEY; in replay_one_extent()
698 if (ins.objectid > 0) { in replay_one_extent()
706 ret = btrfs_lookup_data_extent(fs_info, ins.objectid, in replay_one_extent()
707 ins.offset); in replay_one_extent()
710 ins.objectid, ins.offset, in replay_one_extent()
722 key->objectid, offset, &ins); in replay_one_extent()
729 csum_start = ins.objectid; in replay_one_extent()
[all …]
Dctree.h2669 struct btrfs_key *ins);
2672 struct btrfs_key *ins);
2675 struct btrfs_key *ins, int is_data, int delalloc);
/linux-4.19.296/fs/ntfs/
Dunistr.c259 int ntfs_nlstoucs(const ntfs_volume *vol, const char *ins, in ntfs_nlstoucs() argument
268 if (likely(ins)) { in ntfs_nlstoucs()
272 wc_len = nls->char2uni(ins + i, ins_len - i, in ntfs_nlstoucs()
336 int ntfs_ucstonls(const ntfs_volume *vol, const ntfschar *ins, in ntfs_ucstonls() argument
344 if (ins) { in ntfs_ucstonls()
358 retry: wc = nls->uni2char(le16_to_cpu(ins[i]), ns + o, in ntfs_ucstonls()
Dntfs.h127 extern int ntfs_nlstoucs(const ntfs_volume *vol, const char *ins,
129 extern int ntfs_ucstonls(const ntfs_volume *vol, const ntfschar *ins,
/linux-4.19.296/drivers/pci/hotplug/
Dcpci_hotplug_pci.c104 int ins = 0; in cpci_check_and_clear_ins() local
122 ins = 0; in cpci_check_and_clear_ins()
124 ins = 1; in cpci_check_and_clear_ins()
126 return ins; in cpci_check_and_clear_ins()
/linux-4.19.296/fs/btrfs/tests/
Dqgroup-tests.c23 struct btrfs_key ins; in insert_normal_tree_ref() local
29 ins.objectid = bytenr; in insert_normal_tree_ref()
30 ins.type = BTRFS_EXTENT_ITEM_KEY; in insert_normal_tree_ref()
31 ins.offset = num_bytes; in insert_normal_tree_ref()
40 ret = btrfs_insert_empty_item(&trans, root, path, &ins, size); in insert_normal_tree_ref()
/linux-4.19.296/include/linux/
Dlogic_pio.h34 u32 (*ins)(void *hostdata, unsigned long addr, void *buffer, member
/linux-4.19.296/lib/
Dlogic_pio.c276 entry->ops->ins(entry->hostdata, \
/linux-4.19.296/drivers/bus/
Dhisi_lpc.c339 .ins = hisi_lpc_comm_ins,