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

Lines Matching refs:Index

132   unsigned index = 0;
135 output[index] = hex_rep[(*i & 0xF0) >> 4];
136 output[index + 1] = hex_rep[*i & 0xF];
137 index += 3;
226 uint64_t Index;
236 for (Index = Start; Index < End; Index += Size) {
245 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index, DebugOut)) {
248 outs() << format("%8x:\t", addr + Index);
249 DumpBytes(StringRef(Bytes.data() + Index, Size));