Searched refs:timebase (Results 1 - 21 of 21) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A Dpq2.c32 u32 *timebase, u32 *brgfreq)
58 if (timebase)
59 *timebase = busclk / 4;
78 void pq2_set_clocks(u32 sysfreq, u32 corefreq, u32 timebase, u32 brgfreq) argument
82 dt_fixup_cpu_clocks(corefreq, timebase, sysfreq);
95 u32 sysfreq, corefreq, timebase, brgfreq; local
97 if (!pq2_get_clocks(crystal, &sysfreq, &corefreq, &timebase, &brgfreq))
100 pq2_set_clocks(sysfreq, corefreq, timebase, brgfreq);
31 pq2_get_clocks(u32 crystal, u32 *sysfreq, u32 *corefreq, u32 *timebase, u32 *brgfreq) argument
H A Dpq2.h7 u32 *timebase, u32 *brgfreq);
8 void pq2_set_clocks(u32 sysfreq, u32 corefreq, u32 timebase, u32 brgfreq);
H A Dsimpleboot.c31 const u32 *na, *ns, *reg, *timebase; local
71 /* finally, setup the timebase */
76 timebase = fdt_getprop(_dtb_start, node, "timebase-frequency", &size);
77 if (timebase && (size == 4))
78 timebase_period_ns = 1000000000 / *timebase;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Doggparsetheora.c61 AVRational timebase; local
93 timebase.den = get_bits_long(&gb, 32);
94 timebase.num = get_bits_long(&gb, 32);
95 if (!(timebase.num > 0 && timebase.den > 0)) {
97 timebase.num = 1;
98 timebase.den = 25;
100 avpriv_set_pts_info(st, 64, timebase.num, timebase.den);
H A Dseek.c46 AVRational term_ts_tb; ///< timebase for term_ts
48 AVRational first_ts_tb; ///< timebase for first_ts
91 * @param timebase time base for timestamps
101 AVRational timebase,
207 if (av_compare_ts(ts, ts_tb, timestamp, timebase) <= 0) {
220 if (av_compare_ts(ts, ts_tb, timestamp, timebase) >= 0) {
99 search_hi_lo_keyframes(AVFormatContext *s, int64_t timestamp, AVRational timebase, int flags, AVSyncPoint *sync, int keyframes_to_find, int *found_lo, int *found_hi, int first_iter) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/pasemi/
H A Dsetup.c76 static unsigned long timebase; variable
87 timebase = get_tb();
90 while (timebase)
98 while (!timebase)
102 set_tb(timebase >> 32, timebase & 0xffffffff);
103 timebase = 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/powermac/
H A Dsmp.c70 static u64 timebase; variable
300 /* No sure how timebase sync works on those, let's use SW */
360 * We can't use udelay here because the timebase is now frozen.
367 * Also, because the timebase is frozen, we must not return to the
385 timebase = get_tb();
387 while (timebase)
424 while (!timebase)
427 set_tb(timebase >> 32, timebase & 0xffffffff);
428 timebase
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/mISDN/
H A Dl1oip_core.c277 u16 timebase, u8 *buf, int len)
323 *p++ = timebase>>8; /* time base */
324 *p++ = timebase;
367 l1oip_socket_recv(struct l1oip *hc, u8 remotecodec, u8 channel, u16 timebase, argument
425 if (((s16)(timebase - rx_counter)) >= 0) {
427 if (timebase >= (rx_counter & 0xffff))
429 (rx_counter & 0xffff0000) | timebase;
432 | timebase;
435 if (timebase < (rx_counter & 0xffff))
437 (rx_counter & 0xffff0000) | timebase;
276 l1oip_socket_send(struct l1oip *hc, u8 localcodec, u8 channel, u32 chanmask, u16 timebase, u8 *buf, int len) argument
472 u16 timebase; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Drtas.c67 * such as having the timebase stopped which would lockup with
1021 static u64 timebase = 0; variable
1031 timebase = get_tb();
1034 while (timebase)
1042 while (!timebase)
1045 set_tb(timebase >> 32, timebase & 0xffffffff);
1046 timebase = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dseek.c44 AVRational term_ts_tb; ///< timebase for term_ts
46 AVRational first_ts_tb; ///< timebase for first_ts
89 * @param timebase time base for timestamps
99 AVRational timebase,
205 if (av_compare_ts(ts, ts_tb, timestamp, timebase) <= 0) {
218 if (av_compare_ts(ts, ts_tb, timestamp, timebase) >= 0) {
97 search_hi_lo_keyframes(AVFormatContext *s, int64_t timestamp, AVRational timebase, int flags, AVSyncPoint *sync, int keyframes_to_find, int *found_lo, int *found_hi, int first_iter) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/comedi/drivers/
H A Dii_pci20kc.c145 int timebase; member in struct:pci20xxx_subdev_private::__anon15112
397 sdp->pci20341.timebase = pci20341_timebase[opt0];
409 option = sdp->pci20341.timebase | PCI20341_REPMODE; /* depends on gain, trigger, repetition mode */
H A Damplc_pci230.c2534 static unsigned int divide_ns(uint64_t ns, unsigned int timebase, argument
2541 rem = do_div(div, timebase);
2546 div += (rem + (timebase / 2)) / timebase;
2551 div += (rem + timebase - 1) / timebase;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dscreen.mak1 # FIXME dropped frames in this test because of coarse timebase
H A Dvideo.mak207 # FIXME dropped frames in this test because of coarse timebase
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A DNCR5380.h276 unsigned timebase; /* Base for time calcs */ member in struct:NCR5380_hostdata
H A DNCR5380.c790 hostdata->timebase = 0;
905 hostdata->time_write[cmd->device->id] -= (jiffies - hostdata->timebase);
912 hostdata->time_read[cmd->device->id] -= (jiffies - hostdata->timebase);
1175 hostdata->time_write[scmd_id(cmd)] += (jiffies - hostdata->timebase);
1181 hostdata->time_read[scmd_id(cmd)] += (jiffies - hostdata->timebase);
H A Datari_NCR5380.c841 hostdata->time_write[cmd->device->id] -= (jiffies - hostdata->timebase);
848 hostdata->time_read[cmd->device->id] -= (jiffies - hostdata->timebase);
1257 hostdata->time_write[cmd->device->id] += (jiffies - hostdata->timebase);
1264 hostdata->time_read[cmd->device->id] += (jiffies - hostdata->timebase);
H A Dsun3_NCR5380.c832 hostdata->time_write[cmd->device->id] -= (jiffies - hostdata->timebase);
839 hostdata->time_read[cmd->device->id] -= (jiffies - hostdata->timebase);
1242 hostdata->time_write[cmd->device->id] += (jiffies - hostdata->timebase);
1249 hostdata->time_read[cmd->device->id] += (jiffies - hostdata->timebase);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/pseries/
H A Ddtl.c45 u64 timebase; member in struct:dtl_entry
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/platforms/cell/spufs/
H A Dspufs.h76 u64 timebase; member in struct:switch_log::switch_log_entry
H A Dfile.c2472 (unsigned long long) p->timebase);
2591 p->timebase = get_tb();

Completed in 340 milliseconds