Home
last modified time | relevance | path

Searched refs:SRE (Results 1 – 25 of 33) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/MCTargetDesc/
DXCoreInstPrinter.cpp53 const MCSymbolRefExpr *SRE; in printExpr() local
56 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); in printExpr()
58 assert(SRE && CE && "Binary expression must be sym+const."); in printExpr()
61 SRE = dyn_cast<MCSymbolRefExpr>(Expr); in printExpr()
62 assert(SRE && "Unexpected MCExpr type."); in printExpr()
64 assert(SRE->getKind() == MCSymbolRefExpr::VK_None); in printExpr()
66 SRE->getSymbol().print(OS, MAI); in printExpr()
/third_party/python/Modules/
Dsre_lib.h16 SRE(at)(SRE_STATE* state, const SRE_CHAR* ptr, SRE_CODE at) in SRE() function
104 SRE(charset)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch) in SRE() function
191 SRE(charset_loc_ignore)(SRE_STATE* state, const SRE_CODE* set, SRE_CODE ch) in SRE() function
195 if (SRE(charset)(state, set, lo)) in SRE()
199 return up != lo && SRE(charset)(state, set, up); in SRE()
202 LOCAL(Py_ssize_t) SRE(match)(SRE_STATE* state, const SRE_CODE* pattern, int toplevel);
205 SRE(count)(SRE_STATE* state, const SRE_CODE* pattern, Py_ssize_t maxcount) in SRE() function
222 while (ptr < end && SRE(charset)(state, pattern + 2, *ptr)) in SRE()
320 i = SRE(match)(state, pattern, 0); in SRE()
338 SRE(info)(SRE_STATE* state, const SRE_CODE* pattern)
[all …]
D_sre.c232 #define SRE(F) sre_ucs1_##F macro
239 #define SRE(F) sre_ucs2_##F macro
246 #define SRE(F) sre_ucs4_##F macro
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARC/MCTargetDesc/
DARCInstPrinter.cpp110 const MCSymbolRefExpr *SRE; in printExpr() local
119 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); in printExpr()
121 assert(SRE && CE && "Binary expression must be sym+const."); in printExpr()
124 SRE = dyn_cast<MCSymbolRefExpr>(Expr); in printExpr()
125 assert(SRE && "Unexpected MCExpr type."); in printExpr()
127 assert(SRE->getKind() == MCSymbolRefExpr::VK_None); in printExpr()
131 SRE->getSymbol().print(OS, MAI); in printExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/MCTargetDesc/
DBPFInstPrinter.cpp36 const MCSymbolRefExpr *SRE; in printExpr() local
39 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); in printExpr()
41 SRE = dyn_cast<MCSymbolRefExpr>(Expr); in printExpr()
42 assert(SRE && "Unexpected MCExpr type."); in printExpr()
44 MCSymbolRefExpr::VariantKind Kind = SRE->getKind(); in printExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCExpr.cpp56 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(*this); in print() local
57 const MCSymbol &Sym = SRE.getSymbol(); in print()
69 if (SRE.getKind() != MCSymbolRefExpr::VK_None) in print()
70 SRE.printVariantKind(OS); in print()
713 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(this); in evaluateAsRelocatableImpl() local
714 const MCSymbol &Sym = SRE->getSymbol(); in evaluateAsRelocatableImpl()
717 if (Sym.isVariable() && SRE->getKind() == MCSymbolRefExpr::VK_None && in evaluateAsRelocatableImpl()
719 bool IsMachO = SRE->hasSubsectionsViaSymbols(); in evaluateAsRelocatableImpl()
742 Res = MCValue::get(SRE, nullptr, 0); in evaluateAsRelocatableImpl()
899 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(this); in findAssociatedFragment() local
[all …]
DMCELFStreamer.cpp463 void MCELFStreamer::finalizeCGProfileEntry(const MCSymbolRefExpr *&SRE) { in finalizeCGProfileEntry() argument
464 const MCSymbol *S = &SRE->getSymbol(); in finalizeCGProfileEntry()
468 SRE->getLoc(), Twine("Reference to undefined temporary symbol ") + in finalizeCGProfileEntry()
474 SRE = in finalizeCGProfileEntry()
475 MCSymbolRefExpr::create(S, SRE->getKind(), getContext(), SRE->getLoc()); in finalizeCGProfileEntry()
DMCCodeView.cpp259 const MCSymbolRefExpr *SRE = in emitFileChecksumOffset() local
262 OS.EmitValueImpl(SRE, 4); in emitFileChecksumOffset()
651 const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(RangeBegin, Ctx); in encodeDefRange() local
653 MCBinaryExpr::createAdd(SRE, MCConstantExpr::create(Bias, Ctx), Ctx); in encodeDefRange()
DMCWinCOFFStreamer.cpp222 const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(Symbol, getContext()); in EmitCOFFSectionIndex() local
223 MCFixup Fixup = MCFixup::create(DF->getContents().size(), SRE, FK_SecRel_2); in EmitCOFFSectionIndex()
DMCObjectStreamer.cpp690 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(Offset); in EmitRelocDirective() local
691 if (SRE.getSymbol().isDefined()) { in EmitRelocDirective()
692 DF->getFixups().push_back(MCFixup::create(SRE.getSymbol().getOffset(), in EmitRelocDirective()
697 PendingFixups.emplace_back(&SRE.getSymbol(), DF, in EmitRelocDirective()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyInstPrinter.cpp243 auto SRE = static_cast<const MCSymbolRefExpr *>(Op.getExpr()); in printOperand() local
244 if (SRE->getKind() == MCSymbolRefExpr::VK_WASM_TYPEINDEX) { in printOperand()
245 auto &Sym = static_cast<const MCSymbolWasm &>(SRE->getSymbol()); in printOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/AsmParser/
DPPCAsmParser.cpp50 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in EvaluateCRExpr() local
51 StringRef Name = SRE->getSymbol().getName(); in EvaluateCRExpr()
655 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Val)) in CreateFromMCExpr() local
656 if (SRE->getKind() == MCSymbolRefExpr::VK_PPC_TLS) in CreateFromMCExpr()
657 return CreateTLSReg(SRE, S, E, IsPPC64); in CreateFromMCExpr()
1241 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in ExtractModifierFromExpr() local
1243 switch (SRE->getKind()) { in ExtractModifierFromExpr()
1275 return MCSymbolRefExpr::create(&SRE->getSymbol(), Context); in ExtractModifierFromExpr()
1328 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in FixupVariantKind() local
1331 switch (SRE->getKind()) { in FixupVariantKind()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMELFStreamer.cpp102 void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) override;
414 void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) override;
559 if (const MCSymbolRefExpr *SRE = dyn_cast_or_null<MCSymbolRefExpr>(Value)) { in EmitValueImpl() local
560 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_SBREL && !(Size == 4)) { in EmitValueImpl()
1155 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Value)) { in emitThumbSet() local
1156 const MCSymbol &Sym = SRE->getSymbol(); in emitThumbSet()
DARMAsmBackend.cpp542 if (const MCSymbolRefExpr *SRE = in adjustFixupValue() local
544 if (SRE->getKind() == MCSymbolRefExpr::VK_TLSCALL) in adjustFixupValue()
644 if (const MCSymbolRefExpr *SRE = in adjustFixupValue() local
646 if (SRE->getKind() == MCSymbolRefExpr::VK_TLSCALL) in adjustFixupValue()
DARMTargetStreamer.cpp116 ARMTargetStreamer::AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) {} in AnnotateTLSDescriptorSequence() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/AsmParser/
DX86Operand.h107 if (auto *SRE = dyn_cast<MCSymbolRefExpr>(Val)) { in print() local
108 const MCSymbol &Sym = SRE->getSymbol(); in print()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/AsmParser/
DSystemZAsmParser.cpp646 else if (auto *SRE = dyn_cast<MCSymbolRefExpr>(E)) in printMCExpr() local
647 OS << *SRE; in printMCExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCStreamer.h164 virtual void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp2111 const MCSymbolRefExpr &SRE = cast<MCSymbolRefExpr>(Expr); in printMCExpr() local
2112 const MCSymbol &Sym = SRE.getSymbol(); in printMCExpr()
/third_party/icu/icu4j/perf-tests/data/collation/
DTestNames_SerbianSH.txt2083 ŠKORIĆ SREĆKO
6284 ANGELOV SREĆKO
8258 BASIOLI SREĆKO
8409 BEŠKER SREĆKA
10164 BOGIĆ SREĆKO
11269 BUŠIĆ SREĆKO
16082 FILIPOVIĆ SREĆKO
16603 GAJIĆ SREĆKO
31097 MAKSIMOVIĆ SREĆKO
37102 MOMIROVIĆ SREĆKO
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86MCInstLower.cpp373 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(MCE)) in SimplifyShortMoveForm() local
374 if (SRE->getKind() == MCSymbolRefExpr::VK_TLVP) in SimplifyShortMoveForm()
/third_party/python/Doc/whatsnew/
D2.0.rst250 which has a new underlying implementation called SRE written by Fredrik Lundh of
731 The pattern and match objects provided by SRE are C types, not Python
1066 been changed. SRE, a new regular expression engine written by Fredrik Lundh and
D2.2.rst998 * Various bugfixes and performance improvements have been made to the SRE engine
1003 matches in a given string. (SRE is maintained by Fredrik Lundh. The
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp1318 const MCSymbolRefExpr *SRE = cast<MCSymbolRefExpr>(E); in applyModifierToExpr() local
1320 if (SRE->getKind() != MCSymbolRefExpr::VK_None) { in applyModifierToExpr()
1326 return MCSymbolRefExpr::create(&SRE->getSymbol(), Variant, getContext()); in applyModifierToExpr()
/third_party/libffi/m4/
Dlibtool.m45349 …soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib …
5481 shared_flag='$wl-bM:SRE'
5483 shared_flag_aix='$wl-bM:SRE'
6551 shared_flag='$wl-bM:SRE'
6553 shared_flag_aix='$wl-bM:SRE'

12