const_name_len    227 Zend/zend_constants.c 			int const_name_len;
const_name_len    231 Zend/zend_constants.c 			const_name_len = sizeof("\0__CLASS__") + EG(scope)->name_length;
const_name_len    232 Zend/zend_constants.c 			const_name = do_alloca(const_name_len, use_heap);
const_name_len    235 Zend/zend_constants.c 			if (zend_hash_find(EG(zend_constants), const_name, const_name_len, (void**)c) == FAILURE) {
const_name_len    236 Zend/zend_constants.c 				zend_hash_add(EG(zend_constants), const_name, const_name_len, (void*)&tmp, sizeof(zend_constant), (void**)c);
const_name_len    321 Zend/zend_constants.c 		int const_name_len = name_len - class_name_len - 2;
const_name_len    367 Zend/zend_constants.c 			if (zend_hash_find(&ce->constants_table, constant_name, const_name_len+1, (void **) &ret_constant) != SUCCESS) {
const_name_len    384 Zend/zend_constants.c 		int const_name_len = name_len - prefix_len - 1;
const_name_len    393 Zend/zend_constants.c 		lcname = erealloc(lcname, prefix_len + 1 + const_name_len + 1);
const_name_len    395 Zend/zend_constants.c 		memcpy(lcname + prefix_len + 1, constant_name, const_name_len + 1);
const_name_len    397 Zend/zend_constants.c 		if (zend_hash_find(EG(zend_constants), lcname, prefix_len + 1 + const_name_len + 1, (void **) &c) == SUCCESS) {
const_name_len    401 Zend/zend_constants.c 			zend_str_tolower(lcname + prefix_len + 1, const_name_len);
const_name_len    402 Zend/zend_constants.c 			if (zend_hash_find(EG(zend_constants), lcname, prefix_len + 1 + const_name_len + 1, (void **) &c) == SUCCESS) {
const_name_len    420 Zend/zend_constants.c 			name_len = const_name_len;
const_name_len   3831 ext/standard/basic_functions.c 	int const_name_len;
const_name_len   3833 ext/standard/basic_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &const_name, &const_name_len) == FAILURE) {
const_name_len   3837 ext/standard/basic_functions.c 	if (!zend_get_constant_ex(const_name, const_name_len, return_value, NULL, ZEND_FETCH_CLASS_SILENT TSRMLS_CC)) {