HomeSort by: relevance | last modified time | path
    Searched refs:NT (Results 1 - 20 of 20) sorted by relevancy

  /src/external/gpl2/xcvs/dist/
cvs2netbsd 40 rm -rf emx os2 tools vms windows-NT zlib && \
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_function_call_trie.h 572 NodeAndTarget NT = DFSStack.back();
573 DCHECK_NE(NT.OrigNode, nullptr);
574 DCHECK_NE(NT.TargetNode, nullptr);
577 NT.TargetNode->CallCount += NT.OrigNode->CallCount;
578 NT.TargetNode->CumulativeLocalTime += NT.OrigNode->CumulativeLocalTime;
579 for (const auto Callee : NT.OrigNode->Callees) {
580 auto TargetCallee = NT.TargetNode->Callees.find_element(
586 NT.TargetNode, NodeIdPairArray(*O.NodeIdPairAllocator), 0u, 0u
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
COFFYAML.cpp 417 MappingNormalization<NType<COFF::RelocationTypeI386>, uint16_t> NT(
419 IO.mapRequired("Type", NT->Type);
421 MappingNormalization<NType<COFF::RelocationTypeAMD64>, uint16_t> NT(
423 IO.mapRequired("Type", NT->Type);
425 MappingNormalization<NType<COFF::RelocationTypesARM>, uint16_t> NT(
427 IO.mapRequired("Type", NT->Type);
429 MappingNormalization<NType<COFF::RelocationTypesARM64>, uint16_t> NT(
431 IO.mapRequired("Type", NT->Type);
  /src/sys/arch/prep/include/
nvram.h 84 NT = 3,
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 282 std::pair<StringRef, StringRef> nestingString(NestingType NT) {
283 switch (NT) {
303 void push(NestingType NT) { NestingStack.push_back(NT); }
  /src/external/gpl2/xcvs/dist/diff/
libdiff.mak 71 CPP_PROJ=/nologo /ML /W3 /GX /O2 /I "..\windows-NT" /I "..\lib" /D "_WINDOWS" /D "HAVE_TIME_H" /D "CLOSEDIR_VOID" /D "NDEBUG" /D "WIN32" /D "WANT_WIN_COMPILER_VERSION" /Fp"$(INTDIR)\libdiff.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
174 CPP_PROJ=/nologo /MLd /W3 /GX /Z7 /Od /I "..\windows-NT" /I "..\lib" /D "_DEBUG" /D "_WINDOWS" /D "WIN32" /D "HAVE_TIME_H" /D "CLOSEDIR_VOID" /Fp"$(INTDIR)\libdiff.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclarationName.h 657 struct NT {
677 struct NT NamedType;
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 878 auto NT = Tokenizer.peekNextToken();
879 if (NT.Kind != TokenInfo::TK_Eof && NT.Kind != TokenInfo::TK_NewLine) {
  /src/external/gpl2/xcvs/dist/lib/
libcvs.mak 108 CPP_PROJ=/nologo /ML /W3 /GX /O2 /I "..\windows-NT" /I "." /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)\libcvs.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c
288 CPP_PROJ=/nologo /MLd /W3 /Gm /GX /ZI /Od /I "..\windows-NT" /I "." /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /D "HAVE_CONFIG_H" /Fp"$(INTDIR)\libcvs.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetLowering.h 1545 bool hasTargetDAGCombine(ISD::NodeType NT) const {
1546 assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
1547 return TargetDAGCombineArray[NT >> 3] & (1 << (NT&7));
2262 void setTargetDAGCombine(ISD::NodeType NT) {
2263 assert(unsigned(NT >> 3) < array_lengthof(TargetDAGCombineArray));
2264 TargetDAGCombineArray[NT >> 3] |= 1 << (NT&7);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 343 auto *NT = cast<PointerType>(V->getType());
344 assert(PT != NT && PT->getElementType() == NT->getElementType() &&
  /src/external/bsd/openldap/dist/servers/slapd/
Makefile.in 389 @if test $(PLAT) = NT; then \
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 1569 Instruction *NT = I1->clone();
1570 BIParent->getInstList().insert(BI->getIterator(), NT);
1571 if (!NT->getType()->isVoidTy()) {
1572 I1->replaceAllUsesWith(NT);
1573 I2->replaceAllUsesWith(NT);
1574 NT->takeName(I1);
1581 NT->applyMergedLocation(I1->getDebugLoc(), I2->getDebugLoc());
1583 // PHIs created below will adopt NT's merged DebugLoc.
1584 IRBuilder<NoFolder> Builder(NT);
1598 // These values do not agree. Insert a select instruction before NT
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 4605 ISD::NodeType NT;
4608 case AtomicRMWInst::Xchg: NT = ISD::ATOMIC_SWAP; break;
4609 case AtomicRMWInst::Add: NT = ISD::ATOMIC_LOAD_ADD; break;
4610 case AtomicRMWInst::Sub: NT = ISD::ATOMIC_LOAD_SUB; break;
4611 case AtomicRMWInst::And: NT = ISD::ATOMIC_LOAD_AND; break;
4612 case AtomicRMWInst::Nand: NT = ISD::ATOMIC_LOAD_NAND; break;
4613 case AtomicRMWInst::Or: NT = ISD::ATOMIC_LOAD_OR; break;
4614 case AtomicRMWInst::Xor: NT = ISD::ATOMIC_LOAD_XOR; break;
4615 case AtomicRMWInst::Max: NT = ISD::ATOMIC_LOAD_MAX; break;
4616 case AtomicRMWInst::Min: NT = ISD::ATOMIC_LOAD_MIN; break
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
regstr.d 715 REGSTR_PATH_AEDEBUG = `Software\Microsoft\Windows NT\CurrentVersion\AeDebug`,
  /src/external/gpl2/gmake/dist/
build_w32.bat 26 echo "Creating GNU Make for Windows 9X/NT/2K/XP"
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 6020 const auto *NT = S.getSingleClause<OMPNumTeamsClause>();
6022 if (NT || TL) {
6023 const Expr *NumTeams = NT ? NT->getNumTeams() : nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 197 for (const auto &NT : NumberedTypes)
198 if (NT.second.second.isValid())
199 return error(NT.second.second,
200 "use of undefined type '%" + Twine(NT.first) + "'");
  /src/external/bsd/openldap/dist/
configure 1666 --with-threads with threads library auto|nt|posix|pth|lwp|manual [auto]
3540 for ol_val in auto nt posix pth lwp yes no manual ; do
7282 # all of the supported platforms: 8192 (on NT/2K/XP).
18365 case $ol_with_threads in auto | yes | nt)
18384 ol_link_threads=nt
18396 if test $ol_with_threads = nt ; then
18397 as_fn_error $? "could not locate NT Threads" "$LINENO" 5
22564 if test $ol_link_threads != no && test $ol_link_threads != nt ; then
26835 PLAT=NT
  /src/share/terminfo/
terminfo 4458 # This entry is for Tera Term Pro version 2.3, for MS-Windows 95/NT written by
8977 kcuu1=\E[A, ll=^U, rc=^\, rev=^Or, ri=^X, rmcup=^Nt, rmir=^Ni,
9549 # This entry fits the Windows NT console when the _POSIX_TERM environment
9550 # variable is set to 'on'. While the Windows NT POSIX console is seldom used,
9552 # stack and the Win32 (i.e., Windows 95 and Windows NT 3.1 or later) operating
9556 # VI POSIX Editor for Windows NT 3.1". True to Microsoft form, not only
9579 ansi-nt|psx_ansi|Microsoft Windows NT console POSIX ANSI mode,
9913 hp2621-nt|HP 2621 w/no tabs,
    [all...]

Completed in 109 milliseconds