Searched refs:period (Results 1 - 25 of 126) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/kernel/
H A Dled.c19 static unsigned int cnt = 0, period = 0, dist = 0; local
27 if (++cnt > period) {
31 * The hyperbolic function below modifies the heartbeat period
35 period = ((672 << FSHIFT) / (5 * avenrun[0] +
37 dist = period / 4;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/modules/
H A Dvfs_readonly.c4 VFS module to perform read-only limitation based on a time period
29 (or all of them if it is loaded in a [global] section) based on period
39 readonly: period = "begin date","end date"
46 readonly: period = "today 14:00","today 15:00"
50 readonly: period = "today 0:0:0","tomorrow 0:0:0"
64 const char **period = lp_parm_string_list(SNUM(handle->conn), local
66 "period", period_def);
68 if (period && period[0] && period[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/amiga/
H A Damisound.c29 * The minimum period for audio may be modified by the frame buffer
39 * Current period (set by dmasound.c)
80 unsigned long period = (clock_constant / hz); local
82 if (period < amiga_audio_min_period)
83 period = amiga_audio_min_period;
84 if (period > MAX_PERIOD)
85 period = MAX_PERIOD;
87 /* setup pointer to data, period, length and volume */
90 custom.aud[2].audper = (unsigned short)period;
112 /* restore period t
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/atari/
H A Datasound.c59 int period; local
71 /* Convert from frequency value to PSG period value (base
74 period = PSG_FREQ / hz;
76 if (period > 0xfff) period = 0xfff;
80 sound_ym.wd_data = period & 0xff;
82 sound_ym.wd_data = (period >> 8) & 0xf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/leds/
H A Dledtrig-heartbeat.c24 unsigned int period; member in struct:heartbeat_trig_data
40 * heartbeat period length in dependency of the
44 heartbeat_data->period = 300 +
46 heartbeat_data->period =
47 msecs_to_jiffies(heartbeat_data->period);
53 delay = heartbeat_data->period / 4 - msecs_to_jiffies(70);
62 delay = heartbeat_data->period - heartbeat_data->period / 4 -
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/amiga/
H A Dtime.c38 static unsigned cnt = 0, period = 0, dist = 0; local
45 if (++cnt > period) {
47 /* The hyperbolic function below modifies the heartbeat period
51 period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
52 dist = period / 4;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/procps/
H A Dwatch.c30 unsigned period = 2; local
41 if (opt & 0x4) period = xatou(tmp);
65 snprintf(header, width, "Every %ds: %-*s", period, width, cmd);
78 sleep(period);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/hardware/
H A Dicst307.h36 struct icst307_vco icst307_ps_to_vco(const struct icst307_params *p, unsigned long period);
H A Dicst525.h34 struct icst525_vco icst525_ps_to_vco(const struct icst525_params *p, unsigned long period);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/boards/superh/microdev/
H A Dled.c81 static unsigned cnt = 0, period = 0, dist = 0; local
88 if (++cnt > period) {
90 /* The hyperbolic function below modifies the heartbeat period
94 period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
95 dist = period / 4;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A Dscsi_transport_spi.c83 /* The PPR values at which you calculate the period in ns by multiplying
380 /* Translate the period into ns according to the current spec
382 static int period_to_str(char *buf, int period) argument
386 if (period < 0 || period > 0xff) {
388 } else if (period <= SPI_STATIC_PPR) {
389 picosec = ppr_to_ps[period];
391 picosec = period * 4000;
404 show_spi_transport_period_helper(char *buf, int period) argument
406 int len = period_to_str(buf, period);
416 int j, picosec, period = -1; local
473 int period, retval; local
685 int period = 0, prevperiod = 0; local
1087 spi_populate_sync_msg(unsigned char *msg, int period, int offset) argument
1098 spi_populate_ppr_msg(unsigned char *msg, int period, int offset, int width, int options) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dfaulty.c36 * remainder indicate a period, or 0 for one-shot.
83 int period[Modes]; member in struct:faulty_conf
93 if (conf->period[mode] == 0 &&
99 if (conf->period[mode])
100 atomic_set(&conf->counters[mode], conf->period[mode]);
231 n, conf->period[WriteTransient]);
235 n, conf->period[ReadTransient]);
239 n, conf->period[WritePersistent]);
243 n, conf->period[ReadPersistent]);
248 n, conf->period[ReadFixabl
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/kernel/
H A Dtime.c54 static unsigned cnt = 0, period = 0, dist = 0; local
61 if (++cnt > period) {
63 /* The hyperbolic function below modifies the heartbeat period
67 period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
68 dist = period / 4;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/kernel/
H A Dtime.c79 static unsigned cnt = 0, period = 0, dist = 0; local
86 if (++cnt > period) {
88 /* The hyperbolic function below modifies the heartbeat period
92 period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
93 dist = period / 4;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dvmi_time.h44 void (*set_alarm)(u32 flags, u64 expiry, u64 period);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_limit.c117 static void print_rate(uint32_t period) argument
122 if (period > rates[i].mult
123 || rates[i].mult/period < rates[i].mult%period)
126 printf(" %u/%s", rates[i-1].mult / period, rates[i-1].name);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/extensions/
H A Dlibipt_limit.c139 static void print_rate(u_int32_t period) argument
144 if (period > rates[i].mult
145 || rates[i].mult/period < rates[i].mult%period)
149 printf("%u/%s ", rates[i-1].mult / period, rates[i-1].name);
H A Dlibip6t_limit.c139 static void print_rate(u_int32_t period) argument
144 if (period > rates[i].mult
145 || rates[i].mult % period != 0)
149 printf("%u/%s ", rates[i-1].mult / period, rates[i-1].name);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/time/
H A Dtimer_stats.c110 * They get freed when a new collection period is started.
279 struct timespec period; local
295 period = ktime_to_timespec(time);
296 ms = period.tv_nsec / 1000000;
299 seq_printf(m, "Sample period: %ld.%03ld s\n", period.tv_sec, ms);
317 ms += period.tv_sec * 1000;
321 if (events && period.tv_sec)
323 events / period.tv_sec, events * 1000 / ms);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dehci-sched.c287 unsigned period,
294 if ((period == 0) || (uframe >= 7)) /* error */
297 for (; frame < ehci->periodic_size; frame += period) {
356 unsigned period,
362 if (period == 0) /* error */
369 for (; frame < ehci->periodic_size; frame += period) {
485 unsigned period = qh->period; local
489 period, le32_to_cpup (&qh->hw_info2) & (QH_CMASK | QH_SMASK),
493 if (period
285 tt_available( struct ehci_hcd *ehci, unsigned period, struct usb_device *dev, unsigned frame, unsigned uframe, u16 usecs ) argument
354 tt_no_collision( struct ehci_hcd *ehci, unsigned period, struct usb_device *dev, unsigned frame, u32 uf_mask ) argument
550 unsigned period; local
613 check_period( struct ehci_hcd *ehci, unsigned frame, unsigned uframe, unsigned period, unsigned usecs ) argument
1319 u32 now, start, max, period; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/scsi/
H A Dscsi_transport_spi.h32 int period; /* value in the PPR/SDTR command */ member in struct:spi_transport_attrs
73 #define spi_period(x) (((struct spi_transport_attrs *)&(x)->starget_data)->period)
153 int spi_populate_sync_msg(unsigned char *msg, int period, int offset);
154 int spi_populate_ppr_msg(unsigned char *msg, int period, int offset, int width,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/soc/at91/
H A Deti_b1_wm8731.c101 int cmr_div, period; local
133 period = 74; /* LRC = BCLK/(2*(74+1)) = 8000Hz */
137 period = 66; /* LRC = BCLK/(2*(66+1)) = 31982.942Hz */
141 period = 23; /* LRC = BCLK/(2*(23+1)) = 48076.923Hz */
156 AT91SSC_TCMR_PERIOD, period);
160 AT91SSC_RCMR_PERIOD, period);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/misc/
H A Dioc4.c44 #define IOC4_CALIBRATE_COUNT 63 /* Calibration cycle period */
129 /* Determines external interrupt output clock period of the PCI bus an
148 uint64_t start, end, period; local
169 /* Check square wave period averaged over some number of cycles */
186 * 1. "end - start" gives us the measurement period over all
188 * 2. Divide by number of square wave cycles to get the period
192 * period of an IOC4 INT_OUT count.
196 period = (end - start) /
200 if (period > IOC4_CALIBRATE_LOW_LIMIT ||
201 period < IOC4_CALIBRATE_HIGH_LIMI
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx/
H A Daic79xx_osm.c319 "period-delimited options string:\n"
497 spi_min_period(starget) = tinfo->user.period;
1584 if (tinfo->curr.period != tinfo->goal.period
1609 if (tinfo->curr.period == spi_period(starget)
1616 spi_period(starget) = tinfo->curr.period;
2278 static void ahd_linux_set_period(struct scsi_target *starget, int period) argument
2295 printf("%s: set period to %d\n", ahd_name(ahd), period);
2300 if (period <
2339 unsigned int period = 0; local
2375 unsigned int period = tinfo->goal.period; local
2417 unsigned int period = tinfo->goal.period; local
2456 unsigned int period = tinfo->goal.period; local
2496 unsigned int period = tinfo->goal.period; local
2532 unsigned int period = tinfo->goal.period; local
2568 unsigned int period = tinfo->goal.period; local
2612 unsigned int period = tinfo->goal.period; local
2662 unsigned int period = tinfo->goal.period; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx_old/
H A Daic7xxx_proc.c275 int period = aic_dev->cur.period; local
279 sync_rate = aic7xxx_find_syncrate(p, &period, 0, &options);
294 aic_dev->cur.period,
299 aic_dev->goal.period,
304 p->user[tindex].period,

Completed in 194 milliseconds

123456