/freebsd/sys/contrib/openzfs/man/man1/ |
H A D | arcstat.1 | 56 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/usr.sbin/etcupdate/tests/ |
H A D | tests_test.sh | 67 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 D | always_test.sh | 67 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/contrib/bmake/unit-tests/ |
H A D | escape.exp | 43 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 D | escape.mk | 113 # 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/contrib/ntp/ |
H A D | README.leapsmear | 1 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/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSession.cpp | 144 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 = 0; in DoExecute() 158 stop_idx.second = history.GetSize() - 1; in DoExecute() 161 stop_idx.second = start_idx.second + count.second - 1; in DoExecute() [all …]
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
H A D | rsend_027_pos.ksh | 60 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/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProf.cpp | 124 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->getContext() < B.second->getContext(); in sortFuncProfiles() 212 return A.second->getTotalSamples() > B.second->getTotalSamples(); in sortFuncProfiles() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | pair.h | 74 _T2 second; member 117 _LIBCPP_HIDE_FROM_ABI pair() : first(), second() {} in pair() 119 _LIBCPP_HIDE_FROM_ABI pair(_T1 const& __t1, _T2 const& __t2) : first(__t1), second(__t2) {} in pair() 122 _LIBCPP_HIDE_FROM_ABI pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} in pair() 126 second = __p.second; 140 second = __p.second; 173 : first(), second() {} in pair() 181 : first(__t1), second(__t2) {} in pair() 195 : first(std::forward<_U1>(__u1)), second(std::forward<_U2>(__u2)) { in pair() 203 : first(__p.first), second(__p.second) {} in pair() [all …]
|
/freebsd/contrib/tzcode/ |
H A D | tzfile.5 | 134 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/sys/contrib/openzfs/cmd/ |
H A D | arcstat.in | 65 "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/share/man/man7/ |
H A D | orders.7 | 55 "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 Ta Mbit/s Ta 10^6 Ta 125000 62 .It Megabyte per second Ta MB/s Ta 8 * 10^6 Ta 1000000 63 .It Gigabit per second Ta Gbit/s Ta 10^9 Ta 125000000 64 .It Gigabyte per second Ta GB/s Ta 8 * 10^9 Ta 1000000000 [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | PPCallbacks.h | 471 std::unique_ptr<PPCallbacks> First, Second; variable 476 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks() 484 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged() 491 Second->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in LexedFileChanged() 497 Second->FileSkipped(SkippedFile, FilenameTok, FileType); in FileSkipped() 502 // Make sure to invoke the second callback, no matter if the first already in EmbedFileNotFound() 504 Skip |= Second->FileNotFound(FileName); in EmbedFileNotFound() 512 Second->EmbedDirective(HashLoc, FileName, IsAngled, File, Params); in EmbedDirective() 517 // Make sure to invoke the second callback, no matter if the first already in FileNotFound() 519 Skip |= Second->FileNotFound(FileName); in FileNotFound() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUArgumentUsageInfo.cpp | 67 << " 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.WorkGroupIDZ in print() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_thread_arg_retval.cpp | 37 if (t->second.done) in GetArgs() 39 return t->second.args; in Finish() 47 if (t->second.detached) { in Finish() 52 t->second.done = true; 53 t->second.args.arg_retval = retval; in BeforeJoin() 59 if (t && !t->second.detached) { in BeforeJoin() 60 return t->second.gen; 67 } else if (t->second.detached) { in AfterJoin() 78 if (!t || gen != t->second.gen) { in DetachLocked() 83 CHECK(!t->second in DetachLocked() [all...] |
/freebsd/contrib/kyua/integration/ |
H A D | cmd_list_test.sh | 94 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 D | cmd_debug_test.sh | 53 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/contrib/ntp/ntpd/ |
H A D | ntp_leapsec.h | 2 * 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/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ImportedFunctionsInliningStatistics.cpp | 66 // 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->NumberOfRealInlines << "\n"; in dump() 207 if (Lhs->second->NumberOfInlines != Rhs->second->NumberOfInlines) in getSortedNodes() [all …]
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/ |
H A D | tst.relenum.d | 48 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/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | SampleProfileMatcher.cpp | 128 if (!Ret.second) { in findProfileAnchors() 131 Ret.first->second = FunctionId(UnknownIndirectCallee); in findProfileAnchors() 139 for (const auto &C : I.second.getCallTargets()) in findProfileAnchors() 147 for (const auto &C : I.second) in findProfileAnchors() 157 FuncWithoutProfile = R->second; in functionHasProfile() 251 AnchorList1[X].second, AnchorList2[Y].second, in longestCommonSequence() 286 const auto &Candidate = R->second; in matchNonCallsiteLocs() 288 LLVM_DEBUG(dbgs() << "Callsite with callee:" << IR.second.stringRef() in matchNonCallsiteLocs() 296 // second half based on the current anchor. in matchNonCallsiteLocs() 329 if (I.second.stringRef().empty()) in getFilteredAnchorList() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | RecordsSlice.cpp | 71 return Record->second.get(); in findRecord() 183 if (Result.second) in addGlobal() 184 Result.first->second = in addGlobal() 187 updateLinkage(Result.first->second.get(), Linkage); in addGlobal() 188 updateFlags(Result.first->second.get(), Flags); in addGlobal() 190 return Result.first->second.get(); in addGlobal() 198 if (Result.second) in addObjCInterface() 199 Result.first->second = in addObjCInterface() 202 Result.first->second->updateLinkageForSymbols(SymType, Linkage); in addObjCInterface() 203 return Result.first->second.get(); in addObjCInterface() [all …]
|
/freebsd/contrib/kyua/utils/text/ |
H A D | table_test.cpp | 161 row.push_back("Second"); in ATF_TEST_CASE_BODY() 174 "First Second Third\n" in ATF_TEST_CASE_BODY() 191 row.push_back("Second row with some words"); in ATF_TEST_CASE_BODY() 197 "Second row with some words\n", in ATF_TEST_CASE_BODY() 213 row.push_back("Second row with some words"); in ATF_TEST_CASE_BODY() 219 "Second row with some words\n", in ATF_TEST_CASE_BODY() 236 row.push_back("Second row with some words"); in ATF_TEST_CASE_BODY() 242 "Second row\nwith some\nwords\n", in ATF_TEST_CASE_BODY() 255 row.push_back("Second"); in ATF_TEST_CASE_BODY() 268 "First | Second | Third\n" in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
H A D | BlotMapVector.h | 37 assert(I->second < Vector.size()); in ~BlotMapVector() 38 assert(Vector[I->second].first == I->first); in ~BlotMapVector() 58 if (Pair.second) { 60 Pair.first->second = Num; 62 return Vector[Num].second; 64 return Vector[Pair.first->second].second; 70 if (Pair.second) { in insert() 72 Pair.first->second = Num; in insert() 76 return std::make_pair(Vector.begin() + Pair.first->second, false); in insert() 83 return Vector.begin() + It->second; in find() [all …]
|