HomeSort by: relevance | last modified time | path
    Searched defs:jmp (Results 1 - 21 of 21) sorted by relevancy

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
stale-infcall.c 24 static jmp_buf jmp; variable
29 longjmp (jmp, 1); /* test-next */
57 if (setjmp (jmp) == 0) /* test-pass */
60 if (setjmp (jmp) == 0) /* test-fail */
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
stale-infcall.c 24 static jmp_buf jmp; variable
29 longjmp (jmp, 1); /* test-next */
57 if (setjmp (jmp) == 0) /* test-pass */
60 if (setjmp (jmp) == 0) /* test-fail */
  /src/tests/lib/libc/setjmp/
t_sigstack.c 42 jmp_buf jmp; variable
225 longjmp(jmp, 1);
245 * signal handler does longjmp(jmp, 1), it comes flying out of
248 if (setjmp(jmp) == 1)
261 (*compat13_longjmp)(jmp, 1);
288 * signal handler does (*compat13_longjmp)(jmp, 1), it comes
291 if ((*compat13_setjmp)(jmp) == 1)
  /src/sys/dev/isa/
esp_isa.c 173 u_int jmp; local
210 jmp = bus_space_read_1(iot, ioh, NCR_JMP);
212 epd->sc_msize = (jmp & NCRJMP_ROMSZ) ? 0x4000 : 0x8000;
213 epd->sc_parity = jmp & NCRJMP_J2;
214 epd->sc_sync = jmp & NCRJMP_J4;
215 epd->sc_id = (jmp & NCRJMP_J3) ? 7 : 6;
216 switch (jmp & (NCRJMP_J0 | NCRJMP_J1)) {
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_stream/salsa20/xmm6/
salsa20_xmm6-asm.S 41 jmp ._start label
954 jmp ._bytesbetween1and255 label
  /src/tests/kernel/
t_time_arith.c 57 static jmp_buf jmp; variable
73 longjmp(jmp, 1);
420 if (setjmp(jmp) == 0) {
  /src/sbin/newfs_msdos/
mkfs_msdos.c 114 u_int8_t jmp[3]; /* bootstrap entry point */ member in struct:bs
217 0xeb, 0xf5, /* jmp $ - 9 */
722 mk1(bs->jmp[0], 0xeb);
723 mk1(bs->jmp[1], x1 - 2);
724 mk1(bs->jmp[2], 0x90);
  /src/sys/lib/libsa/
dosfs.c 94 u_char jmp[3]; /* usually 80x86 'jmp' opcode */ member in struct:__anon6921
432 if ((bs->jmp[0] != 0x69 &&
433 bs->jmp[0] != 0xe9 &&
434 (bs->jmp[0] != 0xeb || bs->jmp[2] != 0x90)) ||
  /src/external/gpl3/gdb/dist/sim/h8300/
writecode.c 316 jmp (p, a, s) function
686 nx, 1, "jmp", jmp, 0, 0
  /src/external/gpl3/gdb.old/dist/sim/h8300/
writecode.c 316 jmp (p, a, s) function
686 nx, 1, "jmp", jmp, 0, 0
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_cmd_parser.c 1374 unsigned long *jmp; local
1383 jmp = bitmap_zalloc(DIV_ROUND_UP(batch_length, sizeof(u32)),
1385 if (!jmp)
1388 return jmp;
  /src/sys/net/
bpfjit.c 1470 struct bpfjit_jump *jmp; local
1539 SLIST_FOREACH(jmp, &pd->bjumps, entries) {
1540 if (jmp->jdata->abc_length > abc_length)
1541 jmp->jdata->abc_length = abc_length;
1550 struct bpfjit_jump *jmp; local
1558 SLIST_FOREACH(jmp, &insn_dat[i].bjumps, entries) {
1559 if (jmp->jdata->checked_length < checked_length)
1560 checked_length = jmp->jdata->checked_length;
  /src/external/gpl3/gcc/dist/gcc/config/cris/
cris.cc 1860 rtx_insn *jmp; local
1875 jmp = get_last_insn ();
1876 gcc_assert (JUMP_P (jmp));
1878 predict_insn_def (jmp, PRED_NORETURN, TAKEN);
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-string.cc 2529 rtx jmp; local
2564 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, cmp_ref));
2565 JUMP_LABEL (jmp) = begin_compare_label;
2596 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, fin_ref));
2597 JUMP_LABEL (jmp) = final_label;
2660 rtx jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, fin_ref)); local
2661 JUMP_LABEL (jmp) = final_label;
  /src/external/gpl3/gcc.old/dist/gcc/config/cris/
cris.cc 1825 rtx_insn *jmp; local
1840 jmp = get_last_insn ();
1841 gcc_assert (JUMP_P (jmp));
1843 predict_insn_def (jmp, PRED_NORETURN, TAKEN);
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-string.cc 2538 rtx jmp; local
2573 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, cmp_ref));
2574 JUMP_LABEL (jmp) = begin_compare_label;
2605 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, fin_ref));
2606 JUMP_LABEL (jmp) = final_label;
2669 rtx jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, fin_ref)); local
2670 JUMP_LABEL (jmp) = final_label;
  /src/external/mit/lua/dist/src/
lcode.c 174 Instruction *jmp = &fs->f->code[pc]; local
179 lua_assert(GET_OPCODE(*jmp) == OP_JMP);
180 SETARG_sJ(*jmp, offset);
lparser.c 1545 Instruction *jmp = &fs->f->code[pc]; local
1551 SETARG_Bx(*jmp, offset);
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386-expand.cc 3126 rtx_insn *jmp; local
3133 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, tmp));
3134 add_reg_br_prob_note (jmp, profile_probability:: very_unlikely ());
3140 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, tmp));
3141 add_reg_br_prob_note (jmp, profile_probability::unlikely ());
3144 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, tmp));
3145 add_reg_br_prob_note (jmp, profile_probability::even ());
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386-expand.cc 2933 rtx_insn *jmp; local
2940 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, tmp));
2941 add_reg_br_prob_note (jmp, profile_probability:: very_unlikely ());
2947 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, tmp));
2948 add_reg_br_prob_note (jmp, profile_probability::unlikely ());
2951 jmp = emit_jump_insn (gen_rtx_SET (pc_rtx, tmp));
2952 add_reg_br_prob_note (jmp, profile_probability::even ());
  /src/external/public-domain/sqlite/dist/
sqlite3.c 16764 #define OPFLG_JUMP 0x01 /* jump: P2 holds jmp target */
139350 int jmp = sqlite3VdbeCurrentAddr(v)+2; local
158916 int jmp; local
    [all...]

Completed in 142 milliseconds