Home
last modified time | relevance | path

Searched refs:codeptr (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/sys/arch/hp300/stand/common/
H A Dite_sti.c49 uint32_t codeptr[STI_CODECNT]; member
130 sti.codeptr[i] = in sti_iteinit_common()
133 for (i = STI_END; sti.codeptr[i] == 0; i--) in sti_iteinit_common()
135 codesize = sti.codeptr[i] - sti.codeptr[STI_BEGIN]; in sti_iteinit_common()
140 addr = (u_int)va + sti.codeptr[STI_BEGIN]; in sti_iteinit_common()
146 if (sti.codeptr[i] != 0) { in sti_iteinit_common()
147 sti.codeptr[i] -= sti.codeptr[0]; in sti_iteinit_common()
148 sti.codeptr[i] /= 4; in sti_iteinit_common()
151 sti.codeptr[0] = 0; in sti_iteinit_common()
152 for (i = STI_END; sti.codeptr[i] == 0; i--); in sti_iteinit_common()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DDisasm.cc46 int codeptr[4]; // longest instruction length may not be > 16 member
258 size_t sz = ctx->is_Intel ? sizeof (ctx->codeptr) : 4;
262 sz, ctx->codeptr) == NULL)
365 ctx->codeptr[0] = -1; in get_inst_ptr()
366 return ctx->codeptr; in get_inst_ptr()
368 if (ctx->elf->get_data (ctx->f_offset + (vaddr - ctx->first_pc), sz, ctx->codeptr) == NULL) in get_inst_ptr()
370 ctx->codeptr[0] = -1; in get_inst_ptr()
371 return ctx->codeptr; in get_inst_ptr()
374 ctx->codeptr[0] = ctx->elf->decode (ctx->codeptr[0]); in get_inst_ptr()
375 return ctx->codeptr; in get_inst_ptr()
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DDisasm.cc47 int codeptr[4]; // longest instruction length may not be > 16 member