/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/usr.sbin/etcupdate/tests/ |
H A D | always_test.sh | 96 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 D | tests_test.sh | 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 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/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/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 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 D | rsend_025_pos.ksh | 60 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/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: 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 D | depsrc-use.mk | 17 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/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/llvm-project/llvm/lib/Analysis/ |
H A D | ImportedFunctionsInliningStatistics.cpp | 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() 208 return Lhs->second->NumberOfInlines > Rhs->second->NumberOfInlines; in getSortedNodes() [all …]
|
/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() 329 if (I.second.stringRef().empty()) in getFilteredAnchorList() 422 FSFlattened = getFlattenedSamplesFor(R->second); in runOnFunction() [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/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/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | FunctionSummary.h | 74 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/contrib/ntp/sntp/libevent/sample/ |
H A D | hostcheck.c | 123 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/contrib/libevent/sample/ |
H A D | hostcheck.c | 123 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/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/lldb/source/Utility/ |
H A D | SelectHelper.cpp | 64 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/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 …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | WebAssemblyDisassemblerEmitter.cpp | 61 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() 114 OS << " { " << InstIt->second.first << ", ET_Instruction, "; in emitWebAssemblyDisassemblerTables() 167 if (PrefixPair.second.empty() || !PrefixPair.first) in emitWebAssemblyDisassemblerTables()
|
/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/llvm-project/llvm/include/llvm/XRay/ |
H A D | Graph.h | 216 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...] |
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | UnixSignals.cpp | 119 signal->second.m_codes.insert( in AddSignalCode() 135 return pos->second.m_name; in GetSignalAsCString() 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 in GetSignalNumberFromName() [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | Core.cpp | 199 assert(I->second == ExecutorSymbolDef() && in notifySymbolMetRequiredState() 207 I->second = std::move(Sym); in notifySymbolMetRequiredState() 247 bool Added = QueryRegistrations[&JD].insert(std::move(Name)).second; in addQueryDependence() 257 assert(QRI->second.count(Name) && "No dependency on Name in JD"); in removeQueryDependence() 258 QRI->second.erase(Name); in removeQueryDependence() 259 if (QRI->second.empty()) in removeQueryDependence() 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.Aliasee, in materialize() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | InfoByHwMode.cpp | 34 auto I = Map.insert({P.first, MVT(llvm::getValueType(P.second))}); in ValueTypeByHwMode() 35 assert(I.second && "Duplicate entry?"); in ValueTypeByHwMode() 67 return F->second; in getOrCreateTypeForMode() 72 return Map.insert(std::pair(Mode, D->second)).first->second; in getOrCreateTypeForMode() 74 return Map.insert(std::pair(Mode, Type)).first->second; in getOrCreateTypeForMode() 98 << getMVTName(P->second).str() << ')'; in writeToStream() 142 auto I = Map.insert({P.first, RegSizeInfo(P.second)}); in RegSizeInfoByHwMode() 143 assert(I.second && "Duplicate entry?"); in RegSizeInfoByHwMode() 182 OS << LS << '(' << getModeName(P->first) << ':' << P->second << ')'; in writeToStream() 194 auto I = Map.insert({P.first, SubRegRange(P.second)}); in SubRegRangeByHwMode() [all …]
|