Lines Matching refs:utc_offset
1863 int utc_offset = dateobj->time->z; in date_object_get_properties_for() local
1866 utc_offset < 0 ? '-' : '+', in date_object_get_properties_for()
1867 abs(utc_offset / 3600), in date_object_get_properties_for()
1868 abs(((utc_offset % 3600) / 60))); in date_object_get_properties_for()
1911 new_obj->tzi.utc_offset = old_obj->tzi.utc_offset; in date_object_clone_timezone()
1914 new_obj->tzi.z.utc_offset = old_obj->tzi.z.utc_offset; in date_object_clone_timezone()
1944 return o1->tzi.utc_offset == o2->tzi.utc_offset ? 0 : 1; in date_object_compare_timezone()
1960 timelib_sll utc_offset = tzobj->tzi.utc_offset; in php_timezone_to_string() local
1961 int seconds = utc_offset % 60; in php_timezone_to_string()
1975 utc_offset < 0 ? '-' : '+', in php_timezone_to_string()
1976 abs((int)(utc_offset / 3600)), in php_timezone_to_string()
1977 abs((int)(utc_offset % 3600) / 60), in php_timezone_to_string()
2293 new_offset = tzobj->tzi.utc_offset; in php_date_initialize()
2296 new_offset = tzobj->tzi.z.utc_offset; in php_date_initialize()
3092 tzobj->tzi.utc_offset = t->z; in set_timezone_from_timelib_time()
3095 tzobj->tzi.z.utc_offset = t->z; in set_timezone_from_timelib_time()
3136 timelib_set_timezone_from_offset(dateobj->time, tzobj->tzi.utc_offset); in php_date_timezone_set()
3660 RETURN_LONG(tzobj->tzi.utc_offset); in PHP_FUNCTION()
3663 RETURN_LONG(tzobj->tzi.z.utc_offset + (tzobj->tzi.z.dst * 3600)); in PHP_FUNCTION()