| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | PDBFileBuilder.cpp | 147 if (!SN) in finalizeMsfLayout() 148 return SN.takeError(); in finalizeMsfLayout() 168 if (!SN) in finalizeMsfLayout() 169 return SN.takeError(); in finalizeMsfLayout() 208 if (!SN) in finalizeMsfLayout() 209 return SN.takeError(); in finalizeMsfLayout() 212 if (!SN) in finalizeMsfLayout() 213 return SN.takeError(); in finalizeMsfLayout() 228 uint32_t SN = 0; in getNamedStreamIndex() local 229 if (!NamedStreams.get(Name, SN)) in getNamedStreamIndex() [all …]
|
| H A D | PDBFile.cpp | 238 PDBFile::createIndexedStream(uint16_t SN) const { in createIndexedStream() 239 if (SN == kInvalidStreamIndex) in createIndexedStream() 241 return MappedBlockStream::createIndexedStream(ContainerLayout, *Buffer, SN, in createIndexedStream()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | YAMLTraits.cpp | 219 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { in beginSequence() local 220 if (isNull(SN->value())) in beginSequence() 273 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(CurrentNode)) { in matchEnumScalar() local 274 if (SN->value().equals(Str)) { in matchEnumScalar() 312 if (ScalarHNode *SN = dyn_cast<ScalarHNode>(N)) { in bitSetMatch() local 313 if (SN->value().equals(Str)) { in bitSetMatch() 344 S = SN->value(); in scalarString() 405 ScalarNode *SN = dyn_cast<ScalarNode>(N); in createHNodes() local 406 StringRef KeyStr = SN->getValue(StringStorage); in createHNodes() 421 for (Node &SN : *SQ) { in createHNodes() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonOptAddrMode.cpp | 102 bool isSafeToExtLR(NodeAddr<StmtNode *> SN, MachineInstr *MI, 104 void getAllRealUses(NodeAddr<StmtNode *> SN, NodeList &UNodeList); 286 bool HexagonOptAddrMode::isSafeToExtLR(NodeAddr<StmtNode *> SN, in isSafeToExtLR() argument 293 for (NodeAddr<UseNode *> UA : SN.Addr->members_if(DFG->IsUse, *DFG)) { in isSafeToExtLR() 423 NodeAddr<StmtNode *> SN = UN.Addr->getOwner(*DFG); in processAddUses() local 424 MachineInstr *MI = SN.Addr->getCode(); in processAddUses() 518 NodeAddr<StmtNode *> SN = UN.Addr->getOwner(*DFG); in analyzeUses() local 519 MachineInstr &MI = *SN.Addr->getCode(); in analyzeUses() 532 getAllRealUses(SN, AddaslUseList); in analyzeUses() 534 if (allValidCandidates(SN, AddaslUseList) && in analyzeUses() [all …]
|
| H A D | HexagonISelLowering.cpp | 3125 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); in LowerStore() local 3126 SDValue Val = SN->getValue(); in LowerStore() 3132 SDValue NS = DAG.getTruncStore(SN->getChain(), dl, TR, SN->getBasePtr(), in LowerStore() 3134 if (SN->isIndexed()) { in LowerStore() 3135 NS = DAG.getIndexedStore(NS, dl, SN->getBasePtr(), SN->getOffset(), in LowerStore() 3136 SN->getAddressingMode()); in LowerStore() 3138 SN = cast<StoreSDNode>(NS.getNode()); in LowerStore() 3141 Align ClaimAlign = SN->getAlign(); in LowerStore() 3145 MVT StoreTy = SN->getMemoryVT().getSimpleVT(); in LowerStore() 3148 return expandUnalignedStore(SN, DAG); in LowerStore() [all …]
|
| H A D | HexagonISelDAGToDAGHVX.cpp | 2599 auto *SN = cast<ShuffleVectorSDNode>(N); in selectShuffle() local 2600 std::vector<int> Mask(SN->getMask().begin(), SN->getMask().end()); in selectShuffle() 2632 ISel.ReplaceNode(N, ISel.selectUndef(SDLoc(SN), ResTy).getNode()); in selectShuffle() 2640 ResultStack Results(SN); in selectShuffle() 2668 SN->dumpr(&DAG); in selectShuffle()
|
| H A D | HexagonISelDAGToDAG.cpp | 1152 ConstantSDNode *SN = dyn_cast<ConstantSDNode>(S.getOperand(1).getNode()); in ppAddrRewriteAndSrl() local 1153 if (SN == nullptr) in ppAddrRewriteAndSrl() 1155 if (SN->getAPIntValue().getBitWidth() != 32) in ppAddrRewriteAndSrl() 1157 uint32_t CV = SN->getZExtValue(); in ppAddrRewriteAndSrl()
|
| H A D | HexagonConstPropagation.cpp | 953 unsigned SN = SB->getNumber(); in propagate() 954 if (!EdgeExec.count(CFGEdge(BN, SN))) in propagate()
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | StreamUtil.cpp | 84 uint16_t SN = IMD.Descriptor.getModuleStreamIndex(); in discoverStreamPurposes() local 85 if (SN != kInvalidStreamIndex) in discoverStreamPurposes() 86 ModStreams[SN] = IMD; in discoverStreamPurposes()
|
| /freebsd-14.2/crypto/openssl/test/certs/ |
| H A D | badalt5-key.pem | 25 +SN+cG5tLH7HjbI9C4XBYVbxXHIvg/nSzFRxBbC2ZFetJ27xvweM1J/Clk7d1Lvq
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | DDG.h | 358 auto *SN = new SimpleDDGNode(I); in createFineGrainedNode() local 359 assert(SN && "Failed to allocate memory for simple DDG node."); in createFineGrainedNode() 360 Graph.addNode(*SN); in createFineGrainedNode() 361 return *SN; in createFineGrainedNode()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | GraphWriter.h | 120 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { in GraphWriter() argument 121 DTraits = DOTTraits(SN); in GraphWriter()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | PDBFile.h | 86 createIndexedStream(uint16_t SN) const;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | BuildTree.cpp | 1706 auto *SN = Mapping.find(N); in markChild() local 1707 assert(SN != nullptr); in markChild() 1708 setRole(SN, R); in markChild() 1711 auto *SN = Mapping.find(NNSLoc); in markChild() local 1712 assert(SN != nullptr); in markChild() 1713 setRole(SN, R); in markChild()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 6913 EVT MemVT = SN->getMemoryVT(); in combineSTORE() 6924 return DAG.getTruncStore(SN->getChain(), SDLoc(SN), Value, in combineSTORE() 6925 SN->getBasePtr(), SN->getMemoryVT(), in combineSTORE() 6967 if (MemVT == MVT::i128 && SN->isSimple() && ISD::isNormalStore(SN)) { in combineSTORE() 6970 SDLoc DL(SN); in combineSTORE() 6972 DAG.getStore(SN->getChain(), DL, HiPart, SN->getBasePtr(), in combineSTORE() 6973 SN->getPointerInfo(), SN->getOriginalAlign(), in combineSTORE() 6974 SN->getMemOperand()->getFlags(), SN->getAAInfo()); in combineSTORE() 6981 SN->getMemOperand()->getFlags(), SN->getAAInfo()); in combineSTORE() 7058 return DAG.getStore(SN->getChain(), SDLoc(SN), SplatVal, in combineSTORE() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Demangle/ |
| H A D | ItaniumDemangle.h | 683 if (SN->getKind() != KReferenceType) in collapse() 3374 if (SN == nullptr) in parseOperatorName() 3376 return make<LiteralOperator>(SN); in parseOperatorName() 3384 if (SN == nullptr) in parseOperatorName() 3386 return make<ConversionOperatorType>(SN); in parseOperatorName() 3567 if (SN == nullptr) in parseSimpleId() 3573 return make<NameWithTemplateArgs>(SN, TA); in parseSimpleId() 3575 return SN; in parseSimpleId() 3746 std::string_view SN = parseBareSourceName(); in parseAbiTags() local 3747 if (SN.empty()) in parseAbiTags() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyISelLowering.cpp | 1516 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); in LowerStore() local 1517 const SDValue &Value = SN->getValue(); in LowerStore() 1518 const SDValue &Base = SN->getBasePtr(); in LowerStore() 1519 const SDValue &Offset = SN->getOffset(); in LowerStore() 1527 SDValue Ops[] = {SN->getChain(), Value, Base}; in LowerStore() 1529 SN->getMemoryVT(), SN->getMemOperand()); in LowerStore() 1539 SDValue Ops[] = {SN->getChain(), Idx, Value}; in LowerStore() 1543 if (WebAssembly::isWasmVarAddressSpace(SN->getAddressSpace())) in LowerStore()
|
| /freebsd-14.2/contrib/ntp/ntpq/ |
| H A D | ntpq.c | 129 #define SN 10 /* signed number: must display +/- sign */ macro 154 { "offset", SN }, 155 { "frequency", SN } 3783 case SN: in cookedprint()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelLowering.cpp | 3804 StoreSDNode *SN = cast<StoreSDNode>(N); in performStoreCombine() local 3805 if (!SN->isSimple() || !ISD::isNormalStore(SN)) in performStoreCombine() 3808 EVT VT = SN->getMemoryVT(); in performStoreCombine() 3813 Align Alignment = SN->getAlign(); in performStoreCombine() 3816 unsigned AS = SN->getAddressSpace(); in performStoreCombine() 3823 VT, AS, Alignment, SN->getMemOperand()->getFlags(), &IsFast)) { in performStoreCombine() 3825 return SplitVectorStore(SDValue(SN, 0), DAG); in performStoreCombine() 3827 return expandUnalignedStore(SN, DAG); in performStoreCombine() 3838 SDValue Val = SN->getValue(); in performStoreCombine() 3849 return DAG.getStore(SN->getChain(), SL, CastVal, in performStoreCombine() [all …]
|
| /freebsd-14.2/share/misc/ |
| H A D | iso3166 | 216 SN SEN 686 Senegal
|
| /freebsd-14.2/usr.sbin/tzsetup/ |
| H A D | baseline | 529 SN:Senegal
|
| /freebsd-14.2/contrib/tzdata/ |
| H A D | zone.tab | 374 SN +1440-01726 Africa/Dakar
|
| H A D | zone1970.tab | 125 CI,BF,GH,GM,GN,IS,ML,MR,SH,SL,SN,TG +0519-00402 Africa/Abidjan
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelDAGToDAG.cpp | 212 void selectFrameIndex(SDNode *SN, SDNode *N, uint64_t Offset = 0); 655 void PPCDAGToDAGISel::selectFrameIndex(SDNode *SN, SDNode *N, uint64_t Offset) { in selectFrameIndex() argument 656 SDLoc dl(SN); in selectFrameIndex() 660 if (SN->hasOneUse()) in selectFrameIndex() 661 CurDAG->SelectNodeTo(SN, Opc, N->getValueType(0), TFI, in selectFrameIndex() 664 ReplaceNode(SN, CurDAG->getMachineNode(Opc, dl, N->getValueType(0), TFI, in selectFrameIndex()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | MemProfContextDisambiguation.cpp | 1639 for (auto &SN : FS->mutableCallsites()) in IndexCallsiteContextGraph() local 1640 CallsWithMetadata.push_back({&SN}); in IndexCallsiteContextGraph()
|