Searched refs:m_Size (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/compile/mclinker/lib/Fragment/
H A DFillFragment.cpp25 m_Size(pSize) {
26 assert((!m_ValueSize || (m_Size % m_ValueSize) == 0) &&
/frameworks/compile/mclinker/include/mcld/Script/
H A DTernaryOp.h42 m_pOperand[m_Size++] = pOperand;
43 if (m_Size == 3)
44 m_Size = 0;
48 size_t m_Size; member in class:mcld::TernaryOp
H A DBinaryOp.h32 BinaryOp() : Operator(Operator::BINARY, TYPE), m_Size(0) {
42 m_pOperand[m_Size++] = pOperand;
43 if (m_Size == 2)
44 m_Size = 0;
48 size_t m_Size; member in class:mcld::BinaryOp
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMToARMStub.cpp36 : m_pData(NULL), m_Name("A2A_prototype"), m_Size(0x0) {
39 m_Size = sizeof(PIC_TEMPLATE);
43 m_Size = sizeof(TEMPLATE);
53 : m_pData(pData), m_Name("A2A_veneer"), m_Size(pSize) {
97 return m_Size;
105 return new ARMToARMStub(m_pData, m_Size, fixup_begin(), fixup_end());
H A DARMToTHMStub.cpp38 : m_pData(NULL), m_Name("A2T_prototype"), m_Size(0x0) {
41 m_Size = sizeof(PIC_TEMPLATE);
45 m_Size = sizeof(TEMPLATE);
55 : m_pData(pData), m_Name("A2T_veneer"), m_Size(pSize) {
105 return m_Size;
113 return new ARMToTHMStub(m_pData, m_Size, fixup_begin(), fixup_end());
H A DTHMToARMStub.cpp40 m_Size(0x0),
44 m_Size = sizeof(PIC_TEMPLATE);
48 m_Size = sizeof(TEMPLATE);
61 m_Size(pSize),
118 return m_Size;
132 m_pData, m_Size, fixup_begin(), fixup_end(), m_bUsingThumb2);
H A DTHMToTHMStub.cpp42 m_Size(0x0),
46 m_Size = sizeof(PIC_TEMPLATE);
50 m_Size = sizeof(TEMPLATE);
63 m_Size(pSize),
115 return m_Size;
128 m_pData, m_Size, fixup_begin(), fixup_end(), m_bUsingThumb2);
H A DARMToARMStub.h65 size_t m_Size; member in class:mcld::ARMToARMStub
H A DARMToTHMStub.h65 size_t m_Size; member in class:mcld::ARMToTHMStub
H A DTHMToARMStub.h68 size_t m_Size; member in class:mcld::THMToARMStub
H A DTHMToTHMStub.h68 size_t m_Size; member in class:mcld::THMToTHMStub
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFillFragment.h37 size_t size() const { return m_Size; }
47 /// m_Size - The number of bytes to insert.
48 uint64_t m_Size; member in class:mcld::FillFragment
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLA25Stub.cpp34 m_Size(sizeof(STUB)) {
45 : m_Target(pTarget), m_Name("pic"), m_pData(pData), m_Size(pSize) {
79 return m_Size;
88 m_Target, m_pData, m_Size, fixup_begin(), fixup_end());
H A DMipsLA25Stub.h54 const size_t m_Size; member in class:mcld::MipsLA25Stub
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LongBranchStub.cpp53 m_Size(0x0) {
56 m_Size = sizeof(PIC_TEMPLATE);
60 m_Size = sizeof(TEMPLATE);
72 m_Size(pSize) {
115 m_Size = sizeof(ADRP_TEMPLATE);
134 return m_Size;
142 return new AArch64LongBranchStub(m_pData, m_Size, fixup_begin(), fixup_end());
H A DAArch64CA53ErratumStub.cpp41 m_Size(0x0) {
43 m_Size = sizeof(TEMPLATE);
56 m_Size(pSize) {
142 return m_Size;
H A DAArch64CA53ErratumStub.h63 size_t m_Size; member in class:mcld::AArch64CA53ErratumStub
H A DAArch64LongBranchStub.h62 size_t m_Size; member in class:mcld::AArch64LongBranchStub
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonAbsoluteStub.cpp40 : Stub(), m_Name("HexagonTrampoline"), m_pData(NULL), m_Size(0x0) {
42 m_Size = sizeof(TEMPLATE);
52 : Stub(), m_Name("AbsVeneer"), m_pData(pData), m_Size(pSize) {
101 return m_Size;
109 return new HexagonAbsoluteStub(m_pData, m_Size, fixup_begin(), fixup_end());
H A DHexagonAbsoluteStub.h64 size_t m_Size; member in class:mcld::HexagonAbsoluteStub
/frameworks/compile/mclinker/lib/Support/
H A DFileHandle.cpp32 m_Size(0),
98 if (!get_size(m_Handler, m_Size)) {
116 if (!get_size(m_Handler, m_Size)) {
138 m_Size = 0;
155 m_Size = pSize;
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileHandle.h96 size_t size() const { return m_Size; }
123 unsigned int m_Size; member in class:mcld::FileHandle
H A DAllocators.h55 if (m_Size != 0)
56 data = reinterpret_cast<DataType*>(malloc(sizeof(DataType) * m_Size));
66 static size_t size() { return m_Size; }
68 static void setSize(size_t pSize) { m_Size = pSize; }
82 static size_t m_Size; member in class:mcld::Chunk
86 size_t Chunk<DataType, 0>::m_Size = 0; member in class:mcld::Chunk
/frameworks/compile/mclinker/lib/LD/
H A DLDSection.cpp29 m_Size(0),
49 m_Size(pSize),
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSection.h83 uint64_t size() const { return m_Size; }
120 void setSize(uint64_t size) { m_Size = size; }
188 uint64_t m_Size; member in class:mcld::LDSection

Completed in 161 milliseconds

12