Searched refs:sec (Results 226 - 250 of 561) sorted by relevance

1234567891011>>

/freebsd-current/sys/kern/
H A Dkern_tc.c90 .th_offset = { .sec = 1 },
224 bt->sec += x >> 32;
606 bt2.sec = 0;
664 if (bt.sec > 2 * FFCLOCK_SKM_SCALE)
735 polling = bt.sec;
736 bt.sec = 0;
742 /* Approximate 1 sec by 1-(1/2^64) to ease arithmetic */
744 if (gap_lerp.sec > 0) {
746 frac /= ffdelta / gap_lerp.sec;
1090 bt.sec
[all...]
H A Dkern_lockstat.c86 ns = bt.sec * (uint64_t)1000000000;
/freebsd-current/contrib/wpa/src/utils/
H A Deloop_win.c251 now_sec = timeout->time.sec;
252 timeout->time.sec += secs;
253 if (timeout->time.sec < now_sec) {
265 timeout->time.sec++;
323 remaining->sec = remaining->usec = 0;
368 requested.sec = req_secs;
375 eloop_register_timeout(requested.sec,
400 requested.sec = req_secs;
407 eloop_register_timeout(requested.sec,
543 tv.sec
[all...]
H A Deloop.c786 now_sec = timeout->time.sec;
787 timeout->time.sec += secs;
788 if (timeout->time.sec < now_sec)
792 timeout->time.sec++;
795 if (timeout->time.sec < now_sec)
868 remaining->sec = remaining->usec = 0;
913 requested.sec = req_secs;
920 eloop_register_timeout(requested.sec,
945 requested.sec = req_secs;
952 eloop_register_timeout(requested.sec,
1270 int sec, usec; local
[all...]
/freebsd-current/contrib/wpa/src/common/
H A Dhw_features_common.c191 int sec = oper->ht_param & local
193 if (sec == HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE)
195 else if (sec == HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW)
318 int sec = pri; local
333 sec = pri - 20;
335 sec = pri + 20;
339 (sec < affected_start || sec > affected_end))
343 " freq=%d pri=%d sec=%d",
347 if (pri_freq != pri || sec_freq != sec) {
[all...]
/freebsd-current/contrib/llvm-project/lld/ELF/Arch/
H A DAArch64.cpp53 void relocateAlloc(InputSectionBase &sec, uint8_t *buf) const override;
772 void AArch64::relocateAlloc(InputSectionBase &sec, uint8_t *buf) const { argument
773 uint64_t secAddr = sec.getOutputSection()->addr;
774 if (auto *s = dyn_cast<InputSection>(&sec))
776 else if (auto *ehIn = dyn_cast<EhInputSection>(&sec))
778 AArch64Relaxer relaxer(sec.relocs());
779 for (size_t i = 0, size = sec.relocs().size(); i != size; ++i) {
780 const Relocation &rel = sec.relocs()[i];
783 sec.getRelocTargetVA(sec
988 addTaggedSymbolReferences(InputSectionBase &sec, DenseMap<Symbol *, unsigned> &referenceCount) argument
[all...]
/freebsd-current/contrib/unbound/validator/
H A Dval_nsec3.c1124 enum sec_status sec; local
1129 sec = nsec3_prove_closest_encloser(env, flt, ct, qinfo, 1, &ce, calc);
1130 if(sec != sec_status_secure) {
1131 if(sec == sec_status_bogus)
1134 else if(sec == sec_status_unchecked)
1140 return sec;
1216 enum sec_status sec; local
1279 sec = nsec3_prove_closest_encloser(env, flt, ct, qinfo, 1, &ce, calc);
1280 if(sec == sec_status_bogus) {
1284 } else if(sec
1486 enum sec_status sec; local
1587 enum sec_status sec, secnx; local
[all...]
H A Dautotrust.h209 enum sec_status sec, char* errinf, int was_ratelimited);
H A Dval_sigcrypt.c564 enum sec_status sec = sec_status_bogus; local
588 sec = dnskey_verify_rrset_sig(env->scratch,
592 if(sec == sec_status_secure)
593 return sec;
594 else if(sec == sec_status_indeterminate)
628 enum sec_status sec; local
657 sec = dnskeyset_verify_rrset_sig(env, ve, *env->now, rrset,
661 if(sec == sec_status_secure) {
663 return sec; /* done! */
666 return sec; /* don
710 enum sec_status sec; local
1543 enum sec_status sec; local
[all...]
/freebsd-current/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp174 auto sec = coffObj->getSection(i); local
175 if (!sec)
176 fatal("getSection failed: #" + Twine(i) + ": " + toString(sec.takeError()));
177 return *sec;
192 const coff_section *sec = getSection(i); local
193 if (sec->Characteristics & IMAGE_SCN_LNK_COMDAT)
203 const coff_section *sec = getSection(sectionNumber); local
206 if (Expected<StringRef> e = coffObj->getSectionName(sec))
214 cantFail(coffObj->getSectionContents(sec, data));
220 addrsigSec = sec;
1118 const coff_section *sec = CHECK(coffObj->getSection(i), file); local
[all...]
H A DWriter.h51 void addContributingPartialSection(PartialSection *sec);
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dnstime.h13 void nstime_init2(nstime_t *time, uint64_t sec, uint64_t nsec);
/freebsd-current/contrib/elftoolchain/elfcopy/
H A Dbinary.c142 struct section *sec, *sec_temp, *shtab; local
152 TAILQ_FOREACH_SAFE(sec, &ecp->v_sec, sec_list, sec_temp) {
153 TAILQ_REMOVE(&ecp->v_sec, sec, sec_list);
154 free(sec);
/freebsd-current/sys/contrib/openzfs/include/sys/fm/
H A Dutil.h68 uint64_t sec; /* seconds since gettimeofday() Epoch */ member in struct:erpt_dump::__anon45
69 uint64_t nsec; /* nanoseconds past ed_tod_base.sec */
/freebsd-current/sys/modules/rtw88/
H A DMakefile14 SRCS+= rx.c sar.c sec.c tx.c util.c
/freebsd-current/sys/sys/
H A Dabi_compat.h71 CP((src).fld, (dst).fld, sec); \
/freebsd-current/sys/x86/include/
H A Dpvclock.h109 uint32_t sec; member in struct:pvclock_wall_clock
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DWriter.h30 void add(OutputSection *sec);
/freebsd-current/contrib/processor-trace/libipt/test/src/
H A Dptunit-image_section_cache.c1595 int sec; local
1599 for (sec = 0; sec < num_sections; ++sec) {
1605 cfix->section[sec], laddr);
1623 if (section->offset != cfix->section[sec]->offset)
1626 if (section->size != cfix->section[sec]->size)
1649 int sec; local
1655 for (sec = 0; sec < num_section
1691 int it, sec, status; local
1717 int it, sec, errcode, lim; local
1753 int it, sec, status; local
[all...]
/freebsd-current/crypto/heimdal/kuser/
H A Dklist.c81 krb5_timestamp sec; local
83 krb5_timeofday (context, &sec);
93 if(cred->times.endtime > sec)
138 krb5_timestamp sec; local
140 krb5_timeofday (context, &sec);
191 if(sec > cred->times.endtime)
238 krb5_deltat sec; local
267 ret = krb5_cc_get_kdc_offset(context, ccache, &sec);
269 if (ret == 0 && do_verbose && sec != 0) {
274 val = sec;
[all...]
/freebsd-current/contrib/wpa/src/ap/
H A Dpmksa_cache_auth.c115 while (pmksa->pmksa && pmksa->pmksa->expiration <= now.sec) {
127 int sec; local
134 sec = pmksa->pmksa->expiration - now.sec;
135 if (sec < 0)
136 sec = 0;
137 eloop_register_timeout(sec + 1, 0, pmksa_cache_expire, pmksa, NULL);
343 entry->expiration = now.sec;
660 (int) (entry->expiration - now.sec),
725 (int) (entry->expiration - now.sec));
[all...]
/freebsd-current/crypto/openssl/crypto/ec/
H A Dec_kmeth.c159 unsigned char *sec = NULL; local
169 if (!eckey->meth->compute_key(&sec, &seclen, pub_key, eckey))
172 KDF(sec, seclen, out, &outlen);
176 memcpy(out, sec, outlen);
178 OPENSSL_clear_free(sec, seclen);
/freebsd-current/contrib/mandoc/
H A Dmandocdb.c87 char *sec; /* section from file content */ member in struct:mpage
1057 free(mpage->sec);
1124 strcasecmp(mpage->sec, mlink->dsec))
1126 mpage->sec, mlink->dsec);
1253 mpage->sec = meta->msec;
1254 mpage->sec = mandoc_strdup(
1255 mpage->sec == NULL ? "" : mpage->sec);
1263 mpage->sec = mandoc_strdup(meta->msec);
1272 mpage->sec
1312 char *line, *p, *title, *sec; local
[all...]
/freebsd-current/sys/amd64/vmm/io/
H A Dvrtc.c54 uint8_t sec; member in struct:rtcdev
207 KASSERT(ct.sec >= 0 && ct.sec <= 59, ("invalid clocktime sec %d",
208 ct.sec));
223 rtc->sec = rtcset(rtc, ct.sec);
297 error = rtcget(rtc, rtc->sec, &ct.sec);
298 if (error || ct.sec <
[all...]
/freebsd-current/sys/rpc/rpcsec_tls/
H A Drpctls_impl.c225 * Set a timeout (currently 15sec) and assume the
282 * Set a timeout (currently 15sec) and assume that
510 *sslp++ = res.sec;
542 rpctls_cl_handlerecord(uint64_t sec, uint64_t usec, uint64_t ssl, argument
557 arg.sec = sec;
568 rpctls_srv_handlerecord(uint64_t sec, uint64_t usec, uint64_t ssl, int procpos, argument
583 arg.sec = sec;
595 rpctls_cl_disconnect(uint64_t sec, uint64_ argument
621 rpctls_srv_disconnect(uint64_t sec, uint64_t usec, uint64_t ssl, int procpos, uint32_t *reterr) argument
[all...]

Completed in 178 milliseconds

1234567891011>>