HomeSort by: relevance | last modified time | path
    Searched defs:instr (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/games/backgammon/backgammon/
text.c 44 const char *const instr[] = { variable in typeref:typename:const char * const[]
text.c 44 const char *const instr[] = { variable in typeref:typename:const char * const[]
  /src/games/warp/
util.c 131 instr(const char *big, const char *little) function in typeref:typename:char *
util.c 131 instr(const char *big, const char *little) function in typeref:typename:char *
  /src/sys/arch/mips/mips/
db_disasm.c 225 uint32_t instr; local in function:db_disasm
238 db_read_bytes(loc, sizeof(instr), (void *)&instr);
240 return (db_disasm_insn(instr, loc, altfmt));
db_disasm.c 225 uint32_t instr; local in function:db_disasm
238 db_read_bytes(loc, sizeof(instr), (void *)&instr);
240 return (db_disasm_insn(instr, loc, altfmt));
mips_stacktrace.c 284 unsigned instr, mask; local in function:stacktrace_subr
334 if (!kdbpeek(pc - 2 * sizeof(unsigned), &instr))
336 i.word = instr;
368 if (!kdbpeek(va, &instr))
370 if (instr == MIPS_ERET)
372 } while (instr != MIPS_JR_RA && instr != MIPS_JR_K0);
378 instr = 0;
379 while (instr == 0) {
380 if (!kdbpeek(va, &instr))
    [all...]
mips_stacktrace.c 284 unsigned instr, mask; local in function:stacktrace_subr
334 if (!kdbpeek(pc - 2 * sizeof(unsigned), &instr))
336 i.word = instr;
368 if (!kdbpeek(va, &instr))
370 if (instr == MIPS_ERET)
372 } while (instr != MIPS_JR_RA && instr != MIPS_JR_K0);
378 instr = 0;
379 while (instr == 0) {
380 if (!kdbpeek(va, &instr))
    [all...]
trap.c 99 "TLB miss (load or instr. fetch)",
182 uint32_t instr; local in function:trap
597 instr = mips_ufetch32((void *)va);
598 insn.word = instr;
600 if (l->l_md.md_ss_addr != va || instr != MIPS_BREAK_SSTEP) {
704 instr = mips_ufetch32((void *)va);
705 insn.word = instr;
trap.c 99 "TLB miss (load or instr. fetch)",
182 uint32_t instr; local in function:trap
597 instr = mips_ufetch32((void *)va);
598 insn.word = instr;
600 if (l->l_md.md_ss_addr != va || instr != MIPS_BREAK_SSTEP) {
704 instr = mips_ufetch32((void *)va);
705 insn.word = instr;
  /src/sys/arch/powerpc/powerpc/
fixup.c 47 #include <powerpc/instr.h>
55 union instr instr = { .i_int = *insnp }; local in function:fixup_jump
57 KASSERT(instr.i_any.i_opcd == OPC_B);
59 instr.i_i.i_li = jfi->jfi_real - fixup_addr2offset(insnp);
61 *insnp = instr.i_int;
98 union instr instr = { .i_int = *insnp }; local in function:powerpc_fixup_stubs
99 uint32_t *stub = insnp + instr.i_i.i_li;
100 u_int opcode = instr.i_any.i_opcd
    [all...]
fixup.c 47 #include <powerpc/instr.h>
55 union instr instr = { .i_int = *insnp }; local in function:fixup_jump
57 KASSERT(instr.i_any.i_opcd == OPC_B);
59 instr.i_i.i_li = jfi->jfi_real - fixup_addr2offset(insnp);
61 *insnp = instr.i_int;
98 union instr instr = { .i_int = *insnp }; local in function:powerpc_fixup_stubs
99 uint32_t *stub = insnp + instr.i_i.i_li;
100 u_int opcode = instr.i_any.i_opcd
    [all...]
db_interface.c 772 int instr = 0; local in function:db_ppc4xx_useracc
790 instr = 1;
799 if (instr) {
  /src/sys/arch/sparc/fpu/
fpu.c 54 #include <machine/instr.h>
140 union instr instr; local in function:fpu_cleanup
205 instr.i_int = fs->fs_queue[i].fq_instr;
206 if (instr.i_any.i_op != IOP_reg ||
207 (instr.i_op3.i_op3 != IOP3_FPop1 &&
208 instr.i_op3.i_op3 != IOP3_FPop2))
210 error = fpu_execute(&fe, instr);
258 fetch instr from pc
260 if (integer instr) { variable in typeref:typename:integer
278 } else if (fpu instr) { variable in typeref:typename:fpu
    [all...]
fpu.c 54 #include <machine/instr.h>
140 union instr instr; local in function:fpu_cleanup
205 instr.i_int = fs->fs_queue[i].fq_instr;
206 if (instr.i_any.i_op != IOP_reg ||
207 (instr.i_op3.i_op3 != IOP3_FPop1 &&
208 instr.i_op3.i_op3 != IOP3_FPop2))
210 error = fpu_execute(&fe, instr);
258 fetch instr from pc
260 if (integer instr) { variable in typeref:typename:integer
278 } else if (fpu instr) { variable in typeref:typename:fpu
    [all...]
  /src/sys/arch/x86/x86/
db_trace.c 210 u_long instr = db_get_value(callpc, 4, false); local in function:db_stack_trace_print
215 (instr == 0xe5894855 ||
217 (instr & 0x00ffffff) == 0x0048e589
220 ((instr & 0x00ffffff) == 0x00e58955 ||
222 (instr & 0x0000ffff) == 0x0000e589
db_trace.c 210 u_long instr = db_get_value(callpc, 4, false); local in function:db_stack_trace_print
215 (instr == 0xe5894855 ||
217 (instr & 0x00ffffff) == 0x0048e589
220 ((instr & 0x00ffffff) == 0x00e58955 ||
222 (instr & 0x0000ffff) == 0x0000e589
  /src/sys/arch/arc/arc/
minidebug.c 637 u_int instr; local in function:mdbclrsstep
650 instr = mdbpeek(va);
651 if (instr != MIPS_BREAK_SSTEP)
minidebug.c 637 u_int instr; local in function:mdbclrsstep
650 instr = mdbpeek(va);
651 if (instr != MIPS_BREAK_SSTEP)
  /src/sys/arch/sgimips/sgimips/
arcemu.c 233 uint16_t instr = 0xc000 | (i << ((is_cs56) ? 5 : 7)); local in function:eeprom_read
244 set_di(instr & 0x8000);
247 instr <<= 1;
arcemu.c 233 uint16_t instr = 0xc000 | (i << ((is_cs56) ? 5 : 7)); local in function:eeprom_read
244 set_di(instr & 0x8000);
247 instr <<= 1;
  /src/sys/arch/powerpc/fpu/
fpu_emu.c 94 #include <powerpc/instr.h>
170 static int fpu_execute(struct trapframe *, struct fpemu *, union instr *);
210 union instr insn;
344 fpu_execute(struct trapframe *tf, struct fpemu *fe, union instr *insn)
347 union instr instr = *insn; local in function:fpu_execute
364 cond = instr.i_any.i_rc;
373 opc_disasm(loc, instr.i_int);
381 if ((instr.i_any.i_opcd >= OPC_LFS && instr.i_any.i_opcd <= OPC_STFDU) |
    [all...]
fpu_emu.c 94 #include <powerpc/instr.h>
170 static int fpu_execute(struct trapframe *, struct fpemu *, union instr *);
210 union instr insn;
344 fpu_execute(struct trapframe *tf, struct fpemu *fe, union instr *insn)
347 union instr instr = *insn; local in function:fpu_execute
364 cond = instr.i_any.i_rc;
373 opc_disasm(loc, instr.i_int);
381 if ((instr.i_any.i_opcd >= OPC_LFS && instr.i_any.i_opcd <= OPC_STFDU) |
    [all...]
  /src/lib/libc/gen/
fts.c 337 int instr; local in function:fts_read
351 instr = p->fts_instr;
355 if (instr == FTS_AGAIN) {
366 if (instr == FTS_FOLLOW &&
383 if (instr == FTS_SKIP ||
540 fts_set(FTS *sp, FTSENT *p, int instr)
546 if (instr && instr != FTS_AGAIN && instr != FTS_FOLLOW &&
547 instr != FTS_NOINSTR && instr != FTS_SKIP)
    [all...]
  /src/usr.bin/vgrind/
vfontedpr.c 90 static bool instr; /* in a string constant */ variable in typeref:typename:bool
287 instr = false;
341 printf ("com %o str %o chr %o ptr %d\n", incomm, instr, inchr, psptr);
366 if (nokeyw || incomm || instr)
381 if (!incomm && !instr && !inchr) {
430 instr = true;
499 } else if (instr) {
503 instr = false;

Completed in 31 milliseconds

1 2