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

Lines Matching defs:Bytes

102 static void DumpDataInCode(const char *bytes, uint64_t Size,
110 Value = bytes[3] << 24 |
111 bytes[2] << 16 |
112 bytes[1] << 8 |
113 bytes[0];
117 Value = bytes[1] << 8 |
118 bytes[0];
122 Value = bytes[0];
129 Value = bytes[0];
133 Value = bytes[1] << 8 |
134 bytes[0];
138 Value = bytes[3] << 24 |
139 bytes[2] << 16 |
140 bytes[1] << 8 |
141 bytes[0];
327 StringRef Bytes;
328 Sections[SectIdx].getContents(Bytes);
329 StringRefMemoryObject memoryObject(Bytes);
415 DumpBytes(StringRef(Bytes.data() + Index, Length));
418 DumpDataInCode(Bytes.data() + Index, Length, Kind);
424 DumpBytes(StringRef(Bytes.data() + Index, Size));
441 Size = 1; // skip illegible bytes
458 DumpBytes(StringRef(Bytes.data() + Index, InstSize));
464 InstSize = 1; // skip illegible bytes