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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/seq/
H A Dseq_timer.c65 struct snd_seq_timer *tmr; local
67 tmr = kzalloc(sizeof(*tmr), GFP_KERNEL);
68 if (tmr == NULL) {
72 spin_lock_init(&tmr->lock);
75 snd_seq_timer_defaults(tmr);
78 snd_seq_timer_reset(tmr);
80 return tmr;
84 void snd_seq_timer_delete(struct snd_seq_timer **tmr) argument
86 struct snd_seq_timer *t = *tmr;
102 snd_seq_timer_defaults(struct snd_seq_timer * tmr) argument
121 snd_seq_timer_reset(struct snd_seq_timer * tmr) argument
145 struct snd_seq_timer *tmr; local
179 snd_seq_timer_set_tempo(struct snd_seq_timer * tmr, int tempo) argument
196 snd_seq_timer_set_ppq(struct snd_seq_timer * tmr, int ppq) argument
219 snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr, snd_seq_tick_time_t position) argument
234 snd_seq_timer_set_position_time(struct snd_seq_timer *tmr, snd_seq_real_time_t position) argument
249 snd_seq_timer_set_skew(struct snd_seq_timer *tmr, unsigned int skew, unsigned int base) argument
269 struct snd_seq_timer *tmr; local
308 struct snd_seq_timer *tmr; local
320 snd_seq_timer_stop(struct snd_seq_timer * tmr) argument
331 initialize_timer(struct snd_seq_timer *tmr) argument
362 snd_seq_timer_start(struct snd_seq_timer * tmr) argument
377 snd_seq_timer_continue(struct snd_seq_timer * tmr) argument
395 snd_seq_timer_get_cur_time(struct snd_seq_timer *tmr) argument
420 snd_seq_timer_get_cur_tick(struct snd_seq_timer *tmr) argument
433 struct snd_seq_timer *tmr; local
[all...]
H A Dseq_timer.h65 void snd_seq_timer_delete(struct snd_seq_timer **tmr);
128 void snd_seq_timer_defaults(struct snd_seq_timer *tmr);
129 void snd_seq_timer_reset(struct snd_seq_timer *tmr);
130 int snd_seq_timer_stop(struct snd_seq_timer *tmr);
131 int snd_seq_timer_start(struct snd_seq_timer *tmr);
132 int snd_seq_timer_continue(struct snd_seq_timer *tmr);
133 int snd_seq_timer_set_tempo(struct snd_seq_timer *tmr, int tempo);
134 int snd_seq_timer_set_ppq(struct snd_seq_timer *tmr, int ppq);
135 int snd_seq_timer_set_position_tick(struct snd_seq_timer *tmr, snd_seq_tick_time_t position);
136 int snd_seq_timer_set_position_time(struct snd_seq_timer *tmr, snd_seq_real_time_
[all...]
H A Dseq_queue.c450 struct snd_seq_timer *tmr; local
455 tmr = queue->timer;
457 snd_seq_timer_defaults(tmr);
470 struct snd_seq_timer *tmr; local
476 tmr = queue->timer;
766 struct snd_seq_timer *tmr; local
772 tmr = q->timer;
773 if (tmr->tempo)
774 bpm = 60000000 / tmr->tempo;
783 snd_iprintf(buffer, "timer state : %s\n", tmr
[all...]
H A Dseq_clientmgr.c1646 struct snd_seq_timer *tmr; local
1657 tmr = queue->timer;
1660 status.time = snd_seq_timer_get_cur_time(tmr);
1661 status.tick = snd_seq_timer_get_cur_tick(tmr);
1663 status.running = tmr->running;
1680 struct snd_seq_timer *tmr; local
1691 tmr = queue->timer;
1693 tempo.tempo = tmr->tempo;
1694 tempo.ppq = tmr->ppq;
1695 tempo.skew_value = tmr
1735 struct snd_seq_timer *tmr; local
1781 struct snd_seq_timer *tmr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-s3c2410/
H A Dregs-timer.h18 #define S3C2410_TIMERREG2(tmr,reg) S3C2410_TIMERREG((reg)+0x0c+((tmr)*0x0c))
74 #define S3C2410_TCNTB(tmr) S3C2410_TIMERREG2(tmr, 0x00)
75 #define S3C2410_TCMPB(tmr) S3C2410_TIMERREG2(tmr, 0x04)
76 #define S3C2410_TCNTO(tmr) S3C2410_TIMERREG2(tmr, (((tmr) == 4) ? 0x04 : 0x08))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/
H A Dsound_timer.c28 static struct sound_lowlev_timer *tmr; variable in typeref:struct:sound_lowlev_timer
54 if(!tmr)
65 usecs_per_tmr = tmr->tmr_start(tmr->dev, usecs_per_tick);
110 tmr->tmr_disable(tmr->dev);
288 tmr->tmr_restart(tmr->dev);
312 if (t->priority <= tmr->priority)
314 tmr
[all...]
H A Dsequencer.c24 static struct sound_timer_operations *tmr; variable in typeref:struct:sound_timer_operations
190 this_time = tmr->get_time(tmr_no);
633 if ((ret = tmr->event(tmr_no, event_rec)) == TIMER_ARMED)
1010 tmr = sound_timer_devs[tmr_no];
1014 if (tmr == NULL)
1084 if (try_module_get(tmr->owner))
1085 tmr->open(tmr_no, seq_mode);
1184 tmr->close(tmr_no);
1185 module_put(tmr->owner);
1346 return tmr
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dtimerfd.c25 struct hrtimer tmr; member in struct:timerfd_ctx
38 struct timerfd_ctx *ctx = container_of(htmr, struct timerfd_ctx, tmr);
61 hrtimer_init(&ctx->tmr, clockid, htmode);
62 ctx->tmr.expires = texp;
63 ctx->tmr.function = timerfd_tmrproc;
65 hrtimer_start(&ctx->tmr, texp, htmode);
72 hrtimer_cancel(&ctx->tmr);
134 hrtimer_forward(&ctx->tmr,
135 hrtimer_cb_get_time(&ctx->tmr),
137 hrtimer_restart(&ctx->tmr);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-cris/arch-v32/hwregs/
H A Dtimer_defs.h125 unsigned int tmr : 24; member in struct:__anon8645
132 unsigned int tmr : 24; member in struct:__anon8646
152 unsigned int tmr : 2; member in struct:__anon8648
164 unsigned int tmr : 2; member in struct:__anon8649
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dposix-timers.c408 struct k_itimer *tmr; local
409 tmr = kmem_cache_zalloc(posix_timers_cache, GFP_KERNEL);
410 if (!tmr)
411 return tmr;
412 if (unlikely(!(tmr->sigq = sigqueue_alloc()))) {
413 kmem_cache_free(posix_timers_cache, tmr);
414 tmr = NULL;
416 return tmr;
421 static void release_posix_timer(struct k_itimer *tmr, int it_id_set) argument
426 idr_remove(&posix_timers_id, tmr
878 struct k_itimer *tmr; local
[all...]
H A Dsignal.c390 struct hrtimer *tmr = &tsk->signal->real_timer; local
392 if (!hrtimer_is_queued(tmr) &&
394 hrtimer_forward(tmr, tmr->base->get_time(),
396 hrtimer_restart(tmr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dn_r3964.h229 struct timer_list tmr; member in struct:r3964_info
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dn_r3964.c410 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
434 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
485 mod_timer(&pInfo->tmr, jiffies + R3964_TO_QVZ);
517 mod_timer(&pInfo->tmr, jiffies + R3964_TO_RX_PANIC);
528 del_timer_sync(&pInfo->tmr);
601 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
625 mod_timer(&pInfo->tmr,
636 mod_timer(&pInfo->tmr, jiffies + R3964_TO_ZVZ);
657 mod_timer(&pInfo->tmr,
666 mod_timer(&pInfo->tmr, jiffie
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dapicdef.h210 } tmr [8]; member in struct:local_apic
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/tokenring/
H A Dibmtr.c203 static void ibmtr_reset_timer(struct timer_list*tmr,struct net_device *dev);
1835 static void ibmtr_reset_timer(struct timer_list *tmr, struct net_device *dev) argument
1837 tmr->expires = jiffies + TR_RETRY_INTERVAL;
1838 tmr->data = (unsigned long) dev;
1839 tmr->function = tok_rerun;
1840 init_timer(tmr);
1841 add_timer(tmr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dapicdef.h225 } tmr [8]; member in struct:local_apic
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/kernel/
H A Dfasttimer.c281 trig_cfg.tmr = regk_timer_time;
297 trig_cfg.tmr = regk_timer_off;
463 trig_cfg.tmr = regk_timer_off;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dcg14.c109 u32 tmr; /* Test Mode Read Back */ member in struct:cg14_regs

Completed in 200 milliseconds