Home | History | Annotate | Download | only in ARM

Lines Matching defs:Offset

47   uint32_t offset = 0;
50 frag->setOffset(offset);
51 offset += frag->size();
69 uint32_t offset = 0;
72 offset = got_base - (plt_base + 16);
74 offset = (plt_base + 16) - got_base;
90 data[4] = offset;
109 uint64_t PLTEntryAddress = plt_base + ARMPLT0::EntrySize; // Offset of PLT0
123 // Offset is the distance between the last PLT entry and the associated
125 int32_t Offset = (GOTEntryAddress - (PLTEntryAddress + 8));
127 Out[0] = arm_plt1[0] | ((Offset >> 20) & 0xFF);
128 Out[1] = arm_plt1[1] | ((Offset >> 12) & 0xFF);
129 Out[2] = arm_plt1[2] | (Offset & 0xFFF);