Home | History | Annotate | Download | only in llvm-objdump

Lines Matching defs:l1

666 static void DumpLiteral8(MachOObjectFile *O, uint32_t l0, uint32_t l1,
668 outs() << format("0x%08" PRIx32, l0) << " " << format("0x%08" PRIx32, l1);
670 Hi = (O->isLittleEndian()) ? l1 : l0;
671 Lo = (O->isLittleEndian()) ? l0 : l1;
702 uint32_t l0, l1;
704 memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
707 sys::swapByteOrder(l1);
709 DumpLiteral8(O, l0, l1, d);
713 static void DumpLiteral16(uint32_t l0, uint32_t l1, uint32_t l2, uint32_t l3) {
715 outs() << format("0x%08" PRIx32, l1) << " ";
730 uint32_t l0, l1, l2, l3;
732 memcpy(&l1, sect + i + sizeof(uint32_t), sizeof(uint32_t));
737 sys::swapByteOrder(l1);
741 DumpLiteral16(l0, l1, l2, l3);
878 uint32_t l0, l1;
880 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
885 sys::swapByteOrder(l1);
887 DumpLiteral8(O, l0, l1, d);
891 uint32_t l0, l1, l2, l3;
893 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t),
901 sys::swapByteOrder(l1);
905 DumpLiteral16(l0, l1, l2, l3);