Searched refs:op_types (Results 1 – 3 of 3) sorted by relevance
/php-src/Zend/ |
H A D | zend_vm_gen.php | 147 $op_types = array( variable 1199 global $opcodes, $opnames, $op_types, $prefix, $op_types_ex; 1255 $foreach_op1 = function($do) use ($dsc, $op_types) { 1256 return function($_, $op2) use ($do, $dsc, $op_types) { 1258 foreach ($op_types as $op1) { 1281 $foreach_op2 = function($do) use ($dsc, $op_types) { 1282 return function($op1, $_) use ($do, $dsc, $op_types) { 1284 foreach ($op_types as $op2) { 1307 $foreach_op_data = function($do) use ($dsc, $op_types) { 1310 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-src/ext/pcre/pcre2lib/sljit/ |
H A D | sljitNativeX86_common.c | 1975 sljit_u32 op_types, argument 1981 sljit_u8 op_eax_imm = U8(op_types >> 24); 1982 sljit_u8 op_rm = U8((op_types >> 16) & 0xff); 1983 sljit_u8 op_mr = U8((op_types >> 8) & 0xff); 1984 sljit_u8 op_imm = U8(op_types & 0xff); 2082 sljit_u32 op_types, argument 2088 sljit_u8 op_eax_imm = U8(op_types >> 24); 2089 sljit_u8 op_rm = U8((op_types >> 16) & 0xff); 2090 sljit_u8 op_mr = U8((op_types >> 8) & 0xff); 2091 sljit_u8 op_imm = U8(op_types & 0xff);
|
Completed in 25 milliseconds