Lines Matching defs:l0
1567 static void DumpLiteral8(MachOObjectFile *O, uint32_t l0, uint32_t l1,
1569 outs() << format("0x%08" PRIx32, l0) << " " << format("0x%08" PRIx32, l1);
1571 Hi = (O->isLittleEndian()) ? l1 : l0;
1572 Lo = (O->isLittleEndian()) ? l0 : l1;
1603 uint32_t l0, l1;
1604 memcpy(&l0, sect + i, sizeof(uint32_t));
1607 sys::swapByteOrder(l0);
1610 DumpLiteral8(O, l0, l1, d);
1614 static void DumpLiteral16(uint32_t l0, uint32_t l1, uint32_t l2, uint32_t l3) {
1615 outs() << format("0x%08" PRIx32, l0) << " ";
1631 uint32_t l0, l1, l2, l3;
1632 memcpy(&l0, sect + i, sizeof(uint32_t));
1637 sys::swapByteOrder(l0);
1642 DumpLiteral16(l0, l1, l2, l3);
1780 uint32_t l0, l1;
1781 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
1786 sys::swapByteOrder(l0);
1789 DumpLiteral8(O, l0, l1, d);
1793 uint32_t l0, l1, l2, l3;
1794 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t));
1802 sys::swapByteOrder(l0);
1807 DumpLiteral16(l0, l1, l2, l3);