Home
last modified time | relevance | path

Searched refs:second (Results 1 – 25 of 3230) sorted by relevance

12345678910>>...130

/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/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSerializerBase.h
/freebsd-src/usr.sbin/etcupdate/tests/
H A Dalways_test.sh96 mkfifo $OLD/first/difftype/second/fifo
97 mkdir $TEST/first/difftype/second/fifo
101 ln -s "old link" $OLD/first/difflinks/second/link
102 ln -s "test link" $TEST/first/difflinks/second/link
106 echo "foo" > $OLD/first/difffiles/second/file
107 echo "bar" > $TEST/first/difffiles/second/file
112 mkdir $NEW/second/second/difftype/dir
113 mkfifo $TEST/second/second/difftype/dir
117 ln -s "new link" $NEW/second/second/difflinks/link
118 ln -s "test link" $TEST/second/second/difflinks/link
[all …]
H A Dtests_test.sh149 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
175 mkfifo $OLD/first/difftype/second/fifo
176 mkdir $TEST/first/difftype/second/fifo
183 ln -s "old link" $OLD/first/difflinks/second/link
184 ln -s "test link" $TEST/first/difflinks/second/link
[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/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
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
H A Drsend_025_pos.ksh60 log_must zfs create -p $POOL/ds1/second/third
61 log_must zfs create -p $POOL/ds2/second
68 for ds in ds1 ds1/second ds1/second/third \
69 ds2 ds2/second
79 for ds in ds1 ds2 ds2/second
84 for ds in ds1/second ds1/second/third
/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:
57 second line spaces should be retained':
59 second line spaces should be retained:
61 second line tab should be elided':
63 second line tab should be elided:
[all …]
H A Ddepsrc-use.mk17 first: .USE first-first first-second
23 first-second: .USE
24 @echo first-second 1
25 @echo first-second 2
27 second: .USE
28 @echo second 1
29 @echo second 2
39 action: first second empty
/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/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/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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DFunctionSummary.h74 I->second.InlineChecked = 1; in markMayInline()
75 I->second.MayInline = 1; in markMayInline()
80 I->second.InlineChecked = 1; in markShouldNotInline()
81 I->second.MayInline = 0; in markShouldNotInline()
90 if (I != Map.end() && I->second.InlineChecked) in mayInline()
91 return I->second.MayInline; in mayInline()
97 llvm::SmallBitVector &Blocks = I->second.VisitedBasicBlocks; in markVisitedBasicBlock()
101 I->second.TotalBasicBlocks = TotalIDs; in markVisitedBasicBlock()
109 return I->second.VisitedBasicBlocks.count(); in getNumVisitedBasicBlocks()
116 return I->second.TimesInlined; in getNumTimesInlined()
[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/libevent/sample/
H A Dhostcheck.c123 static int Curl_raw_equal(const char *first, const char *second) in Curl_raw_equal() argument
125 while(*first && *second) { in Curl_raw_equal()
126 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) in Curl_raw_equal()
130 second++; in Curl_raw_equal()
135 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second)); in Curl_raw_equal()
138 static int Curl_raw_nequal(const char *first, const char *second, size_t max) in Curl_raw_nequal() argument
140 while(*first && *second && max) { in Curl_raw_nequal()
141 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) { in Curl_raw_nequal()
146 second++; in Curl_raw_nequal()
151 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second); in Curl_raw_nequal()
/freebsd-src/contrib/ntp/sntp/libevent/sample/
H A Dhostcheck.c123 static int Curl_raw_equal(const char *first, const char *second) in Curl_raw_equal() argument
125 while(*first && *second) { in Curl_raw_equal()
126 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) in Curl_raw_equal()
130 second++; in Curl_raw_equal()
135 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second)); in Curl_raw_equal()
138 static int Curl_raw_nequal(const char *first, const char *second, size_t max) in Curl_raw_nequal() argument
140 while(*first && *second && max) { in Curl_raw_nequal()
141 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) { in Curl_raw_nequal()
146 second++; in Curl_raw_nequal()
151 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second); in Curl_raw_nequal()
/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/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/llvm-project/lldb/source/Utility/
H A DSelectHelper.cpp64 return pos->second.read_is_set; in FDIsSetRead()
72 return pos->second.write_is_set; in FDIsSetWrite()
80 return pos->second.error_is_set; in FDIsSetError()
108 pair.second.PrepareForSelect(); in Select()
117 if (pair.second.read_set) in Select()
119 if (pair.second.write_set) in Select()
121 if (pair.second.error_set) in Select()
181 if (pair.second.read_set) in Select()
184 if (pair.second.write_set) in Select()
187 if (pair.second.error_set) in Select()
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DBlotMapVector.h37 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 …]
/freebsd-src/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordsSlice.cpp71 return Record->second.get(); in findGlobal()
183 if (Result.second)
184 Result.first->second = in addObjCCategory()
187 updateLinkage(Result.first->second.get(), Linkage); in addObjCCategory()
188 updateFlags(Result.first->second.get(), Flags);
190 return Result.first->second.get(); in addObjCCategory()
198 if (Result.second) in addObjCCategory()
199 Result.first->second = in addObjCCategory()
202 Result.first->second->updateLinkageForSymbols(SymType, Linkage); in addObjCCategory()
203 return Result.first->second in addObjCCategory()
[all...]
/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/
H A DWebAssemblyDisassemblerEmitter.cpp61 if (CGIP.second) { in emitWebAssemblyDisassemblerTables()
67 CGIP.second->TheDef->getValueAsBit("IsCanonical"); in emitWebAssemblyDisassemblerTables()
78 if (CGIP.second->AsmString.size() <= CGI.AsmString.size()) in emitWebAssemblyDisassemblerTables()
101 if (PrefixPair.second.empty()) in emitWebAssemblyDisassemblerTables()
106 auto InstIt = PrefixPair.second.find(I); in emitWebAssemblyDisassemblerTables()
107 if (InstIt != PrefixPair.second.end()) { in emitWebAssemblyDisassemblerTables()
109 assert(InstIt->second.second); in emitWebAssemblyDisassemblerTables()
110 auto &CGI = *InstIt->second.second; in emitWebAssemblyDisassemblerTables()
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DMapVector.h101 auto &I = Result.first->second;
102 if (Result.second) {
106 return Vector[I].second;
114 return Pos == Map.end()? ValueT() : Vector[Pos->second].second; in lookup()
121 It->second = Vector.size(); in try_emplace()
126 return std::make_pair(begin() + It->second, false); in try_emplace()
132 It->second = Vector.size(); in try_emplace()
138 return std::make_pair(begin() + It->second, false); in try_emplace()
142 return try_emplace(KV.first, KV.second); in insert()
145 return try_emplace(std::move(KV.first), std::move(KV.second)); in insert()
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Target/
H A DUnixSignals.cpp119 signal->second.m_codes.insert( in AddSignalCode()
135 return pos->second.m_name; in GetSignalAsStringRef()
147 str = pos->second.m_name.str(); in GetSignalDescription()
151 pos->second.m_codes.find(*code); in GetSignalDescription()
152 if (cpos != pos->second.m_codes.end()) { in GetSignalDescription()
153 const SignalCode &sc = cpos->second; in GetSignalDescription()
203 if ((name_ref == pos->second.m_name) || (name_ref == pos->second.m_alias) || in GetSignalNumberFromName()
204 (name_ref == GetShortName(pos->second.m_name)) || in GetSignalNumberFromName()
205 (name_ref == GetShortName(pos->second.m_alias))) in GetSignalNumberFromName()
242 const Signal &signal = pos->second; in GetSignalInfo()
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/XRay/
H A DGraph.h216 return iterator(It->second.begin(), &M, A); in begin()
223 return const_iterator(It->second.begin(), &M, A); in cbegin()
232 return iterator(It->second.end(), &M, A); in end()
238 return const_iterator(It->second.end(), &M, A); in cend()
248 return I->second.size(); in size()
382 return Vertices.FindAndConstruct(I).second;
391 Vertices.FindAndConstruct(I.second);
392 InNeighbors[I.second].insert(I.first);
393 OutNeighbors[I.first].insert(I.second);
394 return P.second;
[all …]

12345678910>>...130