Home
last modified time | relevance | path

Searched refs:Period (Results 1 – 25 of 32) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DChrono.h103 template <typename Period> struct unit { static const char value[]; };
104 template <typename Period> const char unit<Period>::value[] = "";
150 template <typename Rep, typename Period>
151 struct format_provider<std::chrono::duration<Rep, Period>> {
153 typedef std::chrono::duration<Rep, Period> Dur;
178 return {D.count(), detail::unit<Period>::value};
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dcondition_variable48 template <class Rep, class Period>
51 const chrono::duration<Rep, Period>& rel_time);
53 template <class Rep, class Period, class Predicate>
56 const chrono::duration<Rep, Period>& rel_time,
93 template <class Lock, class Rep, class Period>
96 const chrono::duration<Rep, Period>& rel_time);
98 template <class Lock, class Rep, class Period, class Predicate>
101 const chrono::duration<Rep, Period>& rel_time,
112 template <class Lock, class Rep, class Period, class Predicate>
114 … const chrono::duration<Rep, Period>& rel_time, Predicate pred); // since C++20
H A Dchrono25 template <class ToDuration, class Rep, class Period>
28 duration_cast(const duration<Rep, Period>& fd);
46 template <class Rep, class Period = ratio<1>>
50 …static_assert(__is_ratio<Period>::value, "Second template parameter of duration must be a std::rat…
51 static_assert(Period::num > 0, "duration period must be positive");
164 template <class Rep1, class Period, class Rep2>
166 duration<typename common_type<Rep1, Rep2>::type, Period>
167 operator*(const duration<Rep1, Period>& d, const Rep2& s);
168 template <class Rep1, class Period, class Rep2>
170 duration<typename common_type<Rep1, Rep2>::type, Period>
[all …]
H A Dmutex64 template <class Rep, class Period>
65 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
82 template <class Rep, class Period>
83 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
138 template <class Rep, class Period>
139 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time);
151 template <class Rep, class Period>
152 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
H A Dthread80 template <class Rep, class Period>
81 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
H A Dfuture168 template <class Rep, class Period>
170 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
195 template <class Rep, class Period>
197 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
222 template <class Rep, class Period>
224 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
249 template <class Rep, class Period>
251 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
276 template <class Rep, class Period>
278 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcondition_variable48 template <class Rep, class Period>
51 const chrono::duration<Rep, Period>& rel_time);
53 template <class Rep, class Period, class Predicate>
56 const chrono::duration<Rep, Period>& rel_time,
93 template <class Lock, class Rep, class Period>
96 const chrono::duration<Rep, Period>& rel_time);
98 template <class Lock, class Rep, class Period, class Predicate>
101 const chrono::duration<Rep, Period>& rel_time,
112 template <class Lock, class Rep, class Period, class Predicate>
114 … const chrono::duration<Rep, Period>& rel_time, Predicate pred); // since C++20
H A Dchrono25 template <class ToDuration, class Rep, class Period>
28 duration_cast(const duration<Rep, Period>& fd);
46 template <class Rep, class Period = ratio<1>>
50 …static_assert(__is_ratio<Period>::value, "Second template parameter of duration must be a std::rat…
51 static_assert(Period::num > 0, "duration period must be positive");
169 template <class Rep1, class Period, class Rep2>
171 duration<typename common_type<Rep1, Rep2>::type, Period>
172 operator*(const duration<Rep1, Period>& d, const Rep2& s);
173 template <class Rep1, class Period, class Rep2>
175 duration<typename common_type<Rep1, Rep2>::type, Period>
[all …]
H A Dshared_mutex56 template <class Rep, class Period>
57 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
65 template <class Rep, class Period>
67 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time);
89 template <class Rep, class Period>
91 const chrono::duration<Rep, Period>& rel_time);
102 template <class Rep, class Period>
103 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
H A Dmutex64 template <class Rep, class Period>
65 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
82 template <class Rep, class Period>
83 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
138 template <class Rep, class Period>
139 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time);
151 template <class Rep, class Period>
152 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
H A Dthread80 template <class Rep, class Period>
81 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
H A Dsemaphore33 template<class Rep, class Period>
34 bool try_acquire_for(const chrono::duration<Rep, Period>& rel_time);
H A Dfuture168 template <class Rep, class Period>
170 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
195 template <class Rep, class Period>
197 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
222 template <class Rep, class Period>
224 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
249 template <class Rep, class Period>
251 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
276 template <class Rep, class Period>
278 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
[all …]
/freebsd/contrib/ntp/ntpd/
H A Dntp_timer.c247 DWORD Period; in init_timer() local
251 Period = (1 << EVENT_TIMEOUT) * 1000; in init_timer()
252 DueTime.QuadPart = Period * 10000ll; in init_timer()
254 Period, NULL, NULL, FALSE); in init_timer()
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dahci-ceva.txt12 CINMP : COMINIT Negate Minimum Period.
23 CWNMP: COMWAKE Negate Minimum Period.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp206 unsigned Period; member
215 config.Period = SampledInstrPeriod.getValue(); in getSampledInstrumentationConfig()
216 if (config.BurstDuration > config.Period) in getSampledInstrumentationConfig()
219 if (config.Period == 0 || config.BurstDuration == 0) in getSampledInstrumentationConfig()
226 (!config.IsSimpleSampling && config.Period == USHRT_MAX + 1); in getSampledInstrumentationConfig()
227 config.UseShort = (config.Period <= USHRT_MAX) || config.IsFastSampling; in getSampledInstrumentationConfig()
773 config.BurstDuration, config.Period - config.BurstDuration); in doSampling()
790 NewSamplingVarVal, GetConstant(PeriodCondBuilder, config.Period)); in doSampling()
791 BranchWeight = MDB.createBranchWeights(1, config.Period - 1); in doSampling()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMapFile.cpp46 Period, enumerator
210 case MMToken::Period: in parseTopLevelDecls()
565 if (Tok.is(MMToken::Period)) { in parseExportDecl()
901 Tok.Kind = MMToken::Period; in consumeToken()
1045 if (!Tok.is(MMToken::Period)) in parseModuleId()
/freebsd/crypto/heimdal/lib/roken/
H A Dfnmatch.hin55 #define FNM_PERIOD 0x04 /* Period must be matched by period. */
/freebsd/secure/caroot/untrusted/
H A DEntrust_Root_Certification_Authority.pem49 X509v3 Private Key Usage Period:
H A DLAWtrust_Root_CA2__4096_.pem66 X509v3 Private Key Usage Period:
/freebsd/sys/contrib/dev/acpica/include/
H A Dactbl3.h920 UINT16 Period; member
/freebsd/share/misc/
H A Dscsi_modes79 {Ready AEN Holdoff Period} i2
80 {Busy Timeout Period} i2
/freebsd/crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/
H A Dkerberos.schema282 ##### Period after which bad preauthentication count will be reset
291 ##### Period in which lockout is enforced
H A Dkerberos.ldif352 ##### Period after which bad preauthentication count will be reset
364 ##### Period in which lockout is enforced
/freebsd/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c778 {ACPI_DMT_UINT16, ACPI_WDDT_OFFSET (Period), "Period", 0},

12