Searched refs:periodic (Results 1 - 18 of 18) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/
H A Dff-core.c57 e1->u.periodic.waveform == e2->u.periodic.waveform);
80 effect->u.periodic.waveform = FF_SINE;
81 effect->u.periodic.period = 50;
82 effect->u.periodic.magnitude = max(magnitude, 0x7fff);
83 effect->u.periodic.offset = 0;
84 effect->u.periodic.phase = 0;
85 effect->u.periodic.envelope.attack_length = 0;
86 effect->u.periodic.envelope.attack_level = 0;
87 effect->u.periodic
[all...]
H A Dff-memless.c77 return &effect->u.periodic.envelope;
266 i = apply_envelope(state, abs(new->u.periodic.magnitude),
267 &new->u.periodic.envelope);
502 /* we can emulate periodic effects with RUMBLE */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/joystick/iforce/
H A Diforce-ff.c253 if (old->u.periodic.envelope.attack_length != effect->u.periodic.envelope.attack_length
254 || old->u.periodic.envelope.attack_level != effect->u.periodic.envelope.attack_level
255 || old->u.periodic.envelope.fade_length != effect->u.periodic.envelope.fade_length
256 || old->u.periodic.envelope.fade_level != effect->u.periodic.envelope.fade_level)
268 * Analyse the changes in an effect, and tell if we need to send a periodic
277 return (old->u.periodic
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dehci-mem.c26 * - async and periodic schedules, shared by HC and HCD ... these
151 if (ehci->periodic)
154 ehci->periodic, ehci->periodic_dma);
155 ehci->periodic = NULL;
157 /* shadow periodic table */
211 /* Hardware periodic table */
212 ehci->periodic = (__le32 *)
216 if (ehci->periodic == NULL) {
220 ehci->periodic [i] = EHCI_LIST_END;
H A Dehci-sched.c26 * These are called "periodic" transactions in the EHCI spec.
43 * @periodic: host pointer to qh/itd/sitd
47 periodic_next_shadow (union ehci_shadow *periodic, __le32 tag) argument
51 return &periodic->qh->qh_next;
53 return &periodic->fstn->fstn_next;
55 return &periodic->itd->itd_next;
58 return &periodic->sitd->sitd_next;
66 __le32 *hw_p = &ehci->periodic [frame];
90 __le32 *hw_p = &ehci->periodic [frame];
202 /* How many of the tt's periodic downstrea
[all...]
H A Dohci-q.c81 /* stop periodic dma if it's not needed */
94 /* search for the right schedule branch to use for a periodic ed.
140 struct ed **prev = &ohci->periodic [i];
189 * periodic ones are singly linked (ed_next). that's because the
190 * periodic schedule encodes a tree like figure 3-5 in the ohci
258 /* scan the periodic table to find and unlink this ED */
265 struct ed **prev = &ohci->periodic [i];
439 /* periodic transfers... */
588 int periodic = 0; local
618 /* ... and periodic urb
[all...]
H A Dsl811.h152 /* periodic schedule: interrupt, iso */
154 struct sl811h_ep *periodic[PERIODIC_SIZE]; member in struct:sl811
181 /* periodic schedule */
H A Dohci-dbg.c522 /* dump a snapshot of the periodic schedule (and load) */
525 if (!(ed = ohci->periodic [i]))
592 static CLASS_DEVICE_ATTR (periodic, S_IRUGO, show_periodic, NULL);
H A Dsl811-hcd.c306 * frames start with periodic transfers (after whatever is pending
328 /* could set up the first fullspeed periodic
460 /* periodic deschedule */
464 struct sl811h_ep **prev = &sl811->periodic[i];
688 /* be graceful about almost-inevitable periodic schedule
696 if (sl811->periodic[index])
697 sl811->next_periodic = sl811->periodic[index];
773 /* usb 1.1 says max 90% of a frame is available for periodic transfers.
777 * NOTE: the periodic schedule is a sparse tree, with the load for
934 struct sl811h_ep **prev = &sl811->periodic[
[all...]
H A Dehci.h93 * ehci_hcd: async, reclaim, periodic (and shadow), ...
119 /* periodic schedule support */
122 __le32 *periodic; /* hw periodic table */ member in struct:ehci_hcd
126 union ehci_shadow *pshadow; /* mirror hw periodic table */
127 int next_uframe; /* scan periodic, start here */
128 unsigned periodic_sched; /* periodic activity count */
229 // watchdog stops unless there's still periodic traffic.
281 #define CMD_PSE (1<<4) /* periodic schedule enable */
282 /* 3:2 is periodic fram
[all...]
H A Dohci.h61 /* periodic scheduling params (for intr and iso) */
183 __hc32 int_table [NUM_INTS]; /* periodic schedule */
246 #define OHCI_CTRL_PLE (1 << 2) /* periodic list enable */
367 struct ed *periodic [NUM_INTS]; /* shadow int_table */ member in struct:ohci_hcd
H A Dehci-dbg.c508 /* dump a snapshot of the periodic schedule.
516 tag = Q_NEXT_TYPE (ehci->periodic [i]);
619 static CLASS_DEVICE_ATTR (periodic, S_IRUGO, show_periodic, NULL);
H A Disp116x-hcd.c448 /* periodic deschedule */
452 struct isp116x_ep **prev = &isp116x->periodic[i];
503 isp116x->periodic[index];
651 /* usb 1.1 says max 90% of a frame is available for periodic transfers.
797 struct isp116x_ep **prev = &isp116x->periodic[i];
H A Disp116x.h278 /* periodic schedule: int */
280 struct isp116x_ep *periodic[PERIODIC_SIZE]; member in struct:isp116x
317 /* periodic schedule */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hid/usbhid/
H A Dhid-pidff.c344 * Send periodic effect report to the device
352 effect->u.periodic.magnitude);
354 effect->u.periodic.offset);
355 pidff_set(&pidff->set_periodic[PID_PHASE], effect->u.periodic.phase);
356 pidff->set_periodic[PID_PERIOD].value[0] = effect->u.periodic.period;
364 * Test if periodic effect parameters have changed
369 return effect->u.periodic.magnitude != old->u.periodic.magnitude ||
370 effect->u.periodic.offset != old->u.periodic
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/shared/
H A Decos_timer.c116 ecos_add_timer(ecos_timer_entry_t *entry, uint ms, int periodic) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dhpet.c136 * For non-periodic timers, increment the accumulator.
137 * This has the effect of treating non-periodic like periodic.
585 int hpet_register(struct hpet_task *tp, int periodic) argument
593 switch (periodic) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dinput.h791 * struct ff_periodic_effect - defines parameters of a periodic force-feedback effect
822 * struct ff_rumble_effect - defines parameters of a periodic force-feedback effect
867 struct ff_periodic_effect periodic; member in union:ff_effect::__anon9923
890 * Force feedback periodic effect types

Completed in 199 milliseconds