Searched defs:op_type (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcre_compile.c | 3701 int repeat_type, op_type; local 4754 op_type = 0; /* Default single-char op codes */ 4822 case OP_CHAR: op_type = OP_STAR - OP_STAR; break; 4823 case OP_CHARI: op_type = OP_STARI - OP_STAR; break; 4824 case OP_NOT: op_type = OP_NOTSTAR - OP_STAR; break; 4825 case OP_NOTI: op_type = OP_NOTSTARI - OP_STAR; break; 4874 repeats by setting op_type to add a suitable offset into repeat_type. Note 4883 op_type = OP_TYPESTAR - OP_STAR; /* Use type opcodes */ 4920 /* Combine the op_type with the repeat_type */ 4922 repeat_type += op_type; [all...] |
| /PHP_5_4/Zend/ |
| H A D | zend_compile.h | 87 int op_type; member in struct:_znode
|
| H A D | zend_execute.c | 52 #define get_zval_ptr(op_type, node, Ts, should_free, type) _get_zval_ptr(op_type, node, Ts, should_free, type TSRMLS_CC) 53 #define get_zval_ptr_ptr(op_type, node, Ts, should_free, type) _get_zval_ptr_ptr(op_type, node, Ts, should_free, type TSRMLS_CC) 54 #define get_obj_zval_ptr(op_type, node, Ts, should_free, type) _get_obj_zval_ptr(op_type, node, Ts, should_free, type TSRMLS_CC) 55 #define get_obj_zval_ptr_ptr(op_type, node, Ts, should_free, type) _get_obj_zval_ptr_ptr(op_type, node, Ts, should_free, type TSRMLS_CC) 346 static inline zval *_get_zval_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) argument 349 switch (op_type) { 447 _get_zval_ptr_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) argument 470 _get_obj_zval_ptr_ptr(int op_type, const znode_op *op, const temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) argument 495 _get_obj_zval_ptr(int op_type, znode_op *op, const temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) argument 1532 zend_get_zval_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) argument 1536 zend_get_zval_ptr_ptr(int op_type, const znode_op *node, const temp_variable *Ts, zend_free_op *should_free, int type TSRMLS_DC) argument [all...] |
Completed in 14 milliseconds