/linux-6.6.21/drivers/md/bcache/ |
D | extents.c | 228 struct bkey *insert, in bch_btree_ptr_insert_fixup() argument 234 if (!KEY_OFFSET(insert)) in bch_btree_ptr_insert_fixup() 324 struct bkey *insert, in bch_extent_insert_fixup() argument 333 BUG_ON(!KEY_OFFSET(insert)); in bch_extent_insert_fixup() 334 BUG_ON(!KEY_SIZE(insert)); in bch_extent_insert_fixup() 342 if (bkey_cmp(&START_KEY(k), insert) >= 0) { in bch_extent_insert_fixup() 349 if (bkey_cmp(k, &START_KEY(insert)) <= 0) in bch_extent_insert_fixup() 378 if (KEY_START(k) > KEY_START(insert) + sectors_found) in bch_extent_insert_fixup() 393 sectors_found = KEY_OFFSET(k) - KEY_START(insert); in bch_extent_insert_fixup() 396 if (bkey_cmp(insert, k) < 0 && in bch_extent_insert_fixup() [all …]
|
/linux-6.6.21/drivers/net/wireguard/selftest/ |
D | allowedips.c | 460 #define insert(version, mem, ipa, ipb, ipc, ipd, cidr) \ macro 513 insert(4, a, 192, 168, 4, 0, 24); in wg_allowedips_selftest() 514 insert(4, b, 192, 168, 4, 4, 32); in wg_allowedips_selftest() 515 insert(4, c, 192, 168, 0, 0, 16); in wg_allowedips_selftest() 516 insert(4, d, 192, 95, 5, 64, 27); in wg_allowedips_selftest() 518 insert(4, c, 192, 95, 5, 65, 27); in wg_allowedips_selftest() 519 insert(6, d, 0x26075300, 0x60006b00, 0, 0xc05f0543, 128); in wg_allowedips_selftest() 520 insert(6, c, 0x26075300, 0x60006b00, 0, 0, 64); in wg_allowedips_selftest() 521 insert(4, e, 0, 0, 0, 0, 0); in wg_allowedips_selftest() 522 insert(6, e, 0, 0, 0, 0, 0); in wg_allowedips_selftest() [all …]
|
/linux-6.6.21/virt/kvm/ |
D | coalesced_mmio.c | 70 __u32 insert; in coalesced_mmio_write() local 77 insert = READ_ONCE(ring->last); in coalesced_mmio_write() 78 if (!coalesced_mmio_has_room(dev, insert) || in coalesced_mmio_write() 79 insert >= KVM_COALESCED_MMIO_MAX) { in coalesced_mmio_write() 86 ring->coalesced_mmio[insert].phys_addr = addr; in coalesced_mmio_write() 87 ring->coalesced_mmio[insert].len = len; in coalesced_mmio_write() 88 memcpy(ring->coalesced_mmio[insert].data, val, len); in coalesced_mmio_write() 89 ring->coalesced_mmio[insert].pio = dev->zone.pio; in coalesced_mmio_write() 91 ring->last = (insert + 1) % KVM_COALESCED_MMIO_MAX; in coalesced_mmio_write()
|
/linux-6.6.21/tools/testing/selftests/tc-testing/plugin-lib/ |
D | valgrindPlugin.py | 83 cmdlist.insert(0, '--track-origins=yes') 84 cmdlist.insert(0, '--show-leak-kinds=definite,indirect') 85 cmdlist.insert(0, '--leak-check=full') 86 cmdlist.insert(0, '--log-file=vgnd-{}.log'.format(self.args.testid)) 87 cmdlist.insert(0, '-v') # ask for summary of non-leak errors 88 cmdlist.insert(0, ENVIR['VALGRIND_BIN'])
|
D | nsPlugin.py | 64 cmdlist.insert(0, self.args.NAMES['NS']) 65 cmdlist.insert(0, 'exec') 66 cmdlist.insert(0, 'netns') 67 cmdlist.insert(0, self.args.NAMES['IP'])
|
/linux-6.6.21/Documentation/devicetree/bindings/power/supply/ |
D | max8925_battery.txt | 9 - no-insert-detect: whether support insert detect 17 no-insert-detect = <0>;
|
/linux-6.6.21/drivers/accessibility/speakup/ |
D | DefaultKeyAssignments | 6 We have remapped the insert or zero key on the keypad to act as a 8 InsKeyPad-period means hold down the insert key like a shift key and 31 InsKeyPad-9 Move reading cursor to top of screen (insert pgup) 32 InsKeyPad-3 Move reading cursor to bottom of screen (insert pgdn) 33 InsKeyPad-7 Move reading cursor to left edge of screen (insert home) 34 InsKeyPad-1 Move reading cursor to right edge of screen (insert end)
|
/linux-6.6.21/tools/testing/selftests/timers/ |
D | leap-a-day.c | 184 int insert = 1; in main() local 263 if (insert) in main() 320 if (insert) in main() 360 insert = !insert; in main()
|
/linux-6.6.21/fs/notify/ |
D | notification.c | 85 void (*insert)(struct fsnotify_group *, in fsnotify_insert_event() 123 if (insert) in fsnotify_insert_event() 124 insert(group, event); in fsnotify_insert_event()
|
/linux-6.6.21/include/linux/ |
D | dmar.h | 146 extern int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert); 163 static inline int dmar_iommu_hotplug(struct dmar_drhd_unit *dmaru, bool insert) in dmar_iommu_hotplug() argument 170 extern int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert); 172 static inline int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert) in dmar_ir_hotplug() argument
|
D | btree-type.h | 44 static inline int BTREE_FN(insert)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key, in BTREE_FN() argument 87 static inline int BTREE_FN(insert)(BTREE_TYPE_HEAD *head, BTREE_KEYTYPE key, in BTREE_FN() argument
|
/linux-6.6.21/net/rds/ |
D | cong.c | 105 struct rds_cong_map *insert) in rds_cong_tree_walk() argument 126 if (insert) { in rds_cong_tree_walk() 127 rb_link_node(&insert->m_rb_node, parent, p); in rds_cong_tree_walk() 128 rb_insert_color(&insert->m_rb_node, &rds_cong_tree); in rds_cong_tree_walk()
|
/linux-6.6.21/Documentation/firmware-guide/acpi/ |
D | method-customizing.rst | 16 2. insert a completely new method in order to create a missing 66 2. insert a new method 70 insert and then follow the step c) ~ g) in section 1. 83 method override. i.e. if we want to insert/override multiple
|
/linux-6.6.21/fs/ocfs2/ |
D | alloc.c | 3861 struct ocfs2_insert_type *insert) in ocfs2_insert_at_leaf() argument 3863 int i = insert->ins_contig_index; in ocfs2_insert_at_leaf() 3869 if (insert->ins_split != SPLIT_NONE) { in ocfs2_insert_at_leaf() 3874 insert->ins_split, rec, in ocfs2_insert_at_leaf() 3882 if (insert->ins_contig != CONTIG_NONE) { in ocfs2_insert_at_leaf() 3884 if (insert->ins_contig == CONTIG_LEFT) { in ocfs2_insert_at_leaf() 3907 if (insert->ins_appending == APPEND_TAIL) { in ocfs2_insert_at_leaf() 4160 struct ocfs2_insert_type *insert) in ocfs2_insert_path() argument 4195 if (insert->ins_split != SPLIT_NONE) { in ocfs2_insert_path() 4202 insert_rec, insert->ins_split); in ocfs2_insert_path() [all …]
|
/linux-6.6.21/rust/macros/ |
D | vtable.rs | 48 consts.insert(const_name); in vtable() 77 consts.insert(gen_const_name); in vtable()
|
/linux-6.6.21/drivers/net/can/dev/ |
D | rx-offload.c | 80 struct sk_buff *pos, *insert = NULL; in __skb_queue_add_sort() local 97 insert = pos; in __skb_queue_add_sort() 100 if (!insert) in __skb_queue_add_sort() 103 __skb_queue_after(head, insert, new); in __skb_queue_add_sort()
|
/linux-6.6.21/Documentation/sphinx/ |
D | rstFlatTable.py | 130 tableNode.insert(0, title) 254 self.rows[y].insert(x+c+1, None) 262 self.rows[y+r+1].insert(x+c, None) 345 cellElements.insert(0, target)
|
/linux-6.6.21/Documentation/translations/zh_TW/process/ |
D | email-clients.rst | 111 通過它配置你的郵件建立工具欄菜單,還可以帶上"insert file"圖標。 136 一個"insert file"選項,它可以通過不改變文件內容的方式插入文件。 143 按中鍵之前或者shift-insert或者使用
|
/linux-6.6.21/Documentation/userspace-api/media/v4l/ |
D | selection-api-intro.rst | 9 can insert the image into larger one. Some video output devices can crop 10 part of an input image, scale it up or down and insert it at an
|
/linux-6.6.21/Documentation/ |
D | conf.py | 44 sys.path.insert(0, os.path.abspath('sphinx')) 358 html_sidebars['**'].insert(0, 'about.html')
|
/linux-6.6.21/scripts/ |
D | .gitignore | 4 /insert-sys-cert
|
/linux-6.6.21/lib/ |
D | rbtree_test.c | 32 static void insert(struct test_node *node, struct rb_root_cached *root) in insert() function 261 insert(nodes + j, &root); in rbtree_test_init() 290 insert(nodes + i, &root); in rbtree_test_init() 337 insert(nodes + j, &root); in rbtree_test_init()
|
/linux-6.6.21/include/linux/netfilter/ |
D | nf_conntrack_common.h | 11 unsigned int insert; member
|
/linux-6.6.21/arch/arm64/kvm/hyp/nvhe/ |
D | page_alloc.c | 104 goto insert; in __hyp_attach_page() 124 insert: in __hyp_attach_page()
|
/linux-6.6.21/drivers/comedi/drivers/ni_routing/tools/ |
D | make_blank_csv.py | 21 fieldnames.insert(0, CSVCollection.source_column_name)
|