Searched refs:period (Results 126 - 150 of 186) sorted by relevance

12345678

/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Ddriver_i.h988 unsigned int period,
997 return wpa_s->driver->p2p_lo_start(wpa_s->drv_priv, channel, period,
986 wpa_drv_p2p_lo_start(struct wpa_supplicant *wpa_s, unsigned int channel, unsigned int period, unsigned int interval, unsigned int count, const u8 *device_types, size_t dev_types_len, const u8 *ies, size_t ies_len) argument
/freebsd-11-stable/sys/kern/
H A Dsched_ule.c1721 * over half of the ticks rollover period.
3044 int error, new_val, period; local
3046 period = 1000000 / realstathz;
3047 new_val = period * sched_slice;
3053 sched_slice = imax(1, (new_val + period / 2) / period);
3087 "Average period in stathz ticks to run the long-term balancer");
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp461 NextTok->isOneOf(tok::comma, tok::period, tok::colon,
603 if (I->Tok->isNot(tok::period))
864 Tok.isNot(tok::period) && Tok.isNot(tok::periodstar) &&
1239 case tok::period:
2189 FormatTok->isOneOf(tok::period, tok::comma))) {
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-loop-ivopts.c4088 /* Returns period of induction variable iv. */
4093 tree step = iv->step, period, type; local
4104 period = build_low_bits_mask (type,
4108 return period;
4138 tree wider_type, period, per_type; local
4166 elapsed. This is the case iff the period of the induction variable is
4168 period = iv_period (cand->iv);
4169 if (!period)
4171 per_type = TREE_TYPE (period);
4173 wider_type = TREE_TYPE (period);
[all...]
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_low.h379 u_int8_t period; member in struct:targ_info::synch
H A Dscsi_all.c5492 u_int period; /* in 100ths of ns */ member in struct:__anon1
5503 * sync period factor.
5512 * It's a bug if period is zero, but if it is anyway, don't
5521 /* See if the period is in the "exception" table */
5526 return (100000000 / scsi_syncrates[i].period);
5539 * the passed in period in 10ths of ns.
5542 scsi_calc_syncparam(u_int period) argument
5547 if (period == 0)
5551 period *= 10;
5553 /* See if the period i
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416.h252 extern HAL_STATUS ar5416SetQuiet(struct ath_hal *ah, uint32_t period,
H A Dar5416_attach.c60 .period = 100,
/freebsd-11-stable/sys/xen/interface/
H A Ddomctl.h348 uint32_t period; member in struct:xen_domctl_scheduler_op::__anon13525::xen_domctl_sched_rtds
/freebsd-11-stable/contrib/ldns/
H A Dstr2host.c178 ldns_str2rdf_period(ldns_rdf **rd,const char *period) argument
184 p = ldns_str2period(period, &end);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_misc.c637 ar5212SetQuiet(struct ath_hal *ah, uint32_t period, uint32_t duration, argument
640 OS_REG_WRITE(ah, AR_QUIET2, period | (duration << AR_QUIET2_QUIET_DUR_S));
H A Dar5212_attach.c214 .period = 100,
/freebsd-11-stable/share/mk/
H A Dsys.mk474 # period has passed, include it while we're in a ports tree here
/freebsd-11-stable/contrib/wpa/src/p2p/
H A Dp2p.c4614 int p2p_ext_listen(struct p2p_data *p2p, unsigned int period, argument
4617 if (period > 65535 || interval > 65535 || period > interval ||
4618 (period == 0 && interval > 0) || (period > 0 && interval == 0)) {
4619 p2p_dbg(p2p, "Invalid Extended Listen Timing request: period=%u interval=%u",
4620 period, interval);
4633 p2p_dbg(p2p, "Enabling Extended Listen Timing: period %u msec, interval %u msec",
4634 period, interval);
4635 p2p->ext_listen_period = period;
[all...]
/freebsd-11-stable/sys/net/altq/
H A Daltq_hfsc.c924 cl->cl_stats.period++;
1003 * classes. if the parent's period didn't
1015 * first child for a new parent backlog period.
1018 * the vt in the last period for all children.
1039 cl->cl_vtperiod++; /* increment vt period */
1311 * backlogged period.
1660 sp->period = cl->cl_stats.period;
H A Daltq_priq.c639 sp->period = cl->cl_period;
/freebsd-11-stable/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new_handlers_p2p.c221 unsigned int period = 0, interval = 0; local
236 if (os_strcmp(entry.key, "period") == 0 &&
238 period = entry.uint32_value;
249 if (wpas_p2p_ext_listen(wpa_s, period, interval))
/freebsd-11-stable/sys/dev/vt/
H A Dvt_core.c1042 u_int freq, period; local
1052 period = ((param >> 16) & 0xffff) * hz / 1000;
1055 sysbeep(freq, period);
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300.h547 u_int32_t ah_ani_period; /* ani update list period */
1308 extern HAL_STATUS ar9300_set_quiet(struct ath_hal *ah, u_int32_t period, u_int32_t duration,
1396 extern void ar9300_wowoffload_download_acer_swka(struct ath_hal *ah, u_int32_t id, HAL_BOOL valid, u_int32_t period, u_int32_t size, u_int32_t* datap);
H A Dar9300_stub_funcs.c621 ar9300_Stub_SetQuiet(struct ath_hal *ah, uint32_t period, argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp1485 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
1514 RefExpr->isArrow() ? tok::arrow : tok::period, SS,
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/
H A Dar9280_attach.c95 .period = 100,
/freebsd-11-stable/sys/net80211/
H A Dieee80211.h954 uint8_t tim_period; /* DTIM period */
1053 uint8_t period; /* beacon intervals between quiets */ member in struct:ieee80211_quiet_ie
1339 * DTIM period (beacons). Min+max are not really defined
1343 #define IEEE80211_DTIM_MAX 15 /* max DTIM period */
1344 #define IEEE80211_DTIM_MIN 1 /* min DTIM period */
/freebsd-11-stable/usr.bin/indent/
H A Dindent.c1029 case period: /* treat a period kind of like a binary
1031 *e_code++ = '.'; /* move the period into line */
1032 ps.want_blank = false; /* dont put a blank after a period */
/freebsd-11-stable/sys/dev/ath/ath_hal/
H A Dah_internal.h884 int period; /* update listen period */ member in struct:__anon4367

Completed in 508 milliseconds

12345678