constants         252 ext/opcache/Optimizer/pass1_5.c 					if (!*constants || !zend_optimizer_get_collected_constant(*constants, &ZEND_OP2_LITERAL(opline), &c)) {
constants         354 ext/opcache/Optimizer/pass1_5.c 				zend_optimizer_collect_constant(constants, &ZEND_OP1_LITERAL(opline-2), &ZEND_OP1_LITERAL(opline-1));
constants         492 ext/opcache/Optimizer/pass1_5.c 				zend_optimizer_collect_constant(constants, &ZEND_OP1_LITERAL(opline), &ZEND_OP2_LITERAL(opline));
constants          38 ext/opcache/Optimizer/zend_optimizer.c static void zend_optimizer_collect_constant(HashTable **constants, zval *name, zval* value)
constants          42 ext/opcache/Optimizer/zend_optimizer.c 	if (!*constants) {
constants          43 ext/opcache/Optimizer/zend_optimizer.c 		*constants = emalloc(sizeof(HashTable));
constants          44 ext/opcache/Optimizer/zend_optimizer.c 		zend_hash_init(*constants, 16, NULL, (void (*)(void *))zend_optimizer_zval_dtor_wrapper, 0);
constants          48 ext/opcache/Optimizer/zend_optimizer.c 	zend_hash_add(*constants, Z_STRVAL_P(name), Z_STRLEN_P(name)+1, (void**)&val, sizeof(zval), NULL);
constants          51 ext/opcache/Optimizer/zend_optimizer.c static int zend_optimizer_get_collected_constant(HashTable *constants, zval *name, zval* value)
constants          55 ext/opcache/Optimizer/zend_optimizer.c 	if (zend_hash_find(constants, Z_STRVAL_P(name), Z_STRLEN_P(name)+1, (void**)&val) == SUCCESS) {
constants         477 ext/opcache/Optimizer/zend_optimizer.c                           HashTable              **constants TSRMLS_DC)
constants         543 ext/opcache/Optimizer/zend_optimizer.c                                 HashTable              **constants TSRMLS_DC)
constants         586 ext/opcache/Optimizer/zend_optimizer.c 	zend_optimize(op_array, script, constants TSRMLS_CC);	
constants         631 ext/opcache/Optimizer/zend_optimizer.c 	HashTable *constants = NULL;
constants         633 ext/opcache/Optimizer/zend_optimizer.c 	zend_accel_optimize(&script->main_op_array, script, &constants TSRMLS_CC);
constants         638 ext/opcache/Optimizer/zend_optimizer.c 		zend_accel_optimize(op_array, script, &constants TSRMLS_CC);
constants         649 ext/opcache/Optimizer/zend_optimizer.c 				zend_accel_optimize(op_array, script, &constants TSRMLS_CC);
constants         663 ext/opcache/Optimizer/zend_optimizer.c 	if (constants) {
constants         664 ext/opcache/Optimizer/zend_optimizer.c 		zend_hash_destroy(constants);
constants         665 ext/opcache/Optimizer/zend_optimizer.c 		efree(constants);