| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | vdbe.h | 32 ** A single instruction of the virtual machine has an opcode 37 u8 opcode; /* What operation to perform */ member in struct:VdbeOp 54 u8 opcode; /* What operation to perform */ member in struct:VdbeOpList 79 ** header file that defines a number for each opcode used by the VDBE.
|
| H A D | vdbeaux.c | 66 ** op The opcode for this instruction 94 pOp->opcode = op; 109 ** Add an opcode that includes the p3 value. 118 ** Add multiple opcodes. The list is terminated by an opcode of 0. 123 int opcode, p1, p2; local 126 while( (opcode = va_arg(ap,int))!=0 ){ 129 sqliteVdbeAddOp(p, opcode, p1, p2); 223 pOut->opcode = pIn->opcode; 369 ** Search for the current program for the given opcode an [all...] |
| /PHP_5_3/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_5_3/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 179 add_opcode(regex_t* reg, int opcode) argument 181 BBUF_ADD1(reg, opcode); 249 add_opcode_rel_addr(regex_t* reg, int opcode, int addr) argument 253 r = add_opcode(reg, opcode); 274 add_opcode_option(regex_t* reg, int opcode, OnigOptionType option) argument 278 r = add_opcode(reg, opcode); 5563 op2name(int opcode) argument 5567 for (i = 0; OnigOpInfo[i].opcode >= 0; i++) { 5568 if (opcode == OnigOpInfo[i].opcode) 5575 op2arg_type(int opcode) argument [all...] |
| H A D | regint.h | 641 OP_LOOK_BEHIND, /* (?<=...) start (no needs end opcode) */ 805 short int opcode; member in struct:__anon224
|
| /PHP_5_3/Zend/ |
| H A D | zend_compile.h | 89 zend_uchar opcode; member in struct:_zend_op 393 ZEND_API unary_op_type get_unary_op(int opcode); 394 ZEND_API binary_op_type get_binary_op(int opcode); 767 /* generate ZEND_DECLARE_INHERITED_CLASS_DELAYED opcode to delay early binding */
|
| H A D | zend_opcode.c | 308 zend_printf("Ran out of opcode space!\n" 340 if (opline->opcode == ZEND_EXT_STMT) { 342 if ((opline+1)->opcode == ZEND_EXT_STMT) { 343 opline->opcode = ZEND_NOP; 351 opline->opcode = ZEND_NOP; 395 switch (opline->opcode) { 428 ZEND_API unary_op_type get_unary_op(int opcode) argument 430 switch (opcode) { 443 ZEND_API binary_op_type get_binary_op(int opcode) argument 445 switch (opcode) { [all...] |
| H A D | zend_execute.c | 517 static inline void zend_assign_to_object(znode *result, zval **object_ptr, zval *property_name, znode *value_op, const temp_variable *Ts, int opcode TSRMLS_DC) 585 if (opcode == ZEND_ASSIGN_OBJ) { 1218 switch (brk_opline->opcode) { 1297 ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler) argument 1299 if (opcode != ZEND_USER_OPCODE) { 1300 zend_user_opcodes[opcode] = ZEND_USER_OPCODE; 1301 zend_user_opcode_handlers[opcode] = handler; 1307 ZEND_API user_opcode_handler_t zend_get_user_opcode_handler(zend_uchar opcode) argument 1309 return zend_user_opcode_handlers[opcode];
|
| H A D | zend_vm_execute.h | 28 static opcode_handler_t zend_vm_get_opcode_handler(zend_uchar opcode, zend_op* op); 35 #define ZEND_VM_DISPATCH(opcode, opline) return zend_vm_get_opcode_handler(opcode, opline)(ZEND_OPCODE_HANDLER_ARGS_PASSTHRU); 177 if (EX(call_opline)->opcode == ZEND_INCLUDE_OR_EVAL) { 661 switch (brk_opline->opcode) { 703 int ret = zend_user_opcode_handlers[EX(opline)->opcode](ZEND_OPCODE_HANDLER_ARGS_PASSTHRU_INTERNAL); 715 ZEND_VM_DISPATCH(EX(opline)->opcode, EX(opline)); 889 switch (brk_opline->opcode) { 30141 zend_error_noreturn(E_ERROR, "Invalid opcode %d/%d/%d.", EX(opline)->opcode, E 34002 zend_vm_get_opcode_handler(zend_uchar opcode, zend_op* op) argument [all...] |