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

Lines Matching refs:Index

148   unsigned index = 0;
151 output[index] = hex_rep[(*i & 0xF0) >> 4];
152 output[index + 1] = hex_rep[*i & 0xF];
153 index += 3;
277 uint64_t Index;
306 for (Index = Start; Index < End; Index += Size) {
309 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
311 outs() << format("%8" PRIx64 ":\t", SectionAddr + Index);
312 DumpBytes(StringRef(Bytes.data() + Index, Size));
334 if (addr >= Index + Size) break;