Home | History | Annotate | Download | only in llvm-c-test

Lines Matching defs:pos

23 static void pprint(int pos, unsigned char *buf, int len, const char *disasm) {
25 printf("%04x: ", pos);
42 int pos;
49 pos = 0;
50 while (pos < siz) {
51 size_t l = LLVMDisasmInstruction(D, buf + pos, siz - pos, 0, outline,
54 pprint(pos, buf + pos, 1, "\t???");
55 pos++;
57 pprint(pos, buf + pos, l, outline);
58 pos += l;