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

12345678910

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtimeriomem-rng.h20 unsigned int period; member in struct:timeriomem_rng_data
H A Dproportions.h18 * The period over which we differentiate
20 * period = 2^shift
27 * counter bits, the remaining upper bits the period counter.
60 unsigned long period; member in struct:prop_local_percpu
107 unsigned long period; member in struct:prop_local_single
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/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"
63 const char **period = lp_parm_string_list(SNUM(handle->conn), local
65 "period", period_def);
67 if (period && period[0] && period[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/kernel/
H A Dheartbeat.c22 static unsigned int cnt, period, dist; local
30 if (++cnt > period) {
34 * period length in dependency of the current (5min)
38 period = ((672 << FSHIFT) / (5 * avenrun[0] +
40 dist = period / 4;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dtimefilter.h48 * o = 2 * M_PI * bandwidth * period
56 * @param clock_period period of the hardware clock in seconds
69 * @param period the device cycle duration in clock_periods. For example, at
70 * 44.1kHz and a buffer size of 512 frames, period = 512 when clock_period
80 double ff_timefilter_update(TimeFilter *self, double system_time, double period);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/amiga/
H A Damisound.c30 * The minimum period for audio may be modified by the frame buffer
41 * Current period (set by dmasound.c)
83 unsigned long period = (clock_constant / hz); local
85 if (period < amiga_audio_min_period)
86 period = amiga_audio_min_period;
87 if (period > MAX_PERIOD)
88 period = MAX_PERIOD;
90 /* setup pointer to data, period, length and volume */
93 custom.aud[2].audper = (unsigned short)period;
115 /* restore period t
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/atari/
H A Datasound.c61 int period; local
73 /* Convert from frequency value to PSG period value (base
76 period = PSG_FREQ / hz;
78 if (period > 0xfff) period = 0xfff;
82 sound_ym.wd_data = period & 0xff;
84 sound_ym.wd_data = (period >> 8) & 0xf;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/leds/
H A Dledtrig-heartbeat.c25 unsigned int period; member in struct:heartbeat_trig_data
41 * heartbeat period length in dependency of the
45 heartbeat_data->period = 300 +
47 heartbeat_data->period =
48 msecs_to_jiffies(heartbeat_data->period);
54 delay = heartbeat_data->period / 4 - msecs_to_jiffies(70);
63 delay = heartbeat_data->period - heartbeat_data->period / 4 -
H A Dleds-pwm.c30 unsigned int period; member in struct:led_pwm_data
39 unsigned int period = led_dat->period; local
42 pwm_config(led_dat->pwm, 0, period);
45 pwm_config(led_dat->pwm, brightness * period / max, period);
80 led_dat->period = cur_led->pwm_period_ns;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/jz4740/
H A Dpwm.c97 unsigned long period, duty; local
108 period = tmp;
110 while (period > 0xffff && prescaler < 6) {
111 period >>= 2;
118 tmp = (unsigned long long)period * duty_ns;
120 duty = period - tmp;
122 if (duty >= period)
123 duty = period - 1;
131 jz4740_timer_set_period(id, period);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dproportions.c14 * and i the time period over which the differential is taken. So d/dt_{-i} is
15 * the differential over the i-th last period.
34 * if (++x_{j}, ++t > period)
45 * if (++t > period) t /= 2:
49 * period/2 + (++t % period/2)
51 * [ Furthermore, when we choose period to be 2^n it can be written in terms of
56 * c = t / (period/2)
61 * This allows us to do away with the loop over all prop_locals on each period
62 * expiration. By remembering the period coun
214 unsigned long period = 1UL << (pg->shift - 1); local
344 unsigned long period = 1UL << (pg->shift - 1); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/lib/
H A Dstr-two-way.h83 *PERIOD to the global period of the right half.
85 The global period of a string is the smallest index (possibly its
89 When NEEDLE is factored into two halves, a local period is the
92 non-empty NEEDLE have a local period of at least 1 and no greater
95 A critical factorization has the property that the local period
96 equals the global period. All strings have at least one critical
97 factorization with the left half smaller than the global period.
106 size_t *period)
111 size_t k; /* Offset into current period. */
112 size_t p; /* Intermediate period
105 critical_factorization(const unsigned char *needle, size_t needle_len, size_t *period) argument
217 size_t period; /* The period of the right half of needle. */ local
311 size_t period; /* The period of the right half of needle. */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/misc/
H A Dpwm-beeper.c26 unsigned long period; member in struct:pwm_beeper
36 unsigned long period; local
55 period = HZ_TO_NANOSECONDS(value);
56 ret = pwm_config(beeper->pwm, period / 2, period);
62 beeper->period = period;
148 if (beeper->period)
158 if (beeper->period) {
159 pwm_config(beeper->pwm, beeper->period /
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dtimefilter.h56 * @param time_base period of the hardware clock in seconds
58 * @param period expected update interval, in input units
73 * @param period the device cycle duration in clock_periods. For example, at
74 * 44.1kHz and a buffer size of 512 frames, period = 512 when clock_period
84 double ff_timefilter_update(TimeFilter *self, double system_time, double period);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kvm/
H A Dkvm_timer.h4 s64 period; /* unit: ns */ member in struct:kvm_timer
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/util/
H A Dcallchain.c233 int start, u64 period)
241 new->hit = period;
252 u64 period)
279 add_child(parent, chain, idx_total, period);
280 parent->children_hit += period;
282 parent->hit = period;
288 unsigned int start, u64 period);
293 unsigned int start, u64 period)
299 unsigned int ret = __append_chain(rnode, chain, start, period);
305 add_child(root, chain, start, period);
232 add_child(struct callchain_node *parent, struct resolved_chain *chain, int start, u64 period) argument
250 split_add_child(struct callchain_node *parent, struct resolved_chain *chain, struct callchain_list *to_split, int idx_parents, int idx_local, u64 period) argument
291 __append_chain_children(struct callchain_node *root, struct resolved_chain *chain, unsigned int start, u64 period) argument
312 __append_chain(struct callchain_node *root, struct resolved_chain *chain, unsigned int start, u64 period) argument
383 append_chain(struct callchain_node *root, struct ip_callchain *chain, struct map_symbol *syms, u64 period) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/core/
H A Dsdio_irq.c72 unsigned long period, idle_period; local
84 period = (host->caps & MMC_CAP_SDIO_IRQ) ?
87 pr_debug("%s: IRQ thread started (poll period = %lu jiffies)\n",
88 mmc_hostname(host), period);
128 period /= 2;
130 period++;
131 if (period > idle_period)
132 period = idle_period;
140 schedule_timeout(period);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/watchdog/
H A Dbooke_wdt.c29 * Also, the wdt_period sets the watchdog timer period timeout.
55 /* For the specified period, determine the number of seconds
60 * 2.5 * (2^(63-period+1)) / timebase_freq
62 * In order to simplify things, we assume that period is
65 static unsigned long long period_to_sec(unsigned int period) argument
67 unsigned long long tmp = 1ULL << (64 - period);
80 * This procedure will find the highest period which will give a timeout
86 unsigned int period; local
87 for (period = 63; period >
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/whci/
H A Dpzl.c28 static void update_pzl_pointers(struct whc *whc, int period, u64 addr) argument
30 switch (period) {
61 * Return the 'period' to use for this qset. The minimum interval for
78 int period; local
80 period = qset_get_period(whc, qset);
83 list_move(&qset->list_node, &whc->periodic_list[period]);
210 int period; local
213 for (period = 0; period < 5; period
236 int period; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/kernel/
H A Dtime.c55 static unsigned cnt = 0, period = 0, dist = 0; local
62 if (++cnt > period) {
64 /* The hyperbolic function below modifies the heartbeat period
68 period = ((672<<FSHIFT)/(5*avenrun[0]+(7<<FSHIFT))) + 30;
69 dist = period / 4;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/
H A Dscsi_transport_spi.c94 /* The PPR values at which you calculate the period in ns by multiplying
420 /* Translate the period into ns according to the current spec
422 static int period_to_str(char *buf, int period) argument
426 if (period < 0 || period > 0xff) {
428 } else if (period <= SPI_STATIC_PPR) {
429 picosec = ppr_to_ps[period];
431 picosec = period * 4000;
444 show_spi_transport_period_helper(char *buf, int period) argument
446 int len = period_to_str(buf, period);
456 int j, picosec, period = -1; local
514 int period, retval; local
742 int period = 0, prevperiod = 0; local
1161 spi_populate_sync_msg(unsigned char *msg, int period, int offset) argument
1172 spi_populate_ppr_msg(unsigned char *msg, int period, int offset, int width, int options) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/md/
H A Dfaulty.c36 * remainder indicate a period, or 0 for one-shot.
85 int period[Modes]; member in struct:faulty_conf
95 if (conf->period[mode] == 0 &&
101 if (conf->period[mode])
102 atomic_set(&conf->counters[mode], conf->period[mode]);
232 n, conf->period[WriteTransient]);
236 n, conf->period[ReadTransient]);
240 n, conf->period[WritePersistent]);
244 n, conf->period[ReadPersistent]);
249 n, conf->period[ReadFixabl
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/hw_random/
H A Dtimeriomem-rng.c108 if (timeriomem_rng_data->period != 0
109 && usecs_to_jiffies(timeriomem_rng_data->period) > 0) {
113 timeriomem_rng_data->period);
123 timeriomem_rng_data->period);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dvmi_time.h44 void (*set_alarm)(u32 flags, u64 expiry, u64 period);

Completed in 593 milliseconds

12345678910