constants         276 ext/opcache/Optimizer/pass1_5.c 					if (!ctx->constants || !zend_optimizer_get_collected_constant(ctx->constants, &ZEND_OP2_LITERAL(opline), &c)) {
constants          39 ext/opcache/Optimizer/zend_optimizer.c 	if (!ctx->constants) {
constants          40 ext/opcache/Optimizer/zend_optimizer.c 		ctx->constants = zend_arena_alloc(&ctx->arena, sizeof(HashTable));
constants          41 ext/opcache/Optimizer/zend_optimizer.c 		zend_hash_init(ctx->constants, 16, NULL, zend_optimizer_zval_dtor_wrapper, 0);
constants          44 ext/opcache/Optimizer/zend_optimizer.c 	zend_hash_add(ctx->constants, Z_STR_P(name), &val);
constants          47 ext/opcache/Optimizer/zend_optimizer.c int zend_optimizer_get_collected_constant(HashTable *constants, zval *name, zval* value)
constants          51 ext/opcache/Optimizer/zend_optimizer.c 	if ((val = zend_hash_find(constants, Z_STR_P(name))) != NULL) {
constants         679 ext/opcache/Optimizer/zend_optimizer.c 	ctx.constants = NULL;
constants         743 ext/opcache/Optimizer/zend_optimizer.c 	if (ctx.constants) {
constants         744 ext/opcache/Optimizer/zend_optimizer.c 		zend_hash_destroy(ctx.constants);
constants          55 ext/opcache/Optimizer/zend_optimizer_internal.h 	HashTable              *constants;
constants         119 ext/opcache/Optimizer/zend_optimizer_internal.h int  zend_optimizer_get_collected_constant(HashTable *constants, zval *name, zval* value);
constants          39 sapi/phpdbg/phpdbg_info.c 	PHPDBG_INFO_COMMAND_D(constants, "show user defined constants",   'd', info_constants, NULL, 0, PHPDBG_ASYNC_SAFE),
constants          98 sapi/phpdbg/phpdbg_info.c PHPDBG_INFO(constants) /* {{{ */
constants          33 sapi/phpdbg/phpdbg_info.h PHPDBG_INFO(constants);