Searched refs:op_types (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_vm_gen.php | 147 $op_types = array( variable 1197 global $opcodes, $opnames, $op_types, $prefix, $op_types_ex; 1253 $foreach_op1 = function($do) use ($dsc, $op_types) { 1254 return function($_, $op2) use ($do, $dsc, $op_types) { 1256 foreach ($op_types as $op1) { 1279 $foreach_op2 = function($do) use ($dsc, $op_types) { 1280 return function($op1, $_) use ($do, $dsc, $op_types) { 1282 foreach ($op_types as $op2) { 1305 $foreach_op_data = function($do) use ($dsc, $op_types) { 1308 foreach ($op_types as $op_data) { [all …]
|
H A D | README.md | 54 `<OP1_TYPES>` and `<OP2_TYPES>` are masks for allowed operand op_types. 56 use any combination of the following op_types UNUSED, CONST, VAR, TMP and CV
|
/PHP-8.3/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeX86_common.c | 1736 sljit_u32 op_types, argument 1742 sljit_u8 op_eax_imm = U8(op_types >> 24); 1743 sljit_u8 op_rm = U8((op_types >> 16) & 0xff); 1744 sljit_u8 op_mr = U8((op_types >> 8) & 0xff); 1745 sljit_u8 op_imm = U8(op_types & 0xff); 1843 sljit_u32 op_types, argument 1849 sljit_u8 op_eax_imm = U8(op_types >> 24); 1850 sljit_u8 op_rm = U8((op_types >> 16) & 0xff); 1851 sljit_u8 op_mr = U8((op_types >> 8) & 0xff); 1852 sljit_u8 op_imm = U8(op_types & 0xff);
|
Completed in 26 milliseconds