Home
last modified time | relevance | path

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

/linux-4.19.296/fs/hfsplus/
Dwrapper.c95 static int hfsplus_read_mdb(void *bufptr, struct hfsplus_wd *wd) in hfsplus_read_mdb() argument
111 wd->ablk_size = in hfsplus_read_mdb()
113 if (wd->ablk_size < HFSPLUS_SECTOR_SIZE) in hfsplus_read_mdb()
115 if (wd->ablk_size % HFSPLUS_SECTOR_SIZE) in hfsplus_read_mdb()
117 wd->ablk_start = in hfsplus_read_mdb()
121 wd->embed_start = (extent >> 16) & 0xFFFF; in hfsplus_read_mdb()
122 wd->embed_count = extent & 0xFFFF; in hfsplus_read_mdb()
163 struct hfsplus_wd wd; in hfsplus_read_wrapper() local
199 if (!hfsplus_read_mdb(sbi->s_vhdr, &wd)) in hfsplus_read_wrapper()
201 wd.ablk_size >>= HFSPLUS_SECTOR_SHIFT; in hfsplus_read_wrapper()
[all …]
/linux-4.19.296/fs/notify/inotify/
Dinotify_user.c193 inotify_event.wd = event->wd; in copy_event_to_user()
370 i_mark->wd = ret; in inotify_add_to_idr()
380 int wd) in inotify_idr_find_locked() argument
388 i_mark = idr_find(idr, wd); in inotify_idr_find_locked()
401 int wd) in inotify_idr_find() argument
407 i_mark = inotify_idr_find_locked(group, wd); in inotify_idr_find()
423 int wd; in inotify_remove_from_idr() local
426 wd = i_mark->wd; in inotify_remove_from_idr()
432 if (wd == -1) { in inotify_remove_from_idr()
434 __func__, i_mark, i_mark->wd, i_mark->fsn_mark.group); in inotify_remove_from_idr()
[all …]
Dinotify.h8 int wd; member
16 int wd; member
Dinotify_fsnotify.c122 event->wd = i_mark->wd; in inotify_handle_event()
176 fsn_mark->group, i_mark->wd); in idr_callback()
/linux-4.19.296/drivers/hid/
Dhid-logitech-hidpp.c1581 struct hidpp_ff_work_data *wd = container_of(w, struct hidpp_ff_work_data, work); in hidpp_ff_work_handler() local
1582 struct hidpp_ff_private_data *data = wd->data; in hidpp_ff_work_handler()
1588 switch (wd->effect_id) { in hidpp_ff_work_handler()
1590 wd->params[0] = data->slot_autocenter; in hidpp_ff_work_handler()
1597 wd->params[0] = hidpp_ff_find_effect(data, wd->effect_id); in hidpp_ff_work_handler()
1603 wd->command, wd->params, wd->size, &response); in hidpp_ff_work_handler()
1611 switch (wd->command) { in hidpp_ff_work_handler()
1615 if (wd->effect_id >= 0) in hidpp_ff_work_handler()
1617 data->effect_ids[slot-1] = wd->effect_id; in hidpp_ff_work_handler()
1618 else if (wd->effect_id >= HIDPP_FF_EFFECTID_AUTOCENTER) in hidpp_ff_work_handler()
[all …]
/linux-4.19.296/include/net/
Dpkt_sched.h76 void qdisc_watchdog_init_clockid(struct qdisc_watchdog *wd, struct Qdisc *qdisc,
78 void qdisc_watchdog_init(struct qdisc_watchdog *wd, struct Qdisc *qdisc);
79 void qdisc_watchdog_schedule_ns(struct qdisc_watchdog *wd, u64 expires);
81 static inline void qdisc_watchdog_schedule(struct qdisc_watchdog *wd, in qdisc_watchdog_schedule() argument
84 qdisc_watchdog_schedule_ns(wd, PSCHED_TICKS2NS(expires)); in qdisc_watchdog_schedule()
87 void qdisc_watchdog_cancel(struct qdisc_watchdog *wd);
/linux-4.19.296/lib/raid6/
Dneon.uc62 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
72 wd$$ = vld1q_u8(&dptr[z][d+$$*NSIZE]);
73 wp$$ = veorq_u8(wp$$, wd$$);
79 wq$$ = veorq_u8(w1$$, wd$$);
93 register unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
106 wd$$ = vld1q_u8(&dptr[z][d+$$*NSIZE]);
107 wp$$ = veorq_u8(wp$$, wd$$);
113 wq$$ = veorq_u8(w1$$, wd$$);
Dint.uc88 unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
97 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
98 wp$$ ^= wd$$;
103 wq$$ = w1$$ ^ wd$$;
117 unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
127 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
128 wp$$ ^= wd$$;
133 wq$$ = w1$$ ^ wd$$;
Dvpermxor.uc49 unative_t wp$$, wq$$, wd$$;
59 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
61 wp$$ = vec_xor(wp$$, wd$$);
65 wq$$ = vec_xor(wq$$, wd$$);
Daltivec.uc77 unative_t wd$$, wq$$, wp$$, w1$$, w2$$;
87 wd$$ = *(unative_t *)&dptr[z][d+$$*NSIZE];
88 wp$$ = vec_xor(wp$$, wd$$);
93 wq$$ = vec_xor(w1$$, wd$$);
/linux-4.19.296/drivers/base/power/
Dmain.c494 #define DECLARE_DPM_WATCHDOG_ON_STACK(wd) \ argument
495 struct dpm_watchdog wd
507 struct dpm_watchdog *wd = from_timer(wd, t, timer); in dpm_watchdog_handler() local
509 dev_emerg(wd->dev, "**** DPM device timeout ****\n"); in dpm_watchdog_handler()
510 show_stack(wd->tsk, NULL); in dpm_watchdog_handler()
512 dev_driver_string(wd->dev), dev_name(wd->dev)); in dpm_watchdog_handler()
520 static void dpm_watchdog_set(struct dpm_watchdog *wd, struct device *dev) in dpm_watchdog_set() argument
522 struct timer_list *timer = &wd->timer; in dpm_watchdog_set()
524 wd->dev = dev; in dpm_watchdog_set()
525 wd->tsk = current; in dpm_watchdog_set()
[all …]
/linux-4.19.296/include/uapi/linux/
Dinotify.h22 __s32 wd; /* watch descriptor */ member
/linux-4.19.296/drivers/media/dvb-frontends/
Dstv0367.c638 int wd = 100; in stv0367ter_check_syr() local
646 while ((!SYR_var) && (wd > 0)) { in stv0367ter_check_syr()
648 wd -= 2; in stv0367ter_check_syr()
669 int wd = 0; in stv0367ter_check_cpamp() local
676 wd = 10; in stv0367ter_check_cpamp()
680 wd = 55; in stv0367ter_check_cpamp()
684 wd = 30; in stv0367ter_check_cpamp()
691 dprintk("%s: CPAMPMin=%d wd=%d\n", __func__, CPAMPMin, wd); in stv0367ter_check_cpamp()
694 while ((CPAMPvalue < CPAMPMin) && (wd > 0)) { in stv0367ter_check_cpamp()
696 wd -= 1; in stv0367ter_check_cpamp()
[all …]
/linux-4.19.296/drivers/slimbus/
Dqcom-ctrl.c115 struct work_struct wd; member
258 queue_work(ctrl->rxwq, &ctrl->wd); in qcom_slim_handle_rx_irq()
445 wd); in qcom_slim_rxwq()
550 INIT_WORK(&ctrl->wd, qcom_slim_rxwq); in qcom_slim_probe()
/linux-4.19.296/fs/notify/
Dfdinfo.c87 inode_mark->wd, inode->i_ino, inode->i_sb->s_dev, in inotify_fdinfo()
/linux-4.19.296/include/linux/
Dsyscalls.h362 asmlinkage long sys_inotify_rm_watch(int fd, __s32 wd);