Searched refs:RE (Results 1 - 25 of 175) sorted by relevance

1234567

/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFThumb.h86 RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
87 addRelocationForSymbol(RE, TargetName);
102 RelocationEntry RE = variable
105 addRelocationForSection(RE, TargetSectionID);
109 RelocationEntry RE = variable
111 addRelocationForSection(RE, TargetSectionID);
115 RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType, variable
117 addRelocationForSection(RE, TargetSectionID);
121 RelocationEntry RE = variable
124 addRelocationForSection(RE, TargetSectionI
130 RelocationEntry RE = variable
[all...]
H A DRuntimeDyldCOFFI386.h89 RelocationEntry RE(SectionID, Offset, RelType, 0, -1, 0, 0, 0, false, 0);
90 addRelocationForSymbol(RE, TargetName);
105 RelocationEntry RE = variable
108 addRelocationForSection(RE, TargetSectionID);
112 RelocationEntry RE = variable
114 addRelocationForSection(RE, TargetSectionID);
118 RelocationEntry RE = RelocationEntry(SectionID, Offset, RelType, variable
120 addRelocationForSection(RE, TargetSectionID);
132 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
133 const auto Section = Sections[RE
[all...]
H A DRuntimeDyldMachOX86_64.h51 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
52 RE.Addend = memcpyAddend(RE);
54 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID))
60 if (!IsExtern && RE.IsPCRel)
61 makeValueAddendPCRel(Value, RelI, 1 << RE.Size);
73 if (RE.RelType == MachO::X86_64_RELOC_GOT ||
74 RE.RelType == MachO::X86_64_RELOC_GOT_LOAD)
75 processGOTRelocation(RE, Value, Stubs);
77 RE
130 processGOTRelocation(const RelocationEntry &RE, RelocationValueRef &Value, StubMap &Stubs) argument
164 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldMachOARM.h37 int64_t decodeAddend(const RelocationEntry &RE) const {
38 const SectionEntry &Section = Sections[RE.SectionID];
39 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
41 switch (RE.RelType) {
43 return memcpyAddend(RE);
91 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
92 RE.Addend = decodeAddend(RE);
94 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID))
99 if (RE
187 processBranchRelocation(const RelocationEntry &RE, const RelocationValueRef &Value, StubMap &Stubs) argument
223 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldMachOAArch64.h35 int64_t decodeAddend(const RelocationEntry &RE) const {
36 const SectionEntry &Section = Sections[RE.SectionID];
37 uint8_t *LocalAddress = Section.getAddressWithOffset(RE.Offset);
38 unsigned NumBytes = 1 << RE.Size;
41 switch (RE.RelType) {
58 switch (RE.RelType) {
278 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
279 RE.Addend = decodeAddend(RE);
281 assert((ExplicitAddend == 0 || RE
385 processGOTRelocation(const RelocationEntry &RE, RelocationValueRef &Value, StubMap &Stubs) argument
426 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldMachOI386.h68 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI));
69 RE.Addend = memcpyAddend(RE);
71 if (auto ValueOrErr = getRelocationValueRef(Obj, RelI, RE, ObjSectionToID))
81 // if (IsExtern && RE.IsPCRel) {
86 if (RE.IsPCRel)
87 makeValueAddendPCRel(Value, RelI, 1 << RE.Size);
89 RE.Addend = Value.Offset;
92 addRelocationForSymbol(RE, Value.SymbolName);
94 addRelocationForSection(RE, Valu
149 MachO::any_relocation_info RE = local
[all...]
H A DRuntimeDyldCOFFX86_64.h43 // The target location for the relocation is described by RE.SectionID and
44 // RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
60 // the symbol resides (RE.Addend provides additional information about the
63 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override {
64 const SectionEntry &Section = Sections[RE.SectionID];
65 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
67 switch (RE.RelType) {
75 uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.Offset);
78 uint64_t Delta = 4 + (RE
[all...]
/external/pcre/pcrecpp/
H A Dpcrecpp_unittest.cc47 using pcrecpp::RE;
71 RE pattern("ruby:\\d+");
80 RE pattern("ruby:(\\d+)");
94 RE line_matcher(".*\n");
116 RE newre(buf);
133 CHECK(RE("([0-9a-fA-F]+)[uUlL]*").FullMatch(#value, Hex(&v))); \
135 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0x" #value, CRadix(&v))); \
159 CHECK(RE("([0-7]+)[uUlL]*").FullMatch(#value, Octal(&v))); \
161 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0" #value, CRadix(&v))); \
185 CHECK(RE("(
[all...]
H A Dpcre_scanner.cc72 skip_ = new RE(re);
86 skip_ = new RE(re);
123 bool Scanner::LookingAt(const RE& re) const {
125 return re.DoMatch(input_, RE::ANCHOR_START, &consumed, 0, 0);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp216 InMemoryStruct<macho::RelocationEntry> RE; local
217 Obj->ReadRelocationEntry(Sect->RelocationTableOffset, j, RE);
218 if (RE->Word0 & macho::RF_Scattered)
223 uint32_t Offset = RE->Word0;
240 bool isExtern = (RE->Word1 >> 27) & 1;
253 uint32_t SourceNum = RE->Word1 & 0xffffff; // 24-bit value
262 RE->Word1,
266 << format("0x%x", RE->Word1) << ")\n");
353 InMemoryStruct<macho::RelocationEntry> RE; local
354 Obj->ReadRelocationEntry(Sect->RelocationTableOffset, j, RE);
498 RelocationEntry &RE = Relocs[i]; local
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp46 int64_t RuntimeDyldMachO::memcpyAddend(const RelocationEntry &RE) const {
47 unsigned NumBytes = 1 << RE.Size;
48 uint8_t *Src = Sections[RE.SectionID].getAddress() + RE.Offset;
60 MachO::any_relocation_info RE = local
64 uint32_t RelocType = Obj.getAnyRelocationType(RE);
65 bool IsPCRel = Obj.getAnyRelocationPCRel(RE);
66 unsigned Size = Obj.getAnyRelocationLength(RE);
72 unsigned SymbolBaseAddr = Obj.getScatteredRelocationValue(RE);
97 const RelocationEntry &RE, ObjSectionToIDMa
95 getRelocationValueRef( const ObjectFile &BaseTObj, const relocation_iterator &RI, const RelocationEntry &RE, ObjSectionToIDMap &ObjSectionToID) argument
146 dumpRelocationToResolve(const RelocationEntry &RE, uint64_t Value) const argument
[all...]
/external/clang/test/Sema/
H A Dgnu-flags.c131 // expected-warning@+8 {{redeclaration of already-defined enum 'RE' is a GNU extension}}
134 enum RE { enum
139 enum RE;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DPHIEliminationUtils.cpp38 RE = MRI.reg_end(); RI != RE; ++RI) {
/external/pcre/pcrecpp/include/
H A Dpcre_scanner.h74 bool LookingAt(const RE& re) const;
83 bool Consume(const RE& re, ARGS && ... args) {
91 // a prefix of the input matches this RE, it is automatically
93 // a skip RE that matches white space and comments.
110 // but avoids creating/deleting new RE objects.
120 // The overall RE is a disjunction of the following REs:
153 RE* skip_; // If non-NULL, RE for skipping input
H A Dpcrecpp.h36 // C++ interface to the pcre regular-expression library. RE supports
64 // pcrecpp::RE re("h.*o");
68 // pcrecpp::RE re("e");
71 // Example: creating a temporary RE object:
72 // pcrecpp::RE("h.*o").FullMatch("hello");
77 // You can, as in the different examples above, store the RE object
78 // explicitly in a variable or use a temporary RE object. The
90 // pcrecpp::RE re("(\\w+):(\\d+)");
103 // !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
106 // !pcrecpp::RE("(
508 class RE { class in namespace:pcrecpp
512 RE(const string& pat) { Init(pat, NULL); } function in class:pcrecpp::RE
513 RE(const string& pat, const RE_Options& option) { Init(pat, &option); } function in class:pcrecpp::RE
514 RE(const char* pat) { Init(pat, NULL); } function in class:pcrecpp::RE
515 RE(const char* pat, const RE_Options& option) { Init(pat, &option); } function in class:pcrecpp::RE
516 RE(const unsigned char* pat) { function in class:pcrecpp::RE
519 RE(const unsigned char* pat, const RE_Options& option) { function in class:pcrecpp::RE
525 RE(const RE& re) { Init(re.pattern_, &re.options_); } function in class:pcrecpp::RE
[all...]
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-port_test.cc373 // Defines StringTypes as the list of all string types that class RE
384 // Tests RE's implicit constructors.
386 const RE empty(TypeParam(""));
389 const RE simple(TypeParam("hello"));
392 const RE normal(TypeParam(".*(\\w+)"));
396 // Tests that RE's constructors reject invalid regular expressions.
399 const RE invalid(TypeParam("?"));
403 // Tests RE::FullMatch().
405 const RE empty(TypeParam(""));
406 EXPECT_TRUE(RE
[all...]
/external/googletest/googletest/test/
H A Dgtest-port_test.cc405 // Defines StringTypes as the list of all string types that class RE
416 // Tests RE's implicit constructors.
418 const RE empty(TypeParam(""));
421 const RE simple(TypeParam("hello"));
424 const RE normal(TypeParam(".*(\\w+)"));
428 // Tests that RE's constructors reject invalid regular expressions.
431 const RE invalid(TypeParam("?"));
435 // Tests RE::FullMatch().
437 const RE empty(TypeParam(""));
438 EXPECT_TRUE(RE
[all...]
/external/protobuf/gtest/test/
H A Dgtest-port_test.cc180 // Defines StringTypes as the list of all string types that class RE
191 // Tests RE's implicit constructors.
193 const RE empty(TypeParam(""));
196 const RE simple(TypeParam("hello"));
199 const RE normal(TypeParam(".*(\\w+)"));
203 // Tests that RE's constructors reject invalid regular expressions.
206 const RE invalid(TypeParam("?"));
210 // Tests RE::FullMatch().
212 const RE empty(TypeParam(""));
213 EXPECT_TRUE(RE
[all...]
/external/v8/testing/gtest/test/
H A Dgtest-port_test.cc405 // Defines StringTypes as the list of all string types that class RE
416 // Tests RE's implicit constructors.
418 const RE empty(TypeParam(""));
421 const RE simple(TypeParam("hello"));
424 const RE normal(TypeParam(".*(\\w+)"));
428 // Tests that RE's constructors reject invalid regular expressions.
431 const RE invalid(TypeParam("?"));
435 // Tests RE::FullMatch().
437 const RE empty(TypeParam(""));
438 EXPECT_TRUE(RE
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-port_test.cc410 // Defines StringTypes as the list of all string types that class RE
421 // Tests RE's implicit constructors.
423 const RE empty(TypeParam(""));
426 const RE simple(TypeParam("hello"));
429 const RE normal(TypeParam(".*(\\w+)"));
433 // Tests that RE's constructors reject invalid regular expressions.
436 const RE invalid(TypeParam("?"));
440 // Tests RE::FullMatch().
442 const RE empty(TypeParam(""));
443 EXPECT_TRUE(RE
[all...]
/external/markdown/markdown/
H A Dblockprocessors.py219 RE = re.compile(r'(^|\n)[ ]{0,3}>[ ]?(.*)') variable in class:BlockQuoteProcessor
222 return bool(self.RE.search(block))
226 m = self.RE.search(block)
246 m = self.RE.match(line)
259 RE = re.compile(r'^[ ]{0,3}\d+\.[ ]+(.*)') variable in class:OListProcessor
266 return bool(self.RE.match(block))
327 RE = re.compile(r'^[ ]{0,3}[*+-][ ]+(.*)') variable in class:UListProcessor
334 RE = re.compile(r'(^|\n)(?P<level>#{1,6})(?P<header>.*?)#*(\n|$)') variable in class:HashHeaderProcessor
337 return bool(self.RE.search(block))
341 m = self.RE
365 RE = re.compile(r'^.*?\\n[=-]{3,}', re.MULTILINE) variable in class:SetextHeaderProcessor
387 RE = r'[ ]{0,3}(?P<ch>[*_-])[ ]?((?P=ch)[ ]?){2,}[ ]*' variable in class:HRProcessor
423 RE = re.compile(r'^\\s*\\n') variable in class:EmptyBlockProcessor
[all...]
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
128 bool RE::FullMatch(const char* str, const RE& re) {
137 bool RE::PartialMatch(const char* str, const RE& re) {
144 // Initializes an RE from its string representation.
145 void RE::Init(const char* regex) {
373 // Implements the RE clas
[all...]
/external/protobuf/gtest/src/
H A Dgtest-port.cc111 // Implements RE. Currently only needed for death tests.
113 RE::~RE() {
126 bool RE::FullMatch(const char* str, const RE& re) {
135 bool RE::PartialMatch(const char* str, const RE& re) {
142 // Initializes an RE from its string representation.
143 void RE::Init(const char* regex) {
371 // Implements the RE clas
[all...]
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/
H A Dgtest-port.cc113 // Implements RE. Currently only needed for death tests.
115 RE::~RE() {
128 bool RE::FullMatch(const char* str, const RE& re) {
137 bool RE::PartialMatch(const char* str, const RE& re) {
144 // Initializes an RE from its string representation.
145 void RE::Init(const char* regex) {
373 // Implements the RE clas
[all...]
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-death-test-internal.h79 static bool Create(const char* statement, const RE* regex,
143 virtual bool Create(const char* statement, const RE* regex,
150 virtual bool Create(const char* statement, const RE* regex,
188 const ::testing::internal::RE& gtest_regex = (regex); \
308 ::testing::internal::RE::PartialMatch(".*", (regex)); \

Completed in 422 milliseconds

1234567