OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Rels
(Results
1 - 3
of
3
) sorted by null
/external/llvm/tools/llvm-objdump/
COFFDump.cpp
173
static error_code resolveSymbol(const std::vector<RelocationRef> &
Rels
,
175
for (std::vector<RelocationRef>::const_iterator I =
Rels
.begin(),
176
E =
Rels
.end();
193
const std::vector<RelocationRef> &
Rels
,
198
if (error_code ec = resolveSymbol(
Rels
, Offset, Sym)) return ec;
209
static error_code resolveSymbolName(const std::vector<RelocationRef> &
Rels
,
212
if (error_code ec = resolveSymbol(
Rels
, Offset, Sym)) return ec;
218
const std::vector<RelocationRef> &
Rels
,
221
if (error_code ec = resolveSymbolName(
Rels
, Offset, Sym)) {
254
std::vector<RelocationRef>
Rels
;
[
all
...]
llvm-objdump.cpp
399
std::vector<RelocationRef>
Rels
;
405
Rels
.push_back(*ri);
410
std::sort(
Rels
.begin(),
Rels
.end(), RelocAddressLess);
442
std::vector<RelocationRef>::const_iterator rel_cur =
Rels
.begin();
443
std::vector<RelocationRef>::const_iterator rel_end =
Rels
.end();
/external/llvm/tools/llvm-readobj/
COFFDumper.cpp
70
const std::vector<RelocationRef> &
Rels
);
75
const std::vector<RelocationRef> &
Rels
);
82
const std::vector<RelocationRef> &
Rels
,
88
const std::vector<RelocationRef> &
Rels
,
196
static error_code resolveSymbol(const std::vector<RelocationRef> &
Rels
,
198
for (std::vector<RelocationRef>::const_iterator RelI =
Rels
.begin(),
199
RelE =
Rels
.end();
217
static error_code resolveSymbolName(const std::vector<RelocationRef> &
Rels
,
220
if (error_code EC = resolveSymbol(
Rels
, Offset, Sym)) return EC;
477
static std::string formatSymbol(const std::vector<RelocationRef> &
Rels
,
[
all
...]
Completed in 2780 milliseconds