Home
last modified time | relevance | path

Searched refs:cache_size (Results 1 – 10 of 10) sorted by relevance

/PHP-7.1/ext/opcache/Optimizer/
H A Dcompact_literals.c120 int i, j, n, *map, cache_size; in zend_optimizer_compact_literals() local
131 cache_size = 0; in zend_optimizer_compact_literals()
290 Z_CACHE_SLOT(op_array->literals[opline->op2.constant]) = cache_size; in zend_optimizer_compact_literals()
291 cache_size += sizeof(void *); in zend_optimizer_compact_literals()
304 opline->op2.num = cache_size; in zend_optimizer_compact_literals()
305 cache_size += sizeof(void *); in zend_optimizer_compact_literals()
474 Z_CACHE_SLOT(op_array->literals[j]) = cache_size; in zend_optimizer_compact_literals()
475 cache_size += LITERAL_NUM_SLOTS(info[i].flags) * sizeof(void*); in zend_optimizer_compact_literals()
500 op_array->cache_size = cache_size; in zend_optimizer_compact_literals()
H A Dzend_optimizer.c140 Z_CACHE_SLOT(op_array->literals[opline->op1.constant]) = op_array->cache_size; in alloc_cache_slots_op1()
141 op_array->cache_size += num * sizeof(void *); in alloc_cache_slots_op1()
144 Z_CACHE_SLOT(op_array->literals[opline->op2.constant]) = op_array->cache_size; in alloc_cache_slots_op2()
145 op_array->cache_size += num * sizeof(void *); in alloc_cache_slots_op2()
/PHP-7.1/Zend/
H A Dzend_closures.c163 my_function.op_array.run_time_cache = emalloc(my_function.op_array.cache_size); in ZEND_METHOD()
164 memset(my_function.op_array.run_time_cache, 0, my_function.op_array.cache_size); in ZEND_METHOD()
673 func->op_array.run_time_cache = zend_arena_alloc(&CG(arena), func->op_array.cache_size); in zend_create_closure()
677 closure->func.op_array.run_time_cache = emalloc(func->op_array.cache_size); in zend_create_closure()
680 memset(closure->func.op_array.run_time_cache, 0, func->op_array.cache_size); in zend_create_closure()
H A Dzend_execute.c2187 op_array->run_time_cache = zend_arena_alloc(&CG(arena), op_array->cache_size); in init_func_run_time_cache()
2188 memset(op_array->run_time_cache, 0, op_array->cache_size); in init_func_run_time_cache()
2203 op_array->run_time_cache = emalloc(op_array->cache_size); in i_init_code_execute_data()
2204 memset(op_array->run_time_cache, 0, op_array->cache_size); in i_init_code_execute_data()
2278 op_array->run_time_cache = zend_arena_alloc(&CG(arena), op_array->cache_size); in i_init_execute_data()
2280 op_array->run_time_cache = emalloc(op_array->cache_size); in i_init_execute_data()
2282 memset(op_array->run_time_cache, 0, op_array->cache_size); in i_init_execute_data()
H A Dzend_opcode.c96 op_array->cache_size = 0; in init_op_array()
H A Dzend_compile.h392 int cache_size; member
H A Dzend_compile.c69 Z_CACHE_SLOT(op_array->literals[literal]) = op_array->cache_size; in zend_alloc_cache_slot()
70 op_array->cache_size += sizeof(void*); in zend_alloc_cache_slot()
77 Z_CACHE_SLOT(op_array->literals[literal]) = op_array->cache_size; in zend_alloc_polymorphic_cache_slot()
78 op_array->cache_size += POLYMORPHIC_CACHE_SLOT_SIZE * sizeof(void*); in zend_alloc_polymorphic_cache_slot()
2386 opline->op2.num = CG(active_op_array)->cache_size; in zend_emit_return_type_check()
2387 CG(active_op_array)->cache_size += sizeof(void*); in zend_emit_return_type_check()
5268 opline->op2.num = op_array->cache_size; in zend_compile_params()
5269 op_array->cache_size += sizeof(void*); in zend_compile_params()
/PHP-7.1/
H A Dphp.ini-development1032 ; http://php.net/pdo_mysql.cache_size
1033 pdo_mysql.cache_size = 2000
1175 ; http://php.net/mysqli.cache_size
1176 mysqli.cache_size = 2000
H A Dphp.ini-production1032 ; http://php.net/pdo_mysql.cache_size
1033 pdo_mysql.cache_size = 2000
1175 ; http://php.net/mysqli.cache_size
1176 mysqli.cache_size = 2000
/PHP-7.1/ext/sqlite3/libsqlite/
H A Dsqlite3.c16158 int cache_size; /* Number of pages to use in the cache */ member
92713 mxCache = db->aDb[0].pSchema->cache_size;
121672 pDb->pSchema->cache_size = size;
121673 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
121965 returnSingleInt(v, pDb->pSchema->cache_size);
121968 pDb->pSchema->cache_size = size;
121969 sqlite3BtreeSetCacheSize(pDb->pBt, pDb->pSchema->cache_size);
123964 if( pDb->pSchema->cache_size==0 ){
123968 pDb->pSchema->cache_size = size;
123970 pDb->pSchema->cache_size = SQLITE_DEFAULT_CACHE_SIZE;
[all …]

Completed in 563 milliseconds