/Linux-v4.19/fs/f2fs/ |
D | dir.c | 112 unsigned long bit_pos = 0; in f2fs_find_target_dentry() local 117 while (bit_pos < d->max) { in f2fs_find_target_dentry() 118 if (!test_bit_le(bit_pos, d->bitmap)) { in f2fs_find_target_dentry() 119 bit_pos++; in f2fs_find_target_dentry() 124 de = &d->dentry[bit_pos]; in f2fs_find_target_dentry() 127 bit_pos++; in f2fs_find_target_dentry() 132 fscrypt_match_name(fname, d->filename[bit_pos], in f2fs_find_target_dentry() 140 bit_pos += GET_DENTRY_SLOTS(le16_to_cpu(de->name_len)); in f2fs_find_target_dentry() 473 unsigned int bit_pos) in f2fs_update_dentry() argument 479 de = &d->dentry[bit_pos]; in f2fs_update_dentry() [all …]
|
D | inline.c | 436 unsigned long bit_pos = 0; in f2fs_add_inline_entries() local 441 while (bit_pos < d.max) { in f2fs_add_inline_entries() 447 if (!test_bit_le(bit_pos, d.bitmap)) { in f2fs_add_inline_entries() 448 bit_pos++; in f2fs_add_inline_entries() 452 de = &d.dentry[bit_pos]; in f2fs_add_inline_entries() 455 bit_pos++; in f2fs_add_inline_entries() 459 new_name.name = d.filename[bit_pos]; in f2fs_add_inline_entries() 470 bit_pos += GET_DENTRY_SLOTS(le16_to_cpu(de->name_len)); in f2fs_add_inline_entries() 536 unsigned int bit_pos; in f2fs_add_inline_entry() local 551 bit_pos = f2fs_room_for_filename(d.bitmap, slots, d.max); in f2fs_add_inline_entry() [all …]
|
/Linux-v4.19/drivers/pci/controller/dwc/ |
D | pci-keystone-dw.c | 74 u32 *bit_pos) in update_reg_offset_bit_pos() argument 77 *bit_pos = offset >> 3; in update_reg_offset_bit_pos() 125 u32 reg_offset, bit_pos; in ks_dw_pcie_msi_irq_ack() local 131 update_reg_offset_bit_pos(irq, ®_offset, &bit_pos); in ks_dw_pcie_msi_irq_ack() 134 BIT(bit_pos)); in ks_dw_pcie_msi_irq_ack() 140 u32 reg_offset, bit_pos; in ks_dw_pcie_msi_set_irq() local 144 update_reg_offset_bit_pos(irq, ®_offset, &bit_pos); in ks_dw_pcie_msi_set_irq() 146 BIT(bit_pos)); in ks_dw_pcie_msi_set_irq() 151 u32 reg_offset, bit_pos; in ks_dw_pcie_msi_clear_irq() local 155 update_reg_offset_bit_pos(irq, ®_offset, &bit_pos); in ks_dw_pcie_msi_clear_irq() [all …]
|
/Linux-v4.19/drivers/scsi/cxlflash/ |
D | vlun.c | 160 u64 bit_pos = -1; in find_free_range() local 167 bit_pos = find_first_bit(lam, num_bits); in find_free_range() 171 __func__, bit_pos, bali->lun_alloc_map[i], i); in find_free_range() 175 clear_bit(bit_pos, lam); in find_free_range() 179 return bit_pos; in find_free_range() 190 u64 bit_pos = -1; in ba_alloc() local 207 bit_pos = find_free_range(bali->free_curr_idx, in ba_alloc() 209 if (bit_pos == -1) { in ba_alloc() 210 bit_pos = find_free_range(bali->free_low_idx, in ba_alloc() 213 if (bit_pos == -1) { in ba_alloc() [all …]
|
/Linux-v4.19/drivers/block/drbd/ |
D | drbd_proc.c | 205 unsigned long bit_pos; in drbd_syncer_progress() local 209 bit_pos = bm_bits - device->ov_left; in drbd_syncer_progress() 213 bit_pos = device->bm_resync_fo; in drbd_syncer_progress() 218 (int)(bit_pos / (bm_bits/100+1)), in drbd_syncer_progress() 219 (unsigned long long)bit_pos * BM_SECT_PER_BIT, in drbd_syncer_progress()
|
/Linux-v4.19/arch/arm64/kernel/probes/ |
D | simulate-insn.c | 78 int bit_pos = ((opcode & (1 << 31)) >> 26) | ((opcode >> 19) & 0x1f); in check_tbz() local 80 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) == 0; in check_tbz() 86 int bit_pos = ((opcode & (1 << 31)) >> 26) | ((opcode >> 19) & 0x1f); in check_tbnz() local 88 return ((get_x_reg(regs, xn) >> bit_pos) & 0x1) != 0; in check_tbnz()
|
/Linux-v4.19/arch/sh/drivers/ |
D | heartbeat.c | 40 new = (1 << hd->bit_pos[bit]); in heartbeat_toggle_bit() 113 hd->bit_pos = default_bit_pos; in heartbeat_drv_probe() 119 hd->mask |= (1 << hd->bit_pos[i]); in heartbeat_drv_probe()
|
/Linux-v4.19/drivers/usb/gadget/udc/ |
D | mv_udc_core.c | 131 u32 bit_pos; in process_ep_req() local 184 bit_pos = 1 << curr_req->ep->ep_num; in process_ep_req() 186 bit_pos = 1 << (16 + curr_req->ep->ep_num); in process_ep_req() 190 while (readl(&udc->op_regs->epstatus) & bit_pos) in process_ep_req() 256 u32 bit_pos, direction; in queue_dtd() local 264 bit_pos = 1 << (((direction == EP_DIR_OUT) ? 0 : 16) + ep->ep_num); in queue_dtd() 275 if (readl(&udc->op_regs->epprime) & bit_pos) in queue_dtd() 286 epstatus = readl(&udc->op_regs->epstatus) & bit_pos; in queue_dtd() 329 writel(bit_pos, &udc->op_regs->epprime); in queue_dtd() 442 u32 bit_pos, epctrlx, direction; in mv_ep_enable() local [all …]
|
/Linux-v4.19/drivers/platform/x86/ |
D | intel_telemetry_debugfs.c | 81 (BUF)[idx] = ((EVTLOG) >> (EVTDAT)[idx].bit_pos) & \ 108 u32 bit_pos; member 132 u32 bit_pos; member 158 u32 bit_pos; member 173 u32 bit_pos; member 188 u32 bit_pos; member 215 u32 bit_pos; member 377 conf->pss_idle_data[conf->pss_idle_evts - 1].bit_pos) & in telem_pss_states_show() 656 conf->pss_idle_data[idx].bit_pos) & in telem_soc_states_show() 661 conf->pss_idle_data[idx].bit_pos) & in telem_soc_states_show()
|
/Linux-v4.19/drivers/regulator/ |
D | tps65910-regulator.c | 830 u8 bit_pos = (1 << pmic->ext_sleep_control[id] & 0xFF); in tps65910_set_ext_sleep_config() local 859 TPS65910_EN1_LDO_ASS + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 862 TPS65910_EN1_LDO_ASS + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 872 TPS65910_EN2_LDO_ASS + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 875 TPS65910_EN2_LDO_ASS + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 887 TPS65910_EN3_LDO_ASS + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 890 TPS65910_EN3_LDO_ASS + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 902 TPS65910_SLEEP_KEEP_LDO_ON + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 905 TPS65910_SLEEP_SET_LDO_OFF + regoffs, bit_pos); in tps65910_set_ext_sleep_config() 951 TPS65910_SLEEP_KEEP_LDO_ON + regoffs, bit_pos); in tps65910_set_ext_sleep_config() [all …]
|
/Linux-v4.19/drivers/mfd/ |
D | palmas.c | 335 int bit_pos, ret; in palmas_ext_control_req_config() local 354 bit_pos = pmic_ddata->sleep_req_info[id].bit_pos; in palmas_ext_control_req_config() 358 reg_add, BIT(bit_pos), BIT(bit_pos)); in palmas_ext_control_req_config() 361 reg_add, BIT(bit_pos), 0); in palmas_ext_control_req_config()
|
/Linux-v4.19/lib/xz/ |
D | xz_dec_bcj.c | 204 uint32_t bit_pos; in bcj_ia64() local 224 for (slot = 0, bit_pos = 5; slot < 3; ++slot, bit_pos += 41) { in bcj_ia64() 228 byte_pos = bit_pos >> 3; in bcj_ia64() 229 bit_res = bit_pos & 7; in bcj_ia64()
|
/Linux-v4.19/arch/sh/include/asm/ |
D | heartbeat.h | 11 unsigned char *bit_pos; member
|
/Linux-v4.19/include/linux/ |
D | cper.h | 454 __u16 bit_pos; member 474 __u16 bit_pos; member 494 __u16 bit_pos; member
|
/Linux-v4.19/drivers/firmware/arm_scmi/ |
D | driver.c | 302 unsigned long flags, bit_pos; in scmi_xfer_get() local 308 bit_pos = find_first_zero_bit(minfo->xfer_alloc_table, in scmi_xfer_get() 310 if (bit_pos == info->desc->max_msg) { in scmi_xfer_get() 314 set_bit(bit_pos, minfo->xfer_alloc_table); in scmi_xfer_get() 317 xfer_id = bit_pos; in scmi_xfer_get()
|
/Linux-v4.19/arch/sh/boards/mach-se/7751/ |
D | setup.c | 22 .bit_pos = heartbeat_bit_pos,
|
/Linux-v4.19/arch/sh/boards/mach-se/7206/ |
D | setup.c | 52 .bit_pos = heartbeat_bit_pos,
|
/Linux-v4.19/arch/sh/boards/mach-se/7721/ |
D | setup.c | 24 .bit_pos = heartbeat_bit_pos,
|
/Linux-v4.19/drivers/crypto/chelsio/chtls/ |
D | chtls_hw.c | 97 int chtls_set_tcb_tflag(struct sock *sk, unsigned int bit_pos, int val) in chtls_set_tcb_tflag() argument 99 return chtls_set_tcb_field(sk, 1, 1ULL << bit_pos, in chtls_set_tcb_tflag() 100 (u64)val << bit_pos); in chtls_set_tcb_tflag()
|
/Linux-v4.19/drivers/pinctrl/sh-pfc/ |
D | core.c | 256 unsigned int bit_pos; in sh_pfc_get_config_reg() local 263 for (bit_pos = 0; bit_pos < r_width; bit_pos += curr_width) { in sh_pfc_get_config_reg()
|
/Linux-v4.19/arch/sh/boards/ |
D | board-polaris.c | 69 .bit_pos = heartbeat_bit_pos,
|
/Linux-v4.19/drivers/firmware/efi/ |
D | cper.c | 255 mem->bit_pos); in cper_mem_err_location() 303 cmem->bit_pos = mem->bit_pos; in cper_mem_err_pack()
|
/Linux-v4.19/arch/sh/boards/mach-se/770x/ |
D | setup.c | 96 .bit_pos = heartbeat_bit_pos,
|
/Linux-v4.19/sound/soc/codecs/ |
D | cs35l34.c | 277 unsigned int reg, bit_pos; in cs35l34_set_tdm_slot() local 330 bit_pos = slot - ((slot / 8) * (8)); in cs35l34_set_tdm_slot() 332 1 << bit_pos, 1 << bit_pos); in cs35l34_set_tdm_slot()
|
D | cs35l33.c | 559 unsigned int reg, bit_pos, i; in cs35l33_set_tdm_slot() local 629 bit_pos = slot - ((slot / 8) * (8)); in cs35l33_set_tdm_slot() 631 1 << bit_pos, 1 << bit_pos); in cs35l33_set_tdm_slot()
|