orig             1130 Zend/zend_alloc.c 		zend_mm_free_block *p, *q, *orig;
orig             1136 Zend/zend_alloc.c 		orig = ZEND_MM_SMALL_FREE_BUCKET(heap, 0);
orig             1139 Zend/zend_alloc.c 			while (q->prev_free_block != orig) {
orig             1144 Zend/zend_alloc.c 			while (q->next_free_block != orig) {
orig             1149 Zend/zend_alloc.c 			orig = (zend_mm_free_block*)((char*)orig + sizeof(zend_mm_free_block*) * 2);
orig             1229 Zend/zend_execute.c 					zval *orig = dim;
orig             1231 Zend/zend_execute.c 					ZVAL_NULL(orig);
orig             1362 Zend/zend_execute.c 					zval *orig = dim;
orig             1364 Zend/zend_execute.c 					ZVAL_NULL(orig);
orig              348 Zend/zend_ini.c ZEND_API long zend_ini_long(char *name, uint name_length, int orig) /* {{{ */
orig              354 Zend/zend_ini.c 		if (orig && ini_entry->modified) {
orig              365 Zend/zend_ini.c ZEND_API double zend_ini_double(char *name, uint name_length, int orig) /* {{{ */
orig              371 Zend/zend_ini.c 		if (orig && ini_entry->modified) {
orig              382 Zend/zend_ini.c ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) /* {{{ */
orig              392 Zend/zend_ini.c 		if (orig && ini_entry->modified) {
orig              406 Zend/zend_ini.c ZEND_API char *zend_ini_string(char *name, uint name_length, int orig) /* {{{ */
orig              411 Zend/zend_ini.c 	return_value = zend_ini_string_ex(name, name_length, orig, &exists);
orig              102 Zend/zend_ini.h ZEND_API long zend_ini_long(char *name, uint name_length, int orig);
orig              103 Zend/zend_ini.h ZEND_API double zend_ini_double(char *name, uint name_length, int orig);
orig              104 Zend/zend_ini.h ZEND_API char *zend_ini_string(char *name, uint name_length, int orig);
orig              105 Zend/zend_ini.h ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists);
orig               55 ext/date/lib/timelib.c timelib_time* timelib_time_clone(timelib_time *orig)
orig               58 ext/date/lib/timelib.c 	memcpy(tmp, orig, sizeof(timelib_time));
orig               59 ext/date/lib/timelib.c 	if (orig->tz_abbr) {
orig               60 ext/date/lib/timelib.c 		tmp->tz_abbr = timelib_strdup(orig->tz_abbr);
orig               62 ext/date/lib/timelib.c 	if (orig->tz_info) {
orig               63 ext/date/lib/timelib.c 		tmp->tz_info = orig->tz_info;
orig              140 ext/date/lib/timelib.h timelib_time* timelib_time_clone(timelib_time* orig);
orig               72 ext/dom/dom_iterators.c 	ret->orig = NULL;
orig              151 ext/dom/php_dom.h #define convert_to_copy_master(orig, copy, lower_type, upper_type) \
orig              152 ext/dom/php_dom.h 	if (Z_TYPE_P(orig) != IS_##upper_type) { \
orig              153 ext/dom/php_dom.h 		if (Z_REFCOUNT_P(orig) > 1) {        \
orig              154 ext/dom/php_dom.h 			copy = *orig;                    \
orig              156 ext/dom/php_dom.h 			orig = ©                    \
orig              158 ext/dom/php_dom.h 		convert_to_##lower_type(orig);       \
orig              161 ext/dom/php_dom.h #define convert_to_string_copy(orig, copy)  convert_to_copy_master(orig, copy, string, STRING);
orig              162 ext/dom/php_dom.h #define convert_to_long_copy(orig, copy)    convert_to_copy_master(orig, copy, long, LONG);
orig              163 ext/dom/php_dom.h #define convert_to_boolean_copy(orig, copy) convert_to_copy_master(orig, copy, boolean, BOOL);
orig             1612 ext/mbstring/mbstring.c 	zend_function *func, *orig;
orig             1631 ext/mbstring/mbstring.c 					strlen(p->save_func)+1, (void **)&orig) != SUCCESS) {
orig             1635 ext/mbstring/mbstring.c 				if (zend_hash_find(EG(function_table), p->orig_func, strlen(p->orig_func)+1, (void **)&orig) != SUCCESS) {
orig             1639 ext/mbstring/mbstring.c 					zend_hash_add(EG(function_table), p->save_func, strlen(p->save_func)+1, orig, sizeof(zend_function), NULL);
orig             1664 ext/mbstring/mbstring.c 	zend_function *orig;
orig             1690 ext/mbstring/mbstring.c 							   strlen(p->save_func)+1, (void **)&orig) == SUCCESS) {
orig             1692 ext/mbstring/mbstring.c 				zend_hash_update(EG(function_table), p->orig_func, strlen(p->orig_func)+1, orig, sizeof(zend_function), NULL);
orig              996 ext/pgsql/pgsql.c 	int orig;
orig             1015 ext/pgsql/pgsql.c 		orig = PGG(ignore_notices);
orig             1025 ext/pgsql/pgsql.c 		PGG(ignore_notices) = orig;
orig              808 ext/phar/func_interceptors.c #define PharFileFunction(fname, funcnum, orig) \
orig              811 ext/phar/func_interceptors.c 		PHAR_G(orig)(INTERNAL_FUNCTION_PARAM_PASSTHRU); \
orig              820 ext/phar/func_interceptors.c 		phar_file_stat(filename, (php_stat_len) filename_len, funcnum, PHAR_G(orig), INTERNAL_FUNCTION_PARAM_PASSTHRU); \
orig             1058 ext/phar/func_interceptors.c 	if (SUCCESS == zend_hash_find(CG(function_table), #func, sizeof(#func), (void **)&orig)) { \
orig             1059 ext/phar/func_interceptors.c 		PHAR_G(orig_##func) = orig->internal_function.handler; \
orig             1060 ext/phar/func_interceptors.c 		orig->internal_function.handler = phar_##func; \
orig             1065 ext/phar/func_interceptors.c 	zend_function *orig;
orig             1095 ext/phar/func_interceptors.c 	if (PHAR_G(orig_##func) && SUCCESS == zend_hash_find(CG(function_table), #func, sizeof(#func), (void **)&orig)) { \
orig             1096 ext/phar/func_interceptors.c 		orig->internal_function.handler = PHAR_G(orig_##func); \
orig             1102 ext/phar/func_interceptors.c 	zend_function *orig;
orig             3476 ext/soap/php_encoding.c 	xmlNodePtr orig = node;
orig             3494 ext/soap/php_encoding.c 			if (orig != node) {
orig              482 ext/soap/php_http.c 	  php_url *orig;
orig              484 ext/soap/php_http.c 		    (orig = (php_url *) zend_fetch_resource(tmp TSRMLS_CC, -1, "httpurl", NULL, 1, le_url)) != NULL &&
orig              486 ext/soap/php_http.c 		     (((use_ssl && orig->scheme != NULL && strcmp(orig->scheme, "https") == 0) ||
orig              487 ext/soap/php_http.c 		      (!use_ssl && orig->scheme == NULL) ||
orig              488 ext/soap/php_http.c 		      (!use_ssl && strcmp(orig->scheme, "https") != 0)) &&
orig              489 ext/soap/php_http.c 		     strcmp(orig->host, phpurl->host) == 0 &&
orig              490 ext/soap/php_http.c 		     orig->port == phpurl->port))) {
orig              167 ext/spl/spl_array.c static zend_object_value spl_array_object_new_ex(zend_class_entry *class_type, spl_array_object **obj, zval *orig, int clone_orig TSRMLS_DC)
orig              186 ext/spl/spl_array.c 	if (orig) {
orig              187 ext/spl/spl_array.c 		spl_array_object *other = (spl_array_object*)zend_object_store_get_object(orig TSRMLS_CC);
orig              194 ext/spl/spl_array.c 			if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayObject) {
orig              199 ext/spl/spl_array.c 			if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayIterator) {
orig              203 ext/spl/spl_array.c 			intern->array = orig;
orig              367 ext/spl/spl_dllist.c static zend_object_value spl_dllist_object_new_ex(zend_class_entry *class_type, spl_dllist_object **obj, zval *orig, int clone_orig TSRMLS_DC) /* {{{ */
orig              385 ext/spl/spl_dllist.c 	if (orig) {
orig              386 ext/spl/spl_dllist.c 		spl_dllist_object *other = (spl_dllist_object*)zend_object_store_get_object(orig TSRMLS_CC);
orig              223 ext/spl/spl_fixedarray.c static zend_object_value spl_fixedarray_object_new_ex(zend_class_entry *class_type, spl_fixedarray_object **obj, zval *orig, int clone_orig TSRMLS_DC) /* {{{ */
orig              240 ext/spl/spl_fixedarray.c 	if (orig && clone_orig) {
orig              241 ext/spl/spl_fixedarray.c 		spl_fixedarray_object *other = (spl_fixedarray_object*)zend_object_store_get_object(orig TSRMLS_CC);
orig              385 ext/spl/spl_heap.c static zend_object_value spl_heap_object_new_ex(zend_class_entry *class_type, spl_heap_object **obj, zval *orig, int clone_orig TSRMLS_DC) /* {{{ */
orig              403 ext/spl/spl_heap.c 	if (orig) {
orig              404 ext/spl/spl_heap.c 		spl_heap_object *other = (spl_heap_object*)zend_object_store_get_object(orig TSRMLS_CC);
orig              260 ext/spl/spl_observer.c static zend_object_value spl_object_storage_new_ex(zend_class_entry *class_type, spl_SplObjectStorage **obj, zval *orig TSRMLS_DC) /* {{{ */
orig              278 ext/spl/spl_observer.c 	if (orig) {
orig              279 ext/spl/spl_observer.c 		spl_SplObjectStorage *other = (spl_SplObjectStorage*)zend_object_store_get_object(orig TSRMLS_CC);
orig              280 ext/spl/spl_observer.c 		spl_object_storage_addall(intern, orig, other TSRMLS_CC);
orig              175 ext/zip/lib/zip_close.c 	    if ((entry->changes=_zip_dirent_clone(entry->orig)) == NULL) {
orig              152 ext/zip/lib/zip_dirent.c 	if ((ret=_zip_dirent_write(entry->changes ? entry->changes : entry->orig, fp, ZIP_FL_CENTRAL, &za->error)) < 0)
orig              832 ext/zip/lib/zip_dirent.c 	if (za->entry[idx].orig == NULL) {
orig              840 ext/zip/lib/zip_dirent.c 	return za->entry[idx].orig;
orig               42 ext/zip/lib/zip_entry.c     _zip_dirent_free(e->orig);
orig               51 ext/zip/lib/zip_entry.c     e->orig = NULL;
orig              336 ext/zip/lib/zip_extra_field.c     if (e->orig == NULL || e->orig->local_extra_fields_read)
orig              340 ext/zip/lib/zip_extra_field.c     if (fseeko(za->zp, (off_t)(e->orig->offset + 26), SEEK_SET) < 0) {
orig              375 ext/zip/lib/zip_extra_field.c 	e->orig->extra_fields = _zip_ef_merge(e->orig->extra_fields, ef);
orig              378 ext/zip/lib/zip_extra_field.c     e->orig->local_extra_fields_read = 1;
orig              381 ext/zip/lib/zip_extra_field.c 	e->changes->extra_fields = e->orig->extra_fields;
orig              354 ext/zip/lib/zip_extra_field_api.c     if (e->orig) {
orig              360 ext/zip/lib/zip_extra_field_api.c         if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) {
orig              366 ext/zip/lib/zip_extra_field_api.c     if (e->orig && e->orig->extra_fields) {
orig              367 ext/zip/lib/zip_extra_field_api.c 	if ((e->changes->extra_fields=_zip_ef_clone(e->orig->extra_fields, &za->error)) == NULL)
orig               59 ext/zip/lib/zip_file_get_offset.c     offset = za->entry[idx].orig->offset;
orig               96 ext/zip/lib/zip_file_replace.c     if (za->entry[idx].orig != NULL && (za->entry[idx].changes == NULL || (za->entry[idx].changes->changed & ZIP_DIRENT_COMP_METHOD) == 0)) {
orig               98 ext/zip/lib/zip_file_replace.c             if ((za->entry[idx].changes=_zip_dirent_clone(za->entry[idx].orig)) == NULL) {
orig               80 ext/zip/lib/zip_file_set_comment.c     if (e->orig && e->orig->comment)
orig               81 ext/zip/lib/zip_file_set_comment.c 	changed = !_zip_string_equal(e->orig->comment, cstr);
orig               87 ext/zip/lib/zip_file_set_comment.c             if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) {
orig               54 ext/zip/lib/zip_file_set_external_attributes.c     unchanged_opsys = e->orig ? e->orig->version_madeby>>8 : ZIP_OPSYS_DEFAULT;
orig               55 ext/zip/lib/zip_file_set_external_attributes.c     unchanged_attributes = e->orig ? e->orig->ext_attrib : ZIP_EXT_ATTRIB_DEFAULT;
orig               61 ext/zip/lib/zip_file_set_external_attributes.c             if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) {
orig               50 ext/zip/lib/zip_get_num_entries.c 	while (n>0 && za->entry[n-1].orig == NULL)
orig              285 ext/zip/lib/zip_open.c 	if ((cd->entry[i].orig=_zip_dirent_new()) == NULL
orig              286 ext/zip/lib/zip_open.c 	    || (_zip_dirent_read(cd->entry[i].orig, fp, bufp, &left, 0, error)) < 0) {
orig              317 ext/zip/lib/zip_open.c 	max = cd->entry[0].orig->offset;
orig              318 ext/zip/lib/zip_open.c 	min = cd->entry[0].orig->offset;
orig              324 ext/zip/lib/zip_open.c 	if (cd->entry[i].orig->offset < min)
orig              325 ext/zip/lib/zip_open.c 	    min = cd->entry[i].orig->offset;
orig              331 ext/zip/lib/zip_open.c 	j = cd->entry[i].orig->offset + cd->entry[i].orig->comp_size
orig              332 ext/zip/lib/zip_open.c 	    + _zip_string_length(cd->entry[i].orig->filename) + LENTRYSIZE;
orig              340 ext/zip/lib/zip_open.c 	if (fseeko(fp, (off_t)cd->entry[i].orig->offset, SEEK_SET) != 0) {
orig              348 ext/zip/lib/zip_open.c 	if (_zip_headercomp(cd->entry[i].orig, &temp) != 0) {
orig              354 ext/zip/lib/zip_open.c 	cd->entry[i].orig->extra_fields = _zip_ef_merge(cd->entry[i].orig->extra_fields, temp.extra_fields);
orig              355 ext/zip/lib/zip_open.c 	cd->entry[i].orig->local_extra_fields_read = 1;
orig               64 ext/zip/lib/zip_set_file_compression.c     old_method = (e->orig == NULL ? ZIP_CM_DEFAULT : e->orig->comp_method);
orig               79 ext/zip/lib/zip_set_file_compression.c             if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) {
orig               92 ext/zip/lib/zip_set_name.c     if (e->orig)
orig               93 ext/zip/lib/zip_set_name.c 	changed = !_zip_string_equal(e->orig->filename, str);
orig               99 ext/zip/lib/zip_set_name.c             if ((e->changes=_zip_dirent_clone(e->orig)) == NULL) {
orig              373 ext/zip/lib/zipint.h     struct zip_dirent *orig;
orig              110 main/streams/streams.c 	php_stream *orig = enclosed->enclosing_stream;
orig              114 main/streams/streams.c 	return orig;