OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fill_frag
(Results
1 - 4
of
4
) sorted by null
/frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp
680
const FillFragment&
fill_frag
= llvm::cast<FillFragment>(*fragIter);
local
681
if (0 == size || 0 ==
fill_frag
.getValueSize() ||
682
0 ==
fill_frag
.size()) {
687
uint64_t num_tiles =
fill_frag
.size() /
fill_frag
.getValueSize();
690
fill_frag
.getValue(),
691
fill_frag
.getValueSize());
/frameworks/compile/mclinker/lib/Target/ARM/
ARMLDBackend.cpp
418
const FillFragment&
fill_frag
= llvm::cast<FillFragment>(*frag_iter);
local
419
if (
fill_frag
.getValueSize() == 0) {
424
memset(out_offset,
fill_frag
.getValue(),
fill_frag
.size());
[
all
...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp
186
const FillFragment&
fill_frag
= llvm::cast<FillFragment>(*frag_iter);
local
187
if (
fill_frag
.getValueSize() == 0) {
191
memset(out_offset,
fill_frag
.getValue(),
fill_frag
.size());
[
all
...]
/frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp
289
const FillFragment&
fill_frag
= llvm::cast<FillFragment>(*frag_iter);
local
290
if (
fill_frag
.getValueSize() == 0) {
294
memset(out_offset,
fill_frag
.getValue(),
fill_frag
.size());
[
all
...]
Completed in 55 milliseconds