/freebsd/sys/riscv/include/ |
H A D | db_machdep.h | 70 #define inst_trap_return(ins) (ins == 0x10000073) /* eret */ argument 71 #define inst_return(ins) (ins == 0x00008067) /* ret */ argument 72 #define inst_call(ins) (((ins) & 0x7f) == 111 || \ argument 75 #define inst_load(ins) ({ \ argument 80 #define inst_store(ins) ({ \ argument 85 #define is_load_instr(ins) (((ins) & 0x7f) == 3) argument 86 #define is_store_instr(ins) (((ins) & 0x7f) == 35) argument
|
/freebsd/sys/amd64/include/ |
H A D | db_machdep.h | 71 #define i_calli(ins) (((ins)&0xff) == I_CALLI && ((ins)&0x3800) == 0x1000) argument 74 #define i_rex(ins) (((ins) & 0xff) == 0x41 || ((ins) & 0xff) == 0x43) argument 76 #define inst_trap_return(ins) (((ins)&0xff) == I_IRET) argument 77 #define inst_return(ins) (((ins)&0xff) == I_RET) argument 78 #define inst_call(ins) (((ins)&0xff) == I_CALL || i_calli(ins) || \ argument 80 #define inst_load(ins) 0 argument 81 #define inst_store(ins) 0 argument
|
/freebsd/sys/arm64/include/ |
H A D | db_machdep.h | 68 #define inst_trap_return(ins) (0) argument 71 #define inst_call(ins) (((ins) & 0xfc000000u) == 0x94000000u || /* BL */ \ argument 65 inst_trap_return(ins) global() argument 67 inst_return(ins) global() argument 76 inst_store(ins) global() argument 81 is_load_instr(ins) global() argument 105 is_store_instr(ins) global() argument [all...] |
/freebsd/sys/arm/include/ |
H A D | db_machdep.h | 58 #define inst_trap_return(ins) (0) argument 65 #define inst_return(ins) (((ins) & 0x0e108000) == 0x08108000 || \ argument 70 #define inst_call(ins) (((ins) & 0x0f000000) == 0x0b000000) argument 76 #define inst_branch(ins) (((ins) & 0x0f000000) == 0x0a000000 || \ argument 82 #define inst_load(ins) (0) argument 83 #define inst_store(ins) (0) argument
|
/freebsd/sys/i386/include/ |
H A D | db_machdep.h | 77 #define inst_trap_return(ins) (((ins)&0xff) == I_IRET) argument 78 #define inst_return(ins) (((ins)&0xff) == I_RET) argument 79 #define inst_call(ins) (((ins)&0xff) == I_CALL || \ argument 82 #define inst_load(ins) 0 argument 83 #define inst_store(ins) 0 argument
|
/freebsd/sys/powerpc/include/ |
H A D | db_machdep.h | 80 #define inst_trap_return(ins) (((ins)&M_RFI) == I_RFI) argument 81 #define inst_return(ins) (((ins)&M_RTS) == I_RTS) argument 82 #define inst_call(ins) (((ins)&M_BC ) == I_BC || \ argument 84 #define inst_load(ins) 0 argument 85 #define inst_store(ins) 0 argument
|
/freebsd/sys/ddb/ |
H A D | db_run.c | 157 db_expr_t ins; in db_stop_at_pc() local 179 db_expr_t ins; in db_stop_at_pc() local
|
/freebsd/contrib/libfido2/src/ |
H A D | iso7816.c | 11 iso7816_new(uint8_t cla, uint8_t ins, uint8_t p1, uint16_t payload_len) in iso7816_new()
|
/freebsd/tests/sys/sys/ |
H A D | arb_test.c | 63 struct node *tmp, *ins; in ATF_TC_BODY() local
|
H A D | splay_test.c | 61 struct node *tmp, *ins; in ATF_TC_BODY() local
|
H A D | rb_test.c | 60 struct node *tmp, *ins, store[ITER]; in ATF_TC_BODY() local
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_lzw.h | 65 auto ins = prefix_to_code.try_emplace({match, *it}, prefix_to_code.size()); in LzwEncode() local
|
/freebsd/sys/amd64/amd64/ |
H A D | bpf_jit_machdep.c | 159 struct bpf_insn *ins; in bpf_jit_compile() local
|
/freebsd/sys/i386/i386/ |
H A D | bpf_jit_machdep.c | 159 struct bpf_insn *ins; in bpf_jit_compile() local
|
/freebsd/sys/dev/ppbus/ |
H A D | ppb_msq.c | 198 int param, ins, arg, type; in ppb_MS_init_msq() local
|
H A D | ppb_msq.h | 52 #define MS_PARAM(ins,arg,typ) \ argument
|
/freebsd/sys/netpfil/pf/ |
H A D | pf_osfp.c | 445 pf_osfp_insert(struct pf_osfp_list *list, struct pf_os_fingerprint *ins) in pf_osfp_insert()
|
/freebsd/sys/cam/ata/ |
H A D | ata_all.c | 534 char in[7], ins[5]; in semb_print_ident() local
|
/freebsd/contrib/unbound/libunbound/ |
H A D | libunbound.c | 1233 char* parse, *addr, *name, *ins; in ub_ctx_hosts() local
|
/freebsd/sys/kern/ |
H A D | subr_taskqueue.c | 233 struct task *ins; in taskqueue_enqueue_locked() local
|
/freebsd/contrib/unbound/services/ |
H A D | outside_network.c | 2622 rbnode_type* ins; local
|
/freebsd/sys/dev/flash/flexspi/ |
H A D | flex_spi.h | 309 #define LUT_DEF(idx, ins, pad, opr) \ argument
|
/freebsd/contrib/ncurses/ncurses/tty/ |
H A D | tty_update.c | 1956 scroll_idl(NCURSES_SP_DCLx int n, int del, int ins, NCURSES_CH_T blank) in scroll_idl()
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-param-test-test.cc | 884 const auto& ins = testing::UnitTest::GetInstance(); in TEST() local
|
/freebsd/crypto/openssh/ |
H A D | sftp.c | 2003 char *tmp, *tmp2, ins[8]; in complete_match() local
|