Home
last modified time | relevance | path

Searched refs:UN (Results 1 – 25 of 38) sorted by relevance

12

/src/contrib/llvm-project/llvm/lib/Support/
H A DBalancedPartitioning.cpp172 for (auto &UN : N.UtilityNodes) in runIterations() local
173 ++UtilityNodeIndex[UN]; in runIterations()
177 llvm::erase_if(N.UtilityNodes, [&](auto &UN) { in runIterations() argument
178 return UtilityNodeIndex[UN] == 1 || UtilityNodeIndex[UN] == NumNodes; in runIterations()
184 for (auto &UN : N.UtilityNodes) in runIterations() local
185 UN = UtilityNodeIndex.insert({UN, UtilityNodeIndex.size()}).first->second; in runIterations()
190 for (auto &UN : N.UtilityNodes) { in runIterations() local
191 assert(UN < Signatures.size()); in runIterations()
193 Signatures[UN].LeftCount++; in runIterations()
195 Signatures[UN].RightCount++; in runIterations()
[all …]
H A DNativeFormatting.cpp101 UnsignedT UN = -(UnsignedT)N; in write_signed() local
102 write_unsigned(S, UN, MinDigits, Style, true); in write_signed()
/src/lib/libusb/
H A Dlibusb20_desc.h131 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 8, , 1)
134 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 8, [arg], arg)
143 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 16, , 1)
146 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 16, [arg], arg)
155 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 32, , 1)
158 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 32, [arg], arg)
167 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 64, , 1)
170 LIBUSB20_ME_INTEGER(n, field, ismeta, UN, u, 64, [arg], arg)
/src/contrib/libpcap/rpcapd/
H A DCMakeLists.txt18 # On UN*X, we need pthreads and crypt().
109 # some of which are general UN*X conventions.
132 # On UN*X, we put it in the sbin directory.
144 # On UN*X, and on Windows when not using MSVC, generate process man
/src/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp219 NodeAddr<UseNode *> UN = *I; in allValidCandidates() local
220 RegisterRef UR = UN.Addr->getRegRef(*DFG); in allValidCandidates()
222 const auto &P = LV->getAllReachingDefsRec(UR, UN, Visited, Defs); in allValidCandidates()
226 << PrintNode<UseNode*>(UN, *DFG) << '\n' in allValidCandidates()
424 NodeAddr<UseNode *> UN = *I; in processAddUses() local
425 NodeAddr<StmtNode *> SN = UN.Addr->getOwner(*DFG); in processAddUses()
519 NodeAddr<UseNode *> UN = *I; in analyzeUses() local
520 NodeAddr<StmtNode *> SN = UN.Addr->getOwner(*DFG); in analyzeUses()
/src/usr.bin/m4/
H A DNOTES6 most of the command set of SysV m4, the standard UN*X macro processor.
8 Since both PD m4 and UN*X m4 are based on SOFTWARE TOOLS macro,
/src/contrib/file/magic/Magdir/
H A Dmercurial11 >4 string UN (uncompressed)
H A Drevision31 >4 string UN uncompressed
/src/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp1045 for (auto UN = FirstUN; UN <= MaxUN; ++UN) in createBPFunctionNodes() local
1046 IdToUNs[Id].push_back(UN); in createBPFunctionNodes()
1054 for (auto &UN : UNs) in createBPFunctionNodes() local
1055 ++UNFrequency[UN]; in createBPFunctionNodes()
1059 llvm::erase_if(UNs, [&](auto &UN) { in createBPFunctionNodes() argument
1060 return UNFrequency[UN] <= 1 || 2 * UNFrequency[UN] > IdToUNs.size(); in createBPFunctionNodes()
/src/contrib/libpcap/doc/
H A DREADME.windows.md4 Unlike the UN*Xes on which libpcap can capture network traffic, Windows
75 runs on UN\*Xes and on Windows and that can generate project files for
76 UN\*X Make, the Ninja build system, and Visual Studio, among other build
/src/contrib/tcpdump/cmake/Modules/
H A DFindPCAP.cmake21 # Don't bother looking for static libraries; unlike most UN*Xes
103 # Building for UN*X.
121 # *If* we were to require CMake 3.1 or later on UN*X,
128 # If we ever set a minimum of 3.1 or later on UN*X, we should
/src/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp508 NodeId UN = !IsDead ? DA.Addr->getReachedUse() : 0; in computePhiInfo() local
509 while (UN != 0) { in computePhiInfo()
510 NodeAddr<UseNode *> A = DFG.addr<UseNode *>(UN); in computePhiInfo()
516 UN = A.Addr->getSibling(); in computePhiInfo()
/src/contrib/libpcap/cmake/Modules/
H A DFinddpdk.cmake78 # need an environment UN*Xy enough, and modern enough, to
/src/contrib/libpcap/
H A DCMakeLists.txt134 # a UN*X, -l can be prefixed - i.e., names, without extensions,
137 # containing the libraries, to which, on a UN*X, -L can be
466 # On UN*X, it's always been libpcap.
496 # not having it on UN*X.
660 # Windows, we skip tests for UN*X-only headers and functions.
822 # UN*X.
824 # Most UN*Xes have getaddrinfo(), and the other routines we may
1113 # You are in a twisty little maze of UN*Xes, all different.
1238 # Large file support on UN*X, a/k/a LFS.
1284 # That's only on UN*X; on Windows, if they use threads, we assume
[all …]
H A DCHANGES199 on UN*Xes and as SOCKET on Windows.
494 Trim documentation of support for now-dead UN*Xe and older
495 versions of other UN*Xes.
613 On UN*X, don't have rpcapd tell the client why authentication
817 Add tests for large file support on UN*X.
/src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordMapping.cpp467 UsingNamespaceSym &UN) { in visitKnownRecord() argument
469 error(IO.mapStringZ(UN.Name)); in visitKnownRecord()
H A DSymbolDumper.cpp644 UsingNamespaceSym &UN) { in visitKnownRecord() argument
645 W.printString("Namespace", UN.Name); in visitKnownRecord()
/src/share/mk/
H A Dgendirdeps.mk356 SRC_DIRDEPS := ${SRC_DIRDEPS:${GENDIRDEPS_SRC_FILTER:UN/*:ts:}:C,//+,/,g:O:u}
/src/contrib/bmake/mk/
H A Dgendirdeps.mk356 SRC_DIRDEPS := ${SRC_DIRDEPS:${GENDIRDEPS_SRC_FILTER:UN/*:ts:}:C,//+,/,g:O:u}
/src/contrib/tcpdump/
H A Dconfigure.ac478 * On UN*Xes, this is a signed integer type of the same size as size_t.
553 # You are in a twisty little maze of UN*Xes, all different.
746 dnl on UN*X, but not on Windows, where hilarity ensues if a program
1156 # portable code that could run on other UN*Xes, they want you
H A DCMakeLists.txt549 * On UN*Xes, this is a signed integer type of the same size as size_t.
643 # You are in a twisty little maze of UN*Xes, all different.
836 # on UN*X, but not on Windows, where hilarity ensues if a program
1568 # some of which are general UN*X conventions.
1580 # On UN*X, and on Windows when not using MSVC, process man pages and
H A Dconfigure.in427 # You are in a twisty little maze of UN*Xes, all different.
928 # nasty portable code that could run on other UN*Xes, they
/src/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp931 UsingNamespaceSym &UN) { in visitKnownRecord() argument
932 P.format(" `{0}`", UN.Name); in visitKnownRecord()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h226 Error visitKnownRecord(CVSymbol &Record, UsingNamespaceSym &UN) override;
/src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1683 UsingNamespaceSym &UN) { in visitKnownRecord() argument
1684 LLVM_DEBUG({ W.printString("Namespace", UN.Name); }); in visitKnownRecord()

12