| /freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| D | PDBFileBuilder.cpp | 135 Expected<uint32_t> SN = allocateNamedStream("/LinkInfo", 0); in finalizeMsfLayout() local 136 if (!SN) in finalizeMsfLayout() 137 return SN.takeError(); in finalizeMsfLayout() 156 SN = allocateNamedStream("/names", StringsLen); in finalizeMsfLayout() 157 if (!SN) in finalizeMsfLayout() 158 return SN.takeError(); in finalizeMsfLayout() 196 SN = allocateNamedStream("/src/headerblock", SrcHeaderBlockSize); in finalizeMsfLayout() 197 if (!SN) in finalizeMsfLayout() 198 return SN.takeError(); in finalizeMsfLayout() 200 SN = allocateNamedStream(IS.StreamName, IS.Content->getBufferSize()); in finalizeMsfLayout() [all …]
|
| D | PDBFile.cpp | 239 PDBFile::createIndexedStream(uint16_t SN) const { in createIndexedStream() 240 if (SN == kInvalidStreamIndex) in createIndexedStream() 242 return MappedBlockStream::createIndexedStream(ContainerLayout, *Buffer, SN, in createIndexedStream()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | YAMLTraits.cpp | 224 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { in beginSequence() local 225 if (isNull(SN->value())) in beginSequence() 278 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { in matchEnumScalar() local 279 if (SN->value().equals(Str)) { in matchEnumScalar() 317 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(N.get())) { in bitSetMatch() local 318 if (SN->value().equals(Str)) { in bitSetMatch() 348 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { in scalarString() local 349 S = SN->value(); in scalarString() 401 if (ScalarNode *SN = dyn_cast<ScalarNode>(N)) { in createHNodes() local 402 StringRef KeyStr = SN->getValue(StringStorage); in createHNodes() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonOptAddrMode.cpp | 102 bool isSafeToExtLR(NodeAddr<StmtNode *> SN, MachineInstr *MI, 104 void getAllRealUses(NodeAddr<StmtNode *> SN, NodeList &UNodeList); 284 bool HexagonOptAddrMode::isSafeToExtLR(NodeAddr<StmtNode *> SN, in isSafeToExtLR() argument 291 for (NodeAddr<UseNode *> UA : SN.Addr->members_if(DFG->IsUse, *DFG)) { in isSafeToExtLR() 355 NodeAddr<StmtNode *> SN = UN.Addr->getOwner(*DFG); in processAddUses() local 356 MachineInstr *MI = SN.Addr->getCode(); in processAddUses() 442 NodeAddr<StmtNode *> SN = UN.Addr->getOwner(*DFG); in analyzeUses() local 443 MachineInstr &MI = *SN.Addr->getCode(); in analyzeUses() 456 getAllRealUses(SN, AddaslUseList); in analyzeUses() 458 if (allValidCandidates(SN, AddaslUseList) && in analyzeUses() [all …]
|
| D | HexagonISelLowering.cpp | 2956 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); in LowerStore() local 2957 SDValue Val = SN->getValue(); in LowerStore() 2963 SDValue NS = DAG.getStore(SN->getChain(), dl, TC, SN->getBasePtr(), in LowerStore() 2964 SN->getMemOperand()); in LowerStore() 2965 if (SN->isIndexed()) { in LowerStore() 2966 NS = DAG.getIndexedStore(NS, dl, SN->getBasePtr(), SN->getOffset(), in LowerStore() 2967 SN->getAddressingMode()); in LowerStore() 2969 SN = cast<StoreSDNode>(NS.getNode()); in LowerStore() 2972 Align ClaimAlign = SN->getAlign(); in LowerStore() 2973 if (!validateConstPtrAlignment(SN->getBasePtr(), ClaimAlign, dl, DAG)) in LowerStore() [all …]
|
| D | HexagonISelDAGToDAGHVX.cpp | 2280 auto *SN = cast<ShuffleVectorSDNode>(N); in selectShuffle() local 2281 std::vector<int> Mask(SN->getMask().begin(), SN->getMask().end()); in selectShuffle() 2313 ISel.ReplaceNode(N, ISel.selectUndef(SDLoc(SN), ResTy).getNode()); in selectShuffle() 2319 ResultStack Results(SN); in selectShuffle() 2340 SN->dumpr(&DAG); in selectShuffle()
|
| D | HexagonISelDAGToDAG.cpp | 1118 ConstantSDNode *SN = dyn_cast<ConstantSDNode>(S.getOperand(1).getNode()); in ppAddrRewriteAndSrl() local 1119 if (SN == nullptr) in ppAddrRewriteAndSrl() 1121 if (SN->getAPIntValue().getBitWidth() != 32) in ppAddrRewriteAndSrl() 1123 uint32_t CV = SN->getZExtValue(); in ppAddrRewriteAndSrl()
|
| D | HexagonConstPropagation.cpp | 955 unsigned SN = SB->getNumber(); in propagate() 956 if (!EdgeExec.count(CFGEdge(BN, SN))) in propagate()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| D | StreamUtil.cpp | 85 uint16_t SN = IMD.Descriptor.getModuleStreamIndex(); in discoverStreamPurposes() local 86 if (SN != kInvalidStreamIndex) in discoverStreamPurposes() 87 ModStreams[SN] = IMD; in discoverStreamPurposes()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| D | DDG.h | 368 auto *SN = new SimpleDDGNode(I); in createFineGrainedNode() local 369 assert(SN && "Failed to allocate memory for simple DDG node."); in createFineGrainedNode() 370 Graph.addNode(*SN); in createFineGrainedNode() 371 return *SN; in createFineGrainedNode()
|
| /freebsd-12-stable/tools/kerneldoc/subsys/ |
| D | Doxyfile-dev_sn | 8 PROJECT_NAME = "FreeBSD kernel SN device code"
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/ |
| D | GraphWriter.h | 110 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { in GraphWriter() argument 111 DTraits = DOTTraits(SN); in GraphWriter()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| D | PDBFile.h | 88 createIndexedStream(uint16_t SN) const;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Demangle/ |
| D | ItaniumDemangle.h | 537 const Node *SN = SoFar.second->getSyntaxNode(S); in collapse() local 538 if (SN->getKind() != KReferenceType) in collapse() 540 auto *RT = static_cast<const ReferenceType *>(SN); in collapse() 2938 Node *SN = getDerived().parseSourceName(State); in parseOperatorName() local 2939 if (SN == nullptr) in parseOperatorName() 2941 return make<LiteralOperator>(SN); in parseOperatorName() 3059 Node *SN = getDerived().parseSourceName(State); in parseOperatorName() local 3060 if (SN == nullptr) in parseOperatorName() 3062 return make<ConversionOperatorType>(SN); in parseOperatorName() 3251 Node *SN = getDerived().parseSourceName(/*NameState=*/nullptr); in parseSimpleId() local [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| D | BuildTree.cpp | 1701 auto *SN = Mapping.find(N); in markChild() local 1702 assert(SN != nullptr); in markChild() 1703 setRole(SN, R); in markChild() 1706 auto *SN = Mapping.find(NNSLoc); in markChild() local 1707 assert(SN != nullptr); in markChild() 1708 setRole(SN, R); in markChild()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyISelLowering.cpp | 1360 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); in LowerStore() local 1361 const SDValue &Value = SN->getValue(); in LowerStore() 1362 const SDValue &Base = SN->getBasePtr(); in LowerStore() 1363 const SDValue &Offset = SN->getOffset(); in LowerStore() 1371 SDValue Ops[] = {SN->getChain(), Value, Base}; in LowerStore() 1373 SN->getMemoryVT(), SN->getMemOperand()); in LowerStore() 1383 SDValue Ops[] = {SN->getChain(), Idx, Value}; in LowerStore()
|
| /freebsd-12-stable/share/syscons/fonts/ |
| D | iso04-vga9-wide-8x16.fnt | 48 M````````````````````````````````?!`X?.[&QO[&QL;&Q@``#!@@.'SN
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUISelLowering.cpp | 3024 StoreSDNode *SN = cast<StoreSDNode>(N); in performStoreCombine() local 3025 if (!SN->isSimple() || !ISD::isNormalStore(SN)) in performStoreCombine() 3028 EVT VT = SN->getMemoryVT(); in performStoreCombine() 3033 Align Alignment = SN->getAlign(); in performStoreCombine() 3036 unsigned AS = SN->getAddressSpace(); in performStoreCombine() 3043 VT, AS, Alignment, SN->getMemOperand()->getFlags(), &IsFast)) { in performStoreCombine() 3045 return scalarizeVectorStore(SN, DAG); in performStoreCombine() 3047 return expandUnalignedStore(SN, DAG); in performStoreCombine() 3058 SDValue Val = SN->getValue(); in performStoreCombine() 3069 return DAG.getStore(SN->getChain(), SL, CastVal, in performStoreCombine() [all …]
|
| /freebsd-12-stable/contrib/ntp/ntpq/ |
| D | ntpq.c | 133 #define SN 10 /* signed number: must display +/- sign */ macro 158 { "offset", SN }, 159 { "frequency", SN } 3787 case SN: in cookedprint()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| D | SystemZISelLowering.cpp | 6072 auto *SN = cast<StoreSDNode>(N); in combineSTORE() local 6074 EVT MemVT = SN->getMemoryVT(); in combineSTORE() 6079 if (MemVT.isInteger() && SN->isTruncatingStore()) { in combineSTORE() 6081 combineTruncateExtract(SDLoc(N), MemVT, SN->getValue(), DCI)) { in combineSTORE() 6085 return DAG.getTruncStore(SN->getChain(), SDLoc(SN), Value, in combineSTORE() 6086 SN->getBasePtr(), SN->getMemoryVT(), in combineSTORE() 6087 SN->getMemOperand()); in combineSTORE() 6091 if (!SN->isTruncatingStore() && in combineSTORE() 6107 Ops, MemVT, SN->getMemOperand()); in combineSTORE() 6110 if (!SN->isTruncatingStore() && in combineSTORE() [all …]
|
| /freebsd-12-stable/share/misc/ |
| D | iso3166 | 217 SN SEN 686 Senegal
|
| /freebsd-12-stable/contrib/tzdata/ |
| D | zone1970.tab | 125 CI,BF,GH,GM,GN,IS,ML,MR,SH,SL,SN,TG +0519-00402 Africa/Abidjan
|
| D | zone.tab | 374 SN +1440-01726 Africa/Dakar
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| D | PPCISelDAGToDAG.cpp | 205 void selectFrameIndex(SDNode *SN, SDNode *N, unsigned Offset = 0); 629 void PPCDAGToDAGISel::selectFrameIndex(SDNode *SN, SDNode *N, unsigned Offset) { in selectFrameIndex() argument 630 SDLoc dl(SN); in selectFrameIndex() 634 if (SN->hasOneUse()) in selectFrameIndex() 635 CurDAG->SelectNodeTo(SN, Opc, N->getValueType(0), TFI, in selectFrameIndex() 638 ReplaceNode(SN, CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI, in selectFrameIndex()
|
| /freebsd-12-stable/sys/contrib/ngatm/netnatm/saal/ |
| D | saal_sscop.c | 262 #define AAL_UU_SIGNAL(S, SIG, M, PL, SN) \ argument 266 AAL_DATA((S), (SIG), (M)->m, (SN)); \ 269 AAL_DATA((S), (SIG), NULL, (SN)); \
|