OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:out_attr
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/mclinker/lib/Target/ARM/
ARMELFAttributeData.cpp
151
// 1. The
out_attr
must be initailized and has value of the same type as
153
// 2. The value helf by
out_attr
and pInAttr must be different.
154
ELFAttributeValue &
out_attr
= m_Attrs[pTag];
local
157
assert(
out_attr
.isInitialized() && "No output attribute to be merged!");
201
// value held by pInAttr and
out_attr
goes into output.
213
assert((
out_attr
.type() == ELFAttributeValue::Int) &&
216
if (pInAttr.getIntValue() >
out_attr
.getIntValue())
217
out_attr
.setIntValue(pInAttr.getIntValue());
221
// value held by pInAttr and
out_attr
goes into output.
224
assert((
out_attr
.type() == ELFAttributeValue::Int) &
790
ELFAttributeValue &
out_attr
= m_Attrs[Tag_ABI_VFP_args];
local
[
all
...]
/frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp
241
ELFAttributeValue *
out_attr
;
local
244
std::tie(
out_attr
, is_newly_created) =
247
assert(
out_attr
!= NULL);
250
// Directly read the attribute value to the
out_attr
.
251
if (!ELFAttributeData::ReadValue(*
out_attr
, attr_buf, attr_size))
257
in_attr.setType(
out_attr
->type());
265
if ((in_attr != *
out_attr
) &&
Completed in 665 milliseconds