Home
last modified time | relevance | path

Searched refs:op_code (Results 1 – 25 of 1215) sorted by relevance

12345678910>>...49

/dports/devel/radare2/radare2-5.1.1/libr/asm/arch/pyc/
H A Dopcode_2x.c12 def_op (.op_obj = ret->opcodes, .op_name = "POP_TOP", .op_code = 1, .pop = 1, .push = 0); in opcode_2x()
13 def_op (.op_obj = ret->opcodes, .op_name = "ROT_TWO", .op_code = 2, .pop = 2, .push = 2); in opcode_2x()
14 def_op (.op_obj = ret->opcodes, .op_name = "ROT_THREE", .op_code = 3, .pop = 3, .push = 3); in opcode_2x()
15 def_op (.op_obj = ret->opcodes, .op_name = "DUP_TOP", .op_code = 4, .pop = 0, .push = 1); in opcode_2x()
16 def_op (.op_obj = ret->opcodes, .op_name = "ROT_FOUR", .op_code = 5, .pop = 4, .push = 4); in opcode_2x()
20 def_op (.op_obj = ret->opcodes, .op_name = "UNARY_NOT", .op_code = 12, .pop = 1, .push = 1); in opcode_2x()
30 def_op (.op_obj = ret->opcodes, .op_name = "BINARY_ADD", .op_code = 23, .pop = 2, .push = 1); in opcode_2x()
38 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_0", .op_code = 30, .pop = 1, .push = 1); in opcode_2x()
39 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_1", .op_code = 31, .pop = 2, .push = 1); in opcode_2x()
40 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_2", .op_code = 32, .pop = 2, .push = 1); in opcode_2x()
[all …]
H A Dopcode_3x.c12 def_op (.op_obj = ret->opcodes, .op_name = "POP_TOP", .op_code = 1, .pop = 1, .push = 0); in opcode_3x()
13 def_op (.op_obj = ret->opcodes, .op_name = "ROT_TWO", .op_code = 2, .pop = 2, .push = 2); in opcode_3x()
14 def_op (.op_obj = ret->opcodes, .op_name = "ROT_THREE", .op_code = 3, .pop = 3, .push = 3); in opcode_3x()
15 def_op (.op_obj = ret->opcodes, .op_name = "DUP_TOP", .op_code = 4, .pop = 0, .push = 1); in opcode_3x()
18 def_op (.op_obj = ret->opcodes, .op_name = "DUP_TOP_TWO", .op_code = 5, .pop = 0, .push = 2); in opcode_3x()
23 def_op (.op_obj = ret->opcodes, .op_name = "UNARY_NOT", .op_code = 12, .pop = 1, .push = 1); in opcode_3x()
25 def_op (.op_obj = ret->opcodes, .op_name = "UNARY_INVERT", .op_code = 15, .pop = 1, .push = 1); in opcode_3x()
27 def_op (.op_obj = ret->opcodes, .op_name = "BINARY_POWER", .op_code = 19, .pop = 2, .push = 1); in opcode_3x()
31 def_op (.op_obj = ret->opcodes, .op_name = "BINARY_ADD", .op_code = 23, .pop = 2, .push = 1); in opcode_3x()
58 def_op (.op_obj = ret->opcodes, .op_name = "GET_ITER", .op_code = 68, .pop = 1, .push = 1); in opcode_3x()
[all …]
H A Dopcode_15.c12 def_op (.op_obj = ret->opcodes, .op_name = "POP_TOP", .op_code = 1); in opcode_15()
13 def_op (.op_obj = ret->opcodes, .op_name = "ROT_TWO", .op_code = 2); in opcode_15()
14 def_op (.op_obj = ret->opcodes, .op_name = "ROT_THREE", .op_code = 3); in opcode_15()
15 def_op (.op_obj = ret->opcodes, .op_name = "DUP_TOP", .op_code = 4); in opcode_15()
19 def_op (.op_obj = ret->opcodes, .op_name = "UNARY_NOT", .op_code = 12, .pop = 1, .push = 1); in opcode_15()
28 def_op (.op_obj = ret->opcodes, .op_name = "BINARY_ADD", .op_code = 23, .pop = 2, .push = 1); in opcode_15()
32 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_0", .op_code = 30, .pop = 1, .push = 1); in opcode_15()
33 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_1", .op_code = 31, .pop = 2, .push = 1); in opcode_15()
34 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_2", .op_code = 32, .pop = 2, .push = 1); in opcode_15()
35 def_op (.op_obj = ret->opcodes, .op_name = "SLICE_3", .op_code = 33, .pop = 3, .push = 1); in opcode_15()
[all …]
H A Dopcode.c177 ret->opcodes[i].op_code = i; in new_pyc_opcodes()
207 free (par.op_obj[par.op_code].op_name);
209 par.op_obj[par.op_code].op_code = par.op_code;
218 …def_op (.op_obj = par.op_obj, .op_name = par.op_name, .op_code = par.op_code, .pop = par.pop, .pus…
219 par.op_obj[par.op_code].type |= HASNAME;
223 …def_op (.op_obj = par.op_obj, .op_name = par.op_name, .op_code = par.op_code, .pop = par.pop, .pus…
228 …def_op (.op_obj = par.op_obj, .op_name = par.op_name, .op_code = par.op_code, .pop = par.pop, .pus…
229 par.op_obj[par.op_code].type |= HASFREE;
270 par.op_obj[par.op_code].type |= HASJABS;
278 par.op_obj[par.op_code].type |= HASJREL;
[all …]
H A Dopcode_27.c12 rm_op (.op_obj = ret->opcodes, .op_name = "BUILD_MAP", .op_code = 104); in opcode_27()
13 rm_op (.op_obj = ret->opcodes, .op_name = "LOAD_ATTR", .op_code = 105); in opcode_27()
14 rm_op (.op_obj = ret->opcodes, .op_name = "COMPARE_OP", .op_code = 106); in opcode_27()
15 rm_op (.op_obj = ret->opcodes, .op_name = "IMPORT_NAME", .op_code = 107); in opcode_27()
16 rm_op (.op_obj = ret->opcodes, .op_name = "IMPORT_FROM", .op_code = 108); in opcode_27()
17 rm_op (.op_obj = ret->opcodes, .op_name = "JUMP_IF_FALSE", .op_code = 111); in opcode_27()
18 rm_op (.op_obj = ret->opcodes, .op_name = "EXTENDED_ARG", .op_code = 143); in opcode_27()
19 rm_op (.op_obj = ret->opcodes, .op_name = "JUMP_IF_TRUE", .op_code = 112); in opcode_27()
24 def_op (.op_obj = ret->opcodes, .op_name = "BUILD_MAP", .op_code = 105); in opcode_27()
25 name_op (.op_obj = ret->opcodes, .op_name = "LOAD_ATTR", .op_code = 106); in opcode_27()
[all …]
H A Dopcode_35.c14 rm_op (.op_obj = ret->opcodes, .op_name = "STORE_MAP", .op_code = 54); in opcode_35()
15 rm_op (.op_obj = ret->opcodes, .op_name = "WITH_CLEANUP", .op_code = 81); in opcode_35()
20 …def_op (.op_obj = ret->opcodes, .op_name = "BINARY_MATRIX_MULTIPLY", .op_code = 16, .pop = 2, .pus… in opcode_35()
22 def_op (.op_obj = ret->opcodes, .op_name = "GET_AITER", .op_code = 50, .pop = 1, .push = 1); in opcode_35()
23 def_op (.op_obj = ret->opcodes, .op_name = "GET_ANEXT", .op_code = 51, .pop = 0, .push = 1); in opcode_35()
24 def_op (.op_obj = ret->opcodes, .op_name = "BEFORE_ASYNC_WITH", .op_code = 52); in opcode_35()
25 …def_op (.op_obj = ret->opcodes, .op_name = "GET_YIELD_FROM_ITER", .op_code = 69, .pop = 0, .push =… in opcode_35()
26 def_op (.op_obj = ret->opcodes, .op_name = "GET_AWAITABLE", .op_code = 73, .pop = 0, .push = 0); in opcode_35()
27 …def_op (.op_obj = ret->opcodes, .op_name = "WITH_CLEANUP_START", .op_code = 81, .pop = 0, .push = … in opcode_35()
28 …def_op (.op_obj = ret->opcodes, .op_name = "WITH_CLEANUP_FINISH", .op_code = 82, .pop = -1, .push … in opcode_35()
[all …]
H A Dopcode_36.c12 rm_op (.op_obj = ret->opcodes, .op_name = "MAKE_CLOSURE", .op_code = 134); in opcode_36()
13 rm_op (.op_obj = ret->opcodes, .op_name = "CALL_FUNCTION_VAR", .op_code = 140); in opcode_36()
14 rm_op (.op_obj = ret->opcodes, .op_name = "CALL_FUNCTION_VAR_KW", .op_code = 142); in opcode_36()
17 …store_op00 (.op_obj = ret->opcodes, .op_name = "STORE_ANNOTATION", .op_code = 127, .func = NAME_OP… in opcode_36()
18 jrel_op (.op_obj = ret->opcodes, .op_name = "SETUP_ASYNC_WITH", .op_code = 154); in opcode_36()
19 def_op (.op_obj = ret->opcodes, .op_name = "FORMAT_VALUE", .op_code = 155); in opcode_36()
20 …varargs_op (.op_obj = ret->opcodes, .op_name = "BUILD_CONST_KEY_MAP", .op_code = 156, .pop = -1, .… in opcode_36()
21 …nargs_op (.op_obj = ret->opcodes, .op_name = "CALL_FUNCTION_EX", .op_code = 142, .pop = -1, .push … in opcode_36()
22 def_op (.op_obj = ret->opcodes, .op_name = "SETUP_ANNOTATIONS", .op_code = 85); in opcode_36()
23 def_op (.op_obj = ret->opcodes, .op_name = "BUILD_STRING", .op_code = 157); in opcode_36()
[all …]
H A Dopcode_30.c13 rm_op (.op_obj = ret->opcodes, .op_name = "JUMP_IF_FALSE_OR_POP", .op_code = 111); in opcode_30()
14 rm_op (.op_obj = ret->opcodes, .op_name = "JUMP_IF_TRUE_OR_POP", .op_code = 112); in opcode_30()
15 rm_op (.op_obj = ret->opcodes, .op_name = "POP_JUMP_IF_FALSE", .op_code = 114); in opcode_30()
16 rm_op (.op_obj = ret->opcodes, .op_name = "POP_JUMP_IF_TRUE", .op_code = 115); in opcode_30()
17 rm_op (.op_obj = ret->opcodes, .op_name = "LIST_APPEND", .op_code = 145); in opcode_30()
18 rm_op (.op_obj = ret->opcodes, .op_name = "MAP_ADD", .op_code = 147); in opcode_30()
25 def_op (.op_obj = ret->opcodes, .op_name = "SET_ADD", .op_code = 17, .pop = 1, .push = 0); in opcode_30()
26 def_op (.op_obj = ret->opcodes, .op_name = "LIST_APPEND", .op_code = 18, .pop = 2, .push = 1); in opcode_30()
28 …jrel_op (.op_obj = ret->opcodes, .op_name = "JUMP_IF_FALSE", .op_code = 111, .pop = 1, .push = 1, … in opcode_30()
29 …jrel_op (.op_obj = ret->opcodes, .op_name = "JUMP_IF_TRUE", .op_code = 112, .pop = 1, .push = 1, .… in opcode_30()
H A Dopcode_38.c12 rm_op (.op_obj = ret->opcodes, .op_name = "BREAK_LOOP", .op_code = 80); in opcode_38()
13 rm_op (.op_obj = ret->opcodes, .op_name = "CONTINUE_LOOP", .op_code = 119); in opcode_38()
14 rm_op (.op_obj = ret->opcodes, .op_name = "SETUP_LOOP", .op_code = 120); in opcode_38()
15 rm_op (.op_obj = ret->opcodes, .op_name = "SETUP_EXCEPT", .op_code = 121); in opcode_38()
21 def_op (.op_obj = ret->opcodes, .op_name = "ROT_FOUR", .op_code = 6, .pop = 4, .push = 4); in opcode_38()
22 def_op (.op_obj = ret->opcodes, .op_name = "BEGIN_FINALLY", .op_code = 53, .pop = 0, .push = 1); in opcode_38()
23 …def_op (.op_obj = ret->opcodes, .op_name = "END_ASYNC_FOR", .op_code = 54, .pop = 7, .push = 0); /… in opcode_38()
24 …def_op (.op_obj = ret->opcodes, .op_name = "END_FINALLY", .op_code = 88, .pop = 1, .push = 0); // … in opcode_38()
25 jrel_op (.op_obj = ret->opcodes, .op_name = "CALL_FINALLY", .op_code = 162, .pop = 0, .push = 1); in opcode_38()
26 …nargs_op (.op_obj = ret->opcodes, .op_name = "POP_FINALLY", .op_code = 163, .pop = 0, .push = 0); … in opcode_38()
H A Dopcode_14.c12 def_op (.op_obj = ret->opcodes, .op_name = "UNARY_CALL", .op_code = 14); in opcode_14()
13 def_op (.op_obj = ret->opcodes, .op_name = "BINARY_CALL", .op_code = 26); in opcode_14()
14 def_op (.op_obj = ret->opcodes, .op_name = "RAISE_EXCEPTION", .op_code = 81); in opcode_14()
15 def_op (.op_obj = ret->opcodes, .op_name = "BUILD_FUNCTION", .op_code = 86); in opcode_14()
16 …varargs_op (.op_obj = ret->opcodes, .op_name = "UNPACK_ARG", .op_code = 94); // Number of argument… in opcode_14()
17 …varargs_op (.op_obj = ret->opcodes, .op_name = "UNPACK_VARARG", .op_code = 99); // Minimal number … in opcode_14()
18 name_op (.op_obj = ret->opcodes, .op_name = "LOAD_LOCAL", .op_code = 115); in opcode_14()
19 varargs_op (.op_obj = ret->opcodes, .op_name = "SET_FUNC_ARGS", .op_code = 117); // Argcount in opcode_14()
20 …varargs_op (.op_obj = ret->opcodes, .op_name = "RESERVE_FAST", .op_code = 123); // Number of local… in opcode_14()
H A Dopcode_39.c12 rm_op (.op_obj = ret->opcodes, .op_name = "BEGIN_FINALLY", .op_code = 53); in opcode_39()
13 rm_op (.op_obj = ret->opcodes, .op_name = "WITH_CLEANUP_START", .op_code = 81); in opcode_39()
14 rm_op (.op_obj = ret->opcodes, .op_name = "WITH_CLEANUP_FINISH", .op_code = 82); in opcode_39()
15 rm_op (.op_obj = ret->opcodes, .op_name = "END_FINALLY", .op_code = 88); in opcode_39()
16 rm_op (.op_obj = ret->opcodes, .op_name = "CALL_FINALLY", .op_code = 162); in opcode_39()
17 rm_op (.op_obj = ret->opcodes, .op_name = "POP_FINALLY", .op_code = 163); in opcode_39()
21 def_op (.op_obj = ret->opcodes, .op_name = "RERAISE", .op_code = 48, .pop = 0, .push = 0); in opcode_39()
22 …def_op (.op_obj = ret->opcodes, .op_name = "WITH_EXCEPT_START", .op_code = 49, .pop = 3, .push = 0… in opcode_39()
23 …def_op (.op_obj = ret->opcodes, .op_name = "LOAD_ASSERTION_ERROR", .op_code = 74, .pop = 0, .push … in opcode_39()
H A Dopcode_21.c12 rm_op (.op_obj = ret->opcodes, .op_name = "BINARY_FLOOR_DIVIDE", .op_code = 26); in opcode_21()
13 rm_op (.op_obj = ret->opcodes, .op_name = "BINARY_TRUE_DIVIDE", .op_code = 27); in opcode_21()
14 rm_op (.op_obj = ret->opcodes, .op_name = "INPLACE_FLOOR_DIVIDE", .op_code = 28); in opcode_21()
15 rm_op (.op_obj = ret->opcodes, .op_name = "INPLACE_TRUE_DIVIDE", .op_code = 29); in opcode_21()
16 rm_op (.op_obj = ret->opcodes, .op_name = "GET_ITER", .op_code = 68); in opcode_21()
17 rm_op (.op_obj = ret->opcodes, .op_name = "YIELD_VALUE", .op_code = 86); in opcode_21()
18 rm_op (.op_obj = ret->opcodes, .op_name = "FOR_ITER", .op_code = 93); in opcode_21()
/dports/math/cppad/CppAD-20210000.8/bin/
H A Dcheck_op_code.sh29 sort --ignore-case op_code.1.$$ > op_code.2.$$
30 if ! diff op_code.1.$$ op_code.2.$$
33 rm op_code.*.$$
45 > op_code.3.$$
47 if ! diff op_code.1.$$ op_code.3.$$
50 rm op_code.*.$$
64 if ! diff op_code.1.$$ op_code.4.$$
68 rm op_code.*.$$
82 if ! diff op_code.1.$$ op_code.5.$$
85 rm op_code.*.$$
[all …]
/dports/security/john/john-1.9.0-jumbo-1/src/ztex/fpga-md5crypt/md5crypt/cpu/
H A Dcpu.v166 reg [`OP_CODE_LEN-1:0] op_code; register
236 op_code1 <= op_code;
288 op_code == `OP_CODE_ADD_R_C | op_code == `OP_CODE_SUB_R_C
289 | op_code == `OP_CODE_ADDC_R_C | op_code == `OP_CODE_SUBB_R_C;
291 | op_code == `OP_CODE_SUBB_R_C;
295 | op_code == `OP_CODE_MV_R_C | op_code == `OP_CODE_AND;
303 iop_grp3 <= op_code == `OP_CODE_SHR1 | op_code == `OP_CODE_MV_R_R;
319 if (op_code == `OP_CODE_FLAG)
324 if (op_code == `OP_CODE_JMP)
328 if (op_code == `OP_CODE_HALT)
[all …]
/dports/security/john/john-1.9.0-jumbo-1/src/ztex/fpga-sha256crypt/sha256crypt/cpu/
H A Dcpu.v166 reg [`OP_CODE_LEN-1:0] op_code; register
236 op_code1 <= op_code;
288 op_code == `OP_CODE_ADD_R_C | op_code == `OP_CODE_SUB_R_C
289 | op_code == `OP_CODE_ADDC_R_C | op_code == `OP_CODE_SUBB_R_C;
291 | op_code == `OP_CODE_SUBB_R_C;
297 | op_code == `OP_CODE_MV_R_C | op_code == `OP_CODE_AND;
305 iop_grp3 <= op_code == `OP_CODE_SHR1 | op_code == `OP_CODE_MV_R_R;
321 if (op_code == `OP_CODE_FLAG)
326 if (op_code == `OP_CODE_JMP)
330 if (op_code == `OP_CODE_HALT)
[all …]
/dports/security/john/john-1.9.0-jumbo-1/src/ztex/fpga-sha512crypt/sha512crypt/cpu/
H A Dcpu.v160 reg [`OP_CODE_LEN-1:0] op_code; register
223 op_code1 <= op_code;
275 op_code == `OP_CODE_ADD_R_C | op_code == `OP_CODE_SUB_R_C
276 | op_code == `OP_CODE_ADDC_R_C | op_code == `OP_CODE_SUBB_R_C;
278 | op_code == `OP_CODE_SUBB_R_C;
284 | op_code == `OP_CODE_MV_R_C | op_code == `OP_CODE_AND;
292 iop_grp3 <= op_code == `OP_CODE_SHR1 | op_code == `OP_CODE_MV_R_R;
308 if (op_code == `OP_CODE_FLAG)
313 if (op_code == `OP_CODE_JMP)
317 if (op_code == `OP_CODE_HALT)
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/riscv/kernel/
H A Dkgdb.c63 int op_code; in get_step_address() local
68 if (is_c_jalr_insn(op_code) || is_c_jr_insn(op_code)) { in get_step_address()
71 } else if (is_c_j_insn(op_code) || is_c_jal_insn(op_code)) { in get_step_address()
103 if (is_beq_insn(op_code)) in get_step_address()
105 else if (is_bne_insn(op_code)) in get_step_address()
107 else if (is_blt_insn(op_code)) in get_step_address()
111 else if (is_bge_insn(op_code)) in get_step_address()
115 else if (is_bltu_insn(op_code)) in get_step_address()
117 else if (is_bgeu_insn(op_code)) in get_step_address()
123 } else if (is_jal_insn(op_code)) { in get_step_address()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/riscv/kernel/
H A Dkgdb.c63 int op_code; in get_step_address() local
68 if (is_c_jalr_insn(op_code) || is_c_jr_insn(op_code)) { in get_step_address()
71 } else if (is_c_j_insn(op_code) || is_c_jal_insn(op_code)) { in get_step_address()
103 if (is_beq_insn(op_code)) in get_step_address()
105 else if (is_bne_insn(op_code)) in get_step_address()
107 else if (is_blt_insn(op_code)) in get_step_address()
111 else if (is_bge_insn(op_code)) in get_step_address()
115 else if (is_bltu_insn(op_code)) in get_step_address()
117 else if (is_bgeu_insn(op_code)) in get_step_address()
123 } else if (is_jal_insn(op_code)) { in get_step_address()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/arch/riscv/kernel/
H A Dkgdb.c63 int op_code; in get_step_address() local
68 if (is_c_jalr_insn(op_code) || is_c_jr_insn(op_code)) { in get_step_address()
71 } else if (is_c_j_insn(op_code) || is_c_jal_insn(op_code)) { in get_step_address()
103 if (is_beq_insn(op_code)) in get_step_address()
105 else if (is_bne_insn(op_code)) in get_step_address()
107 else if (is_blt_insn(op_code)) in get_step_address()
111 else if (is_bge_insn(op_code)) in get_step_address()
115 else if (is_bltu_insn(op_code)) in get_step_address()
117 else if (is_bgeu_insn(op_code)) in get_step_address()
123 } else if (is_jal_insn(op_code)) { in get_step_address()
[all …]
/dports/devel/folly/folly-2021.12.27.00/folly/
H A Djson_patch.cpp116 op.op_code = op_code::test; in try_parse()
118 op.op_code = op_code::remove; in try_parse()
123 op.op_code = op_code::add; in try_parse()
128 op.op_code = op_code::replace; in try_parse()
138 op.op_code = op_code::move; in try_parse()
143 op.op_code = op_code::copy; in try_parse()
146 if (op.op_code != op_code::invalid) { in try_parse()
251 switch (op.op_code) { in apply()
252 case op_code::test: in apply()
268 case op_code::add: { in apply()
[all …]
/dports/math/z3/z3-z3-4.8.13/src/sat/
H A Dsat_cut_simplifier.h71 enum class op_code { pp, pn, np, nn, none }; enum
75 op_code op;
76 bin_rel(unsigned _u, unsigned _v): u(_u), v(_v), op(op_code::none) { in bin_rel()
81 if (_u.sign() && _v.sign()) op = op_code::pp; in bin_rel()
82 else if (_u.sign()) op = op_code::pn; in bin_rel()
83 else if (_v.sign()) op = op_code::np; in bin_rel()
84 else op = op_code::nn; in bin_rel()
87 if (op == op_code::np) op = op_code::pn; in bin_rel()
88 else if (op == op_code::pn) op = op_code::np; in bin_rel()
91 bin_rel(): u(UINT_MAX), v(UINT_MAX), op(op_code::none) {} in bin_rel()
[all …]
/dports/math/py-z3-solver/z3-z3-4.8.10/src/sat/
H A Dsat_cut_simplifier.h71 enum class op_code { pp, pn, np, nn, none }; enum
75 op_code op;
76 bin_rel(unsigned _u, unsigned _v): u(_u), v(_v), op(op_code::none) { in bin_rel()
81 if (_u.sign() && _v.sign()) op = op_code::pp; in bin_rel()
82 else if (_u.sign()) op = op_code::pn; in bin_rel()
83 else if (_v.sign()) op = op_code::np; in bin_rel()
84 else op = op_code::nn; in bin_rel()
87 if (op == op_code::np) op = op_code::pn; in bin_rel()
88 else if (op == op_code::pn) op = op_code::np; in bin_rel()
91 bin_rel(): u(UINT_MAX), v(UINT_MAX), op(op_code::none) {} in bin_rel()
[all …]
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/fpga/usrp3/lib/rfnoc/sim/chdr_stream_endpoint_tb/
H A Dchdr_stream_endpoint_tb.sv319 op_code : op[i],
483 op_code : ctrl_opcode_t'($urandom_range(9)),
715 op_code:MGMT_OP_INFO_RESP, ops_pending:8'd0};
743 op_code:MGMT_OP_INFO_RESP, ops_pending:8'd0};
768 op_code:MGMT_OP_INFO_RESP, ops_pending:8'd0};
853 op_code:MGMT_OP_CFG_RD_RESP, ops_pending:8'd1};
857 op_code:MGMT_OP_CFG_RD_RESP, ops_pending:8'd0};
955 op_code:MGMT_OP_CFG_RD_RESP, ops_pending:8'd6};
958 op_code:MGMT_OP_CFG_RD_RESP, ops_pending:8'd5};
961 op_code:MGMT_OP_CFG_RD_RESP, ops_pending:8'd4};
[all …]
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Dexpr.c61 int op_code; member
103 int OpPrec(op_code) in OpPrec() argument
104 int op_code; in OpPrec()
142 int op_code; in OpArity()
181 int op_code; in OpPush()
188 op_ptr->op_code = op_code;
212 int op_code=topOpStk->op_code; in PopOpStk() local
217 return op_code; in PopOpStk()
278 int op_code; in EvalEquality()
337 int op_code; in EvalInequality()
[all …]
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/codegen/
H A DHelperDefinitions.py80 def makeTypeOps(op_code, type_name, include_nbool): argument
86 for helper in makeTypeOpsNbool(op_code, type_name):
90 def makeTypeOpsNbool(op_code, type_name): argument
96 def makeFriendOps(op_code, include_nbool, *type_names): argument
107 op_code,
112 op_code,
118 def makeDefaultOps(op_code, include_nbool): argument
119 yield "BINARY_OPERATION_%s_OBJECT_OBJECT_OBJECT" % op_code
124 def makeNonContainerMathOps(op_code): argument
126 if "BIT" in op_code and type_name == "SET":
[all …]

12345678910>>...49