Home
last modified time | relevance | path

Searched refs:SN (Results 1 – 25 of 69) sorted by relevance

123

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp135 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 …]
H A DPDBFile.cpp239 PDBFile::createIndexedStream(uint16_t SN) const { in createIndexedStream()
240 if (SN == kInvalidStreamIndex) in createIndexedStream()
242 return MappedBlockStream::createIndexedStream(ContainerLayout, *Buffer, SN, in createIndexedStream()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DYAMLTraits.cpp224 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 …]
/netbsd-src/external/bsd/openldap/dist/tests/data/
H A Dtest-lang.ldif11 SN;lang-en-US;lang-en-GB: Billy Ray
12 SN: Ray
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp102 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 …]
H A DHexagonISelLowering.cpp2918 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); in LowerStore() local
2919 SDValue Val = SN->getValue(); in LowerStore()
2925 SDValue NS = DAG.getStore(SN->getChain(), dl, TC, SN->getBasePtr(), in LowerStore()
2926 SN->getMemOperand()); in LowerStore()
2927 if (SN->isIndexed()) { in LowerStore()
2928 NS = DAG.getIndexedStore(NS, dl, SN->getBasePtr(), SN->getOffset(), in LowerStore()
2929 SN->getAddressingMode()); in LowerStore()
2931 SN = cast<StoreSDNode>(NS.getNode()); in LowerStore()
2934 unsigned ClaimAlign = SN->getAlignment(); in LowerStore()
2935 SDValue Ptr = SN->getBasePtr(); in LowerStore()
[all …]
H A DHexagonISelDAGToDAGHVX.cpp2050 auto *SN = cast<ShuffleVectorSDNode>(N); in selectShuffle() local
2051 std::vector<int> Mask(SN->getMask().begin(), SN->getMask().end()); in selectShuffle()
2083 ISel.ReplaceNode(N, ISel.selectUndef(SDLoc(SN), ResTy).getNode()); in selectShuffle()
2089 ResultStack Results(SN); in selectShuffle()
2110 SN->dumpr(&DAG); in selectShuffle()
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3866.txt197 SN;lang-de;lang-gem-PFL
217 dn: SN=Ray,DC=example,DC=com
235 SN;lang-en-GB;lang-en-US: Billy Ray MATCHES
236 SN: Ray DOES NOT MATCH (no lang-,
239 Note that "CN" and "SN" are subtypes of "name".
259 dn: SN=Ray,DC=example,DC=com
268 SN;lang-en-GB;lang-en-US: Billy Ray MATCHES
269 SN: Ray DOES NOT MATCH (wrong value)
290 "CN;lang-en;lang-ja" but not "SN" nor "name;lang-fr".
350 SN: Sibelius
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DStreamUtil.cpp85 uint16_t SN = IMD.Descriptor.getModuleStreamIndex(); in discoverStreamPurposes() local
86 if (SN != kInvalidStreamIndex) in discoverStreamPurposes()
87 ModStreams[SN] = IMD; in discoverStreamPurposes()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDDG.h368 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()
/netbsd-src/crypto/external/bsd/openssl/dist/test/certs/
H A Dbadalt5-key.pem25 +SN+cG5tLH7HjbI9C4XBYVbxXHIvg/nSzFRxBbC2ZFetJ27xvweM1J/Clk7d1Lvq
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/certs/
H A Dbadalt5-key.pem25 +SN+cG5tLH7HjbI9C4XBYVbxXHIvg/nSzFRxBbC2ZFetJ27xvweM1J/Clk7d1Lvq
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DGraphWriter.h110 GraphWriter(raw_ostream &o, const GraphType &g, bool SN) : O(o), G(g) { in GraphWriter() argument
111 DTraits = DOTTraits(SN); in GraphWriter()
/netbsd-src/sys/dev/acpi/
H A Dapei_cper.h225 #define CPER_MEMORY_ERROR_TYPE_DEF(LN, SN, V) LN = V,
307 #define CPER_PCIE_ERROR_PORT_TYPE_DEF(LN, SN, V) LN = V,
223 CPER_MEMORY_ERROR_TYPE_DEF(LN,SN,V) global() argument
H A Dapei.c331 #define F(LN, SN, V) [LN] = #SN,
502 #define F(LN, SN, V) [LN] = #SN,
329 F(LN,SN,V) global() argument
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h88 createIndexedStream(uint16_t SN) const;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h537 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 …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp1701 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()
/netbsd-src/external/gpl3/binutils/dist/include/opcode/
H A Dh8300.h1185 SN = 3 enumerator
1406 {O (O_JMP, SN), AV_H8, 4, "jmp", {{RSIND, E}}, {{0x5, 0x9, B30 | RSIND, 0x0, E}}},
1407 …{O (O_JMP, SN), AV_H8, 6, "jmp", {{ABSJMP | L_24, E}}, {{0x5, 0xA, SRC | ABSJMP | L_24, DATA5, E…
1409 …{O (O_JMP, SN), AV_H8SX, 0, "jmp", {{ABSJMP | L_32, E}}, {{0x5, 0x9, 0x0, 0x8, ABSJMP | L_32, DATA…
1411 {O (O_JMP, SN), AV_H8, 8, "jmp", {{MEMIND, E}}, {{0x5, 0xB, SRC | MEMIND, DATA, E}}},
1412 {O (O_JMP, SN), AV_H8SX, 0, "jmp", {{VECIND, E}}, {{0x5, 0x9, B31 | SRC | VECIND, DATA, E}}},
1414 {O (O_JSR, SN), AV_H8, 6, "jsr", {{RSIND, E}}, {{0x5, 0xD, B30 | RSIND, 0x0, E}}},
1415 …{O (O_JSR, SN), AV_H8, 8, "jsr", {{ABSJMP | L_24, E}}, {{0x5, 0xE, SRC | ABSJMP | L_24, DATA5, E…
1417 …{O (O_JSR, SN), AV_H8SX, 0, "jsr", {{ABSJMP | L_32, E}}, {{0x5, 0xD, 0x0, 0x8, ABSJMP | L_32, DATA…
1419 {O (O_JSR, SN), AV_H8, 8, "jsr", {{MEMIND, E}}, {{0x5, 0xF, SRC | MEMIND, DATA, E}}},
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/include/opcode/
H A Dh8300.h1185 SN = 3 enumerator
1406 {O (O_JMP, SN), AV_H8, 4, "jmp", {{RSIND, E}}, {{0x5, 0x9, B30 | RSIND, 0x0, E}}},
1407 …{O (O_JMP, SN), AV_H8, 6, "jmp", {{ABSJMP | L_24, E}}, {{0x5, 0xA, SRC | ABSJMP | L_24, DATA5, E…
1409 …{O (O_JMP, SN), AV_H8SX, 0, "jmp", {{ABSJMP | L_32, E}}, {{0x5, 0x9, 0x0, 0x8, ABSJMP | L_32, DATA…
1411 {O (O_JMP, SN), AV_H8, 8, "jmp", {{MEMIND, E}}, {{0x5, 0xB, SRC | MEMIND, DATA, E}}},
1412 {O (O_JMP, SN), AV_H8SX, 0, "jmp", {{VECIND, E}}, {{0x5, 0x9, B31 | SRC | VECIND, DATA, E}}},
1414 {O (O_JSR, SN), AV_H8, 6, "jsr", {{RSIND, E}}, {{0x5, 0xD, B30 | RSIND, 0x0, E}}},
1415 …{O (O_JSR, SN), AV_H8, 8, "jsr", {{ABSJMP | L_24, E}}, {{0x5, 0xE, SRC | ABSJMP | L_24, DATA5, E…
1417 …{O (O_JSR, SN), AV_H8SX, 0, "jsr", {{ABSJMP | L_32, E}}, {{0x5, 0xD, 0x0, 0x8, ABSJMP | L_32, DATA…
1419 {O (O_JSR, SN), AV_H8, 8, "jsr", {{MEMIND, E}}, {{0x5, 0xF, SRC | MEMIND, DATA, E}}},
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Dtc-h8300.c1085 this_size = this_try->opcode->how & SN; in get_specific()
1254 else if (this_size != size && (this_size != SN && size != SN)) in get_specific()
1988 size = SN; in md_assemble()
2029 case SN: in md_assemble()
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-h8300.c1088 this_size = this_try->opcode->how & SN; in get_specific()
1257 else if (this_size != size && (this_size != SN && size != SN)) in get_specific()
1991 size = SN; in md_assemble()
2032 case SN: in md_assemble()
/netbsd-src/share/misc/
H A Dcountry214 Senegal SN SEN 686 SG
218 Singapore SG SGP 702 SN
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp1282 StoreSDNode *SN = cast<StoreSDNode>(Op.getNode()); in LowerStore() local
1283 const SDValue &Value = SN->getValue(); in LowerStore()
1284 const SDValue &Base = SN->getBasePtr(); in LowerStore()
1285 const SDValue &Offset = SN->getOffset(); in LowerStore()
1293 SDValue Ops[] = {SN->getChain(), Value, Base}; in LowerStore()
1295 SN->getMemoryVT(), SN->getMemOperand()); in LowerStore()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/
H A DISO_3166224 SN Senegal

123