Home
last modified time | relevance | path

Searched full:second (Results 1 – 25 of 6642) sorted by relevance

12345678910>>...266

/freebsd-src/sys/contrib/openzfs/man/man1/
H A Darcstat.156 MFU list hits per second
64 MRU list hits per second
84 Demand hits per second
86 Demand I/O hits per second
88 Demand misses per second
90 Demand data hits per second
92 Demand data I/O hits per second
94 Demand data misses per second
96 Demand metadata hits per second
98 Demand metadata I/O hits per second
[all...]
/freebsd-src/usr.sbin/etcupdate/tests/
H A Dtests_test.sh67 states="equal first second difftype difflinks difffiles"
90 # compare is "equal"), then the second and third comparisons
95 # of the '*/second/second' cases are relevant.
146 # /first/equal/second: Remove unmodified files. The files
149 mkfifo $i/first/equal/second/fifo
150 echo "foo" > $i/first/equal/second/file
151 mkdir $i/first/equal/second/emptydir
152 ln -s "bar" $i/first/equal/second/link
153 mkdir $i/first/equal/second/fulldir
154 echo "foo" > $i/first/equal/second/fulldir/file
[all …]
H A Dalways_test.sh67 states="equal first second difftype difflinks difffiles"
94 # /first/difftype/second: File with different local type
96 mkfifo $OLD/first/difftype/second/fifo
97 mkdir $TEST/first/difftype/second/fifo
99 # /first/difflinks/second: Modified link removed. Should
101 ln -s "old link" $OLD/first/difflinks/second/link
102 ln -s "test link" $TEST/first/difflinks/second/link
104 # /first/difffiles/second: Modified file removed. Should
106 echo "foo" > $OLD/first/difffiles/second/file
107 echo "bar" > $TEST/first/difffiles/second/file
[all …]
/freebsd-src/contrib/bmake/unit-tests/
H A Descape.exp43 VAR1BSNL0=:first line no space on second line:
44 VAR1BSNLs=:first line one space on second line:
45 VAR1BSNLss=:first line two spaces on second line:
46 VAR1BSNLt=:first line one tab on second line:
47 VAR1BSNLtt=:first line two tabs on second line:
48 VAR1BSNLxx=:first line many spaces and tabs [ ] on second line:
51 #second line without space\
54 #second line without space\
57 second line spaces should be retained':
59 second line spaces should be retained:
[all …]
H A Descape.mk113 # The second lines below each end with '=' so that they will not
140 # The second lines below each end with '=' so that they will not
171 no space on second line
173 one space on second line
175 two spaces on second line
177 one tab on second line
179 two tabs on second line
181 many spaces and tabs [ ] on second line
190 # The "#" in "# second line without space" makes it a comment instead
199 #second line without space\
[all …]
/freebsd-src/contrib/ntp/
H A DREADME.leapsmear1 Leap Second Smearing with NTP
19 Whenever a leap second is to be handled ntpd either:
21 - passes the leap second announcement down to the OS kernel (if the OS
22 supports this) and the kernel handles the leap second automatically, or
24 - applies the leap second correction itself.
26 NTP servers also pass a leap second warning flag down to their clients via
28 approaching leap second, and can handle the leap second appropriately.
33 If a leap second is to be inserted then in most Unix-like systems the OS
34 kernel just steps the time back by 1 second at the beginning of the leap
35 second, so the last second of the UTC day is repeated and thus duplicate
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp144 if (start_idx.first && start_idx.second == UINT64_MAX) { in DoExecute()
146 start_idx.second = history.GetSize() - count.second; in DoExecute()
147 stop_idx.second = history.GetSize() - 1; in DoExecute()
149 start_idx.second = stop_idx.second; in DoExecute()
150 stop_idx.second = history.GetSize() - 1; in DoExecute()
152 start_idx.second = 0; in DoExecute()
153 stop_idx.second = history.GetSize() - 1; in DoExecute()
157 start_idx.second in DoExecute()
[all...]
/freebsd-src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend_027_pos.ksh60 log_must zfs create -p $POOL/ds1/second/third
61 log_must zfs create -p $POOL/ds2/second
62 log_must zfs create -p $POOL/ds3/first/second/third
69 for ds in ds1 ds1/second ds1/second/third \
70 ds2 ds2/second \
71 ds3 ds3/first ds3/first/second ds3/first/second/third
78 log_must eval "zfs send -R -X $POOL/ds1/second --exclude $POOL/ds3/first/second $POOL@presend > $BA…
81 for ds in ds1 ds2 ds2/second ds3 ds3/first
86 for ds in ds1/second ds1/second/third ds3/first/second ds3/first/second/third
/freebsd-src/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSerializerBase.h
/freebsd-src/sys/contrib/openzfs/cmd/
H A Darcstat.in65 "hits": [4, 1000, "ARC hits per second"],
66 "iohs": [4, 1000, "ARC I/O hits per second"],
67 "miss": [4, 1000, "ARC misses per second"],
68 "read": [4, 1000, "Total ARC accesses per second"],
72 "dhit": [4, 1000, "Demand hits per second"],
73 "dioh": [4, 1000, "Demand I/O hits per second"],
74 "dmis": [4, 1000, "Demand misses per second"],
78 "ddhit": [5, 1000, "Demand data hits per second"],
79 "ddioh": [5, 1000, "Demand data I/O hits per second"],
80 "ddmis": [5, 1000, "Demand data misses per second"],
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/__utility/
H A Dpair.h74 _T2 second;
117 _LIBCPP_HIDE_FROM_ABI pair() : first(), second() {}
119 _LIBCPP_HIDE_FROM_ABI pair(_T1 const& __t1, _T2 const& __t2) : first(__t1), second(__t2) {}
122 _LIBCPP_HIDE_FROM_ABI pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
126 second = __p.second;
140 second = __p.second;
173 : first(), second() {}
[all...]
/freebsd-src/contrib/tzcode/
H A Dtzfile.5134 at which a leap second occurs or at which the leap second table expires;
135 the second is a signed integer specifying the correction, which is the
140 Each pair denotes one leap second, either positive or negative,
142 the last pair denotes the leap second table's expiration time.
143 Each leap second is at the end of a UTC calendar month.
144 The first leap second has a nonnegative occurrence time,
145 and is a positive leap second if and only if its correction is positive;
146 the correction for each leap second after the first differs
147 from the previous leap second b
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp124 mergeSampleProfErrors(Result, addCalledTarget(I.first, I.second, Weight)); in merge()
139 OS << " " << I.first << ":" << I.second; in print()
168 OS << SI->first << ": " << SI->second; in print()
182 for (const auto &FS : CS->second) { in print()
184 OS << CS->first << ": inlined callee: " << FS.second.getFunction() in print()
186 FS.second.print(OS, Indent + 4); in print()
206 SortedProfiles.push_back(std::make_pair(I.first, &I.second)); in sortFuncProfiles()
210 if (A.second->getTotalSamples() == B.second->getTotalSamples()) in sortFuncProfiles()
211 return A.second in sortFuncProfiles()
[all...]
/freebsd-src/share/man/man7/
H A Dorders.755 "Megabit per second" "Prefix" "Bit per second" "Byte per second"
56 .It Sy Name Ta Sy Prefix Ta Sy Bit per second Ta Sy Byte per second
57 .It Bit per second Ta bit/s Ta 1 Ta 0.125
58 .It Byte per second Ta B/s Ta 8 Ta 1
59 .It Kilobit per second Ta kbit/s Ta 10^3 Ta 125
60 .It Kilobyte per second Ta kB/s Ta 8 * 10^3 Ta 1000
61 .It Megabit per second T
[all...]
/freebsd-src/usr.sbin/ntp/ntpd/
H A Dleap-seconds15 # LEAP SECOND
20 # than 0.9 seconds. Therefore, when necessary a "leap second" is applied to UTC.
22 # firstly due to the initial choice of the value of the second (1/86400 mean solar day of
24 # theoretically possible to have a negative leap second (a second removed from UTC), but so far,
25 # all leap seconds have been positive (a second has been added to UTC). Based on what we know about
26 # the earth's rotation, it is unlikely that we will ever have a negative leap second.
30 # The first leap second was added on June 30, 1972. Until the year 2000, it was necessary in average to add a
31 # leap second at a rate of 1 to 2 years. Since the year 2000 leap seconds are introduced with an
35 # RESPONSIBILITY OF THE DECISION TO INTRODUCE A LEAP SECOND I
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUArgumentUsageInfo.cpp67 << " PrivateSegmentBuffer: " << FI.second.PrivateSegmentBuffer in print()
68 << " DispatchPtr: " << FI.second.DispatchPtr in print()
69 << " QueuePtr: " << FI.second.QueuePtr in print()
70 << " KernargSegmentPtr: " << FI.second.KernargSegmentPtr in print()
71 << " DispatchID: " << FI.second.DispatchID in print()
72 << " FlatScratchInit: " << FI.second.FlatScratchInit in print()
73 << " PrivateSegmentSize: " << FI.second.PrivateSegmentSize in print()
74 << " WorkGroupIDX: " << FI.second.WorkGroupIDX in print()
75 << " WorkGroupIDY: " << FI.second.WorkGroupIDY in print()
76 << " WorkGroupIDZ: " << FI.second in print()
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_arg_retval.cpp37 if (t->second.done) in GetArgs()
39 return t->second.args; in GetArgs()
47 if (t->second.detached) { in Finish()
52 t->second.done = true; in Finish()
53 t->second.args.arg_retval = retval; in Finish()
59 if (t && !t->second.detached) { in BeforeJoin()
60 return t->second.gen; in BeforeJoin()
67 } else if (t->second.detached) { in BeforeJoin()
78 if (!t || gen != t->second.gen) { in AfterJoin()
83 CHECK(!t->second.detached); in AfterJoin()
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h471 std::unique_ptr<PPCallbacks> First, Second;
476 : First(std::move(_First)), Second(std::move(_Second)) {} in InclusionDirective()
484 Second->FileChanged(Loc, Reason, FileType, PrevFID); in InclusionDirective()
491 Second->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc);
497 Second->FileSkipped(SkippedFile, FilenameTok, FileType);
502 // Make sure to invoke the second callback, no matter if the first already in moduleImport()
504 Skip |= Second->FileNotFound(FileName); in EndOfMainFile()
512 Second->EmbedDirective(HashLoc, FileName, IsAngled, File, Params); in Ident()
517 // Make sure to invoke the second callback, no matter if the first already in PragmaDirective()
519 Skip |= Second in PragmaDirective()
435 std::unique_ptr<PPCallbacks> First, Second; global() variable
[all...]
/freebsd-src/contrib/kyua/integration/
H A Dcmd_list_test.sh94 atf_test_program{name="second"}
97 utils_cp_helper simple_all_pass second
112 atf_test_program{name="second"}
115 utils_cp_helper simple_some_fail second
118 second:fail
119 second:pass
121 atf_check -s exit:0 -o file:expout -e empty kyua list second
153 atf_test_program{name="second"}
155 utils_cp_helper simple_some_fail subdir/second
158 subdir/second:fail (in-subdir)
[all …]
H A Dcmd_debug_test.sh53 atf_test_program{name="second"}
56 utils_cp_helper simple_all_pass second
63 second:pass
73 atf_test_program{name="second"}
76 utils_cp_helper simple_all_pass second
80 second:pass -> passed
85 atf_check -s exit:0 -o file:expout -e file:experr kyua debug second:pass
115 atf_test_program{name="second"}
118 utils_cp_helper simple_all_pass second
121 kyua: E: Unknown test case 'second:die'.
[all …]
/freebsd-src/contrib/ntp/ntpd/
H A Dntp_leapsec.h2 * ntp_leapsec.h - leap second processing for NTPD
7 * This is an attempt to get the leap second handling into a dedicated
27 /* Validate a stream containing a leap second file in the NIST / NTPD
42 * automagically manages the leap second, so we don't have to care about
47 * second, and no client actions are needed when crossing the leap era
52 * too close to a leap second. The transition might be lost in that
69 vint64 ttime; /* era end (UTC of next leap second) */
74 /* Query result for a leap second schedule
87 * 'warped' is set only once, when the the leap second occurred between
91 * more useful than an absolute difference to the leap second.
[all …]
/freebsd-src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.relenum.d48 second enumerator
52 /zero >= one || second <= first || zero == second/
56 printf("null = %d; first = %d; second = %d", null, first, second);
61 /second < one || two > second || null == first/
65 printf("null = %d; first = %d; second = %d", null, first, second);
70 /first < two && second > one && one != two && zero != first/
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp66 // We could avoid second lookup, but it would make the code ultra ugly. in recordInline()
121 assert(Node->second->NumberOfInlines >= Node->second->NumberOfRealInlines); in dump()
122 if (Node->second->NumberOfInlines == 0) in dump()
125 if (Node->second->Imported) { in dump()
128 int(Node->second->NumberOfRealInlines > 0); in dump()
132 int(Node->second->NumberOfRealInlines > 0); in dump()
137 << (Node->second->Imported ? "imported " : "not imported ") in dump()
139 << ": #inlines = " << Node->second->NumberOfInlines in dump()
141 << Node->second in dump()
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp199 assert(I->second == ExecutorSymbolDef() && in handleComplete()
207 I->second = std::move(Sym); in handleComplete()
247 bool Added = QueryRegistrations[&JD].insert(std::move(Name)).second; in dropSymbol()
257 assert(QRI->second.count(Name) && "No dependency on Name in JD"); in detach()
258 QRI->second.erase(Name);
259 if (QRI->second.empty()) in AbsoluteSymbolsMaterializationUnit()
346 RequestedAliases[Name] = std::move(I->second); in materialize()
402 if (&SrcJD == &TgtJD && (QueryAliases.count(KV.second.Aliasee) || in materialize()
403 RequestedAliases.count(KV.second.Aliasee))) in materialize()
407 QuerySymbols.add(KV.second in materialize()
[all...]
/freebsd-src/contrib/tzdata/
H A Dleap-seconds.list15 # LEAP SECOND
20 # than 0.9 seconds. Therefore, when necessary a "leap second" is applied to UTC.
22 # firstly due to the initial choice of the value of the second (1/86400 mean solar day of
24 # theoretically possible to have a negative leap second (a second removed from UTC), but so far,
25 # all leap seconds have been positive (a second has been added to UTC). Based on what we know about
26 # the earth's rotation, it is unlikely that we will ever have a negative leap second.
30 # The first leap second was added on June 30, 1972. Until the year 2000, it was necessary in average to add a
31 # leap second at a rate of 1 to 2 years. Since the year 2000 leap seconds are introduced with an
35 # RESPONSIBILITY OF THE DECISION TO INTRODUCE A LEAP SECOND I
[all...]

12345678910>>...266