Searched defs:opcode (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 941 #define SQLITE_NOTFOUND 12 /* Unknown opcode in sqlite3_file_control() */ 1172 ** integer opcode. The third argument is a generic pointer intended to 1254 ** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This 1255 ** opcode causes the xFileControl method to write the current state of 1262 ** The [SQLITE_FCNTL_SIZE_HINT] opcode is used by SQLite to give the VFS 1269 ** The [SQLITE_FCNTL_CHUNK_SIZE] opcode is used to request that the VFS 1277 ** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer 1282 ** ^(The [SQLITE_FCNTL_SYNC_OMITTED] opcode is generated internally by 1287 ** VFSes do not need this signal and should silently ignore this opcode. 1289 ** opcode a 8175 u8 opcode; /* What operation to perform */ member in struct:VdbeOp 8225 u8 opcode; /* What operation to perform */ member in struct:VdbeOpList 57924 int opcode = pOp->opcode; local 57967 u8 opcode = pOp->opcode; local 71462 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 201 add_opcode(regex_t* reg, int opcode) argument 203 BBUF_ADD1(reg, opcode); 271 add_opcode_rel_addr(regex_t* reg, int opcode, int addr) argument 275 r = add_opcode(reg, opcode); 296 add_opcode_option(regex_t* reg, int opcode, OnigOptionType option) argument 300 r = add_opcode(reg, opcode); 5768 op2name(int opcode) argument 5772 for (i = 0; OnigOpInfo[i].opcode >= 0; i++) { 5773 if (opcode == OnigOpInfo[i].opcode) 5780 op2arg_type(int opcode) argument [all...] |
| H A D | regint.h | 530 OP_LOOK_BEHIND, /* (?<=...) start (no needs end opcode) */ 756 short int opcode; member in struct:__anon250
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_compile.h | 116 zend_uchar opcode; member in struct:_zend_op 470 ZEND_API unary_op_type get_unary_op(int opcode); 471 ZEND_API binary_op_type get_binary_op(int opcode); 878 /* generate ZEND_DECLARE_INHERITED_CLASS_DELAYED opcode to delay early binding */
|
| H A D | zend_execute.c | 670 static inline void zend_assign_to_object(zval **retval, zval **object_ptr, zval *property_name, int value_type, znode_op *value_op, const zend_execute_data *execute_data, int opcode, const zend_literal *key TSRMLS_DC) argument 736 if (opcode == ZEND_ASSIGN_OBJ) { 1436 switch (brk_opline->opcode) { 1723 ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler) argument 1725 if (opcode != ZEND_USER_OPCODE) { 1728 zend_user_opcodes[opcode] = opcode; 1730 zend_user_opcodes[opcode] = ZEND_USER_OPCODE; 1732 zend_user_opcode_handlers[opcode] = handler; 1738 ZEND_API user_opcode_handler_t zend_get_user_opcode_handler(zend_uchar opcode) argument [all...] |
| H A D | zend_vm_execute.h | 302 static opcode_handler_t zend_vm_get_opcode_handler(zend_uchar opcode, zend_op* op); 326 #define ZEND_VM_DISPATCH(opcode, opline) return zend_vm_get_opcode_handler(opcode, opline)(ZEND_OPCODE_HANDLER_ARGS_PASSTHRU); 409 if (UNEXPECTED(opline->opcode == ZEND_INCLUDE_OR_EVAL)) { 1036 switch (brk_opline->opcode) { 1097 ret = zend_user_opcode_handlers[opline->opcode](ZEND_OPCODE_HANDLER_ARGS_PASSTHRU_INTERNAL); 1114 ZEND_VM_DISPATCH(opline->opcode, opline); 1456 switch (brk_opline->opcode) { 45033 zend_vm_get_opcode_handler(zend_uchar opcode, zend_op* op) argument [all...] |
| H A D | zend_opcode.c | 430 zend_printf("Ran out of opcode space!\n" 462 if (opline->opcode == ZEND_EXT_STMT) { 464 if ((opline+1)->opcode == ZEND_EXT_STMT) { 465 opline->opcode = ZEND_NOP; 473 opline->opcode = ZEND_NOP; 531 opline->opcode = ZEND_FAST_CALL; 550 opline->opcode = ZEND_FAST_CALL; 557 /* Finish the sequence with original opcode */ 561 /* Replace original opcode with jump to this sequence */ 563 opline->opcode 736 get_unary_op(int opcode) argument 751 get_binary_op(int opcode) argument [all...] |
Completed in 154 milliseconds