Home
last modified time | relevance | path

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

12345678910>>...228

/freebsd/sys/contrib/openzfs/man/man1/
H A Dzarcstat.157 MFU list hits per second
65 MRU list hits per second
85 Demand hits per second
87 Demand I/O hits per second
89 Demand misses per second
91 Demand data hits per second
93 Demand data I/O hits per second
95 Demand data misses per second
97 Demand metadata hits per second
99 Demand metadata I/O hits per second
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/SandboxIR/
H A DContext.cpp21 auto *Val = It->second.release(); in detachLLVMValue()
42 assert(Pair.second && "Already exists!"); in registerValue()
59 if (!Pair.second) in getOrCreateValueInternal()
60 return It->second.get(); in getOrCreateValueInternal()
67 It->second = std::unique_ptr<VAArgInst>(new VAArgInst(LLVMVAArg, *this)); in getOrCreateValueInternal()
68 return It->second.get(); in getOrCreateValueInternal()
72 It->second = in getOrCreateValueInternal()
74 return It->second.get(); in getOrCreateValueInternal()
78 It->second = std::unique_ptr<FenceInst>(new FenceInst(LLVMFence, *this)); in getOrCreateValueInternal()
79 return It->second.get(); in getOrCreateValueInternal()
[all …]
/freebsd/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 …]
/freebsd/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/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSession.cpp146 if (start_idx.first && start_idx.second == UINT64_MAX) { in DoExecute()
148 start_idx.second = history.GetSize() - count.second; in DoExecute()
149 stop_idx.second = history.GetSize() - 1; in DoExecute()
151 start_idx.second = stop_idx.second; in DoExecute()
152 stop_idx.second = history.GetSize() - 1; in DoExecute()
154 start_idx.second = 0; in DoExecute()
155 stop_idx.second = history.GetSize() - 1; in DoExecute()
159 start_idx.second = 0; in DoExecute()
160 stop_idx.second = history.GetSize() - 1; in DoExecute()
163 stop_idx.second = start_idx.second + count.second - 1; in DoExecute()
[all …]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_siphash.c134 * @second: second u64
137 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument
144 v3 ^= second; in siphash_2u64()
147 v0 ^= second; in siphash_2u64()
155 * @second: second u64
159 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument
167 v3 ^= second; in siphash_3u64()
170 v0 ^= second; in siphash_3u64()
182 * @second: second u64
187 u64 siphash_4u64(const u64 first, const u64 second, const u64 third, in siphash_4u64() argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dpair.h99 _T2 second; member
111 _LIBCPP_HIDE_FROM_ABI pair() : first(), second() {} in pair()
113 _LIBCPP_HIDE_FROM_ABI pair(_T1 const& __t1, _T2 const& __t2) : first(__t1), second(__t2) {} in pair()
116 _LIBCPP_HIDE_FROM_ABI pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} in pair()
120 second = __p.second;
134 second = __p.second;
142 : first(), second() {} in pair()
150 : first(__t1), second(__t2) {} in pair()
165 : first(std::forward<_U1>(__u1)), second(std::forward<_U2>(__u2)) { in pair()
175 : first(__p.first), second(__p.second) {} in pair()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Drsend_027_pos.ksh51 log_must zfs create -p $POOL/ds1/second/third
52 log_must zfs create -p $POOL/ds2/second
53 log_must zfs create -p $POOL/ds3/first/second/third
60 for ds in ds1 ds1/second ds1/second/third \
61 ds2 ds2/second \
62 ds3 ds3/first ds3/first/second ds3/first/second/third
69 log_must eval "zfs send -R -X $POOL/ds1/second --exclude $POOL/ds3/first/second $POOL@presend > $BA…
72 for ds in ds1 ds2 ds2/second ds3 ds3/first
77 for ds in ds1/second ds1/second/third ds3/first/second ds3/first/second/third
H A Dsend_large_microzap_incremental.ksh31 # 3. Send the snapshot from the first pool to a second pool.
32 # 4. Create a second snapshot.
33 # 5. Send the second snapshot incrementally to the second pool.
59 typeset second=$POOL2/second
81 # Create initial snapshot and send to second pool.
83 log_must eval "zfs send -p -L $src@snap | zfs receive $second"
87 # Create a second snapshot and send incrementally.
88 # This ensures that the feature is not activated a second time, which would cause a panic.
90 log_must eval "zfs send -L -i $src@snap $src@snap2 | zfs receive -F $second"
H A Dsend_large_blocks_initial.ksh31 # 3. Send a full stream to a second dataset.
58 typeset second=$POOL2/second
74 # Create initial snapshot and send to 'second' dataset.
77 log_must eval "zfs send -p -L $repro@initial | zfs receive $second"
82 # born in the 'second' dataset.
83 log_must zfs snapshot $second@second
84 log_must eval "zfs send -L -i $second@initial $second@second | zfs receive -F $repro"
/freebsd/usr.sbin/pmc/
H A Dcmd_pmc_frontend.cc120 inst->second.func = sym; in callchain()
127 inst->second.ocmiss += 1; in callchain()
129 inst->second.l2miss += 1; in callchain()
131 inst->second.l3miss += 1; in callchain()
134 inst->second.l1tlbmiss += 1; in callchain()
136 inst->second.l2tlbmiss += 1; in callchain()
138 inst->second.latency += IBS_FETCH_CTL_TO_LAT(f.ctl); in callchain()
139 inst->second.samples += 1; in callchain()
162 r.emplace_back(kv.second.func.binary); in print()
163 r.emplace_back(kv.second.func.to_string()); in print()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProf.cpp127 mergeSampleProfErrors(Result, addCalledTarget(I.first, I.second, Weight)); in merge()
138 uint64_t CalleeSamples = J.second; in serialize()
141 encodeULEB128(NameIndexIter->second, OS); in serialize()
166 OS << " " << I.first << ":" << I.second; in print()
195 OS << SI->first << ": " << SI->second; in print()
235 SortedProfiles.push_back(std::make_pair(I.first, &I.second)); in sortFuncProfiles()
239 if (A.second->getTotalSamples() == B.second->getTotalSamples()) in sortFuncProfiles()
240 return A.second->getContext() < B.second->getContext(); in sortFuncProfiles()
241 return A.second->getTotalSamples() > B.second->getTotalSamples(); in sortFuncProfiles()
290 FS = FS->findFunctionSamplesAt(S[i].first, S[i].second, Remapper, in findFunctionSamples()
[all …]
/freebsd/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 non-negative 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 by either 1 for a positive leap second,
148 or \-1 for a negative leap second.
[all …]
/freebsd/sys/contrib/openzfs/cmd/
H A Dzarcstat.in56 "hits": [4, 1000, "ARC hits per second"],
57 "iohs": [4, 1000, "ARC I/O hits per second"],
58 "miss": [4, 1000, "ARC misses per second"],
59 "read": [4, 1000, "Total ARC accesses per second"],
63 "dhit": [4, 1000, "Demand hits per second"],
64 "dioh": [4, 1000, "Demand I/O hits per second"],
65 "dmis": [4, 1000, "Demand misses per second"],
69 "ddhit": [5, 1000, "Demand data hits per second"],
70 "ddioh": [5, 1000, "Demand data I/O hits per second"],
71 "ddmis": [5, 1000, "Demand data misses per second"],
[all …]
/freebsd/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 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 DPPCallbacks.h472 std::unique_ptr<PPCallbacks> First, Second; variable
477 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
485 Second->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
492 Second->LexedFileChanged(FID, Reason, FileType, PrevFID, Loc); in LexedFileChanged()
498 Second->FileSkipped(SkippedFile, FilenameTok, FileType); in FileSkipped()
503 // Make sure to invoke the second callback, no matter if the first already in EmbedFileNotFound()
505 Skip |= Second->FileNotFound(FileName); in EmbedFileNotFound()
513 Second->EmbedDirective(HashLoc, FileName, IsAngled, File, Params); in EmbedDirective()
518 // Make sure to invoke the second callback, no matter if the first already in FileNotFound()
520 Skip |= Second->FileNotFound(FileName); in FileNotFound()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUArgumentUsageInfo.cpp66 << " PrivateSegmentBuffer: " << FI.second.PrivateSegmentBuffer in print()
67 << " DispatchPtr: " << FI.second.DispatchPtr in print()
68 << " QueuePtr: " << FI.second.QueuePtr in print()
69 << " KernargSegmentPtr: " << FI.second.KernargSegmentPtr in print()
70 << " DispatchID: " << FI.second.DispatchID in print()
71 << " FlatScratchInit: " << FI.second.FlatScratchInit in print()
72 << " PrivateSegmentSize: " << FI.second.PrivateSegmentSize in print()
73 << " WorkGroupIDX: " << FI.second.WorkGroupIDX in print()
74 << " WorkGroupIDY: " << FI.second.WorkGroupIDY in print()
75 << " WorkGroupIDZ: " << FI.second.WorkGroupIDZ in print()
[all …]
/freebsd/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 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 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/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/contrib/llvm-project/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp65 // We could avoid second lookup, but it would make the code ultra ugly. in recordInline()
120 assert(Node->second->NumberOfInlines >= Node->second->NumberOfRealInlines); in dump()
121 if (Node->second->NumberOfInlines == 0) in dump()
124 if (Node->second->Imported) { in dump()
127 int(Node->second->NumberOfRealInlines > 0); in dump()
131 int(Node->second->NumberOfRealInlines > 0); in dump()
136 << (Node->second->Imported ? "imported " : "not imported ") in dump()
138 << ": #inlines = " << Node->second->NumberOfInlines in dump()
140 << Node->second->NumberOfRealInlines << "\n"; in dump()
206 if (Lhs->second->NumberOfInlines != Rhs->second->NumberOfInlines) in getSortedNodes()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.cpp315 getRISCVInstructionCost(RISCV::VQDOT_VV, LT.second, CostKind); in getPartialReductionCost()
453 .second) in costShuffleViaSplitting()
493 .second; in costShuffleViaVRegSplitting()
529 .second) in costShuffleViaVRegSplitting()
560 if (!LT.second.isFixedLengthVector()) in getSlideCost()
580 if (SrcInfo[1].second == 0) in getSlideCost()
584 if (SrcInfo[0].second != 0) { in getSlideCost()
585 unsigned Opcode = GetSlideOpcode(SrcInfo[0].second); in getSlideCost()
586 FirstSlideCost = getRISCVInstructionCost(Opcode, LT.second, CostKind); in getSlideCost()
593 if (SrcInfo[1].second != 0) { in getSlideCost()
[all …]

12345678910>>...228