Lines Matching refs:utc_offset
2251 timelib_sll utc_offset = dateobj->time->z; in date_object_get_properties() local
2254 utc_offset > 0 ? '-' : '+', in date_object_get_properties()
2255 abs(utc_offset / 60), in date_object_get_properties()
2256 abs((utc_offset % 60))); in date_object_get_properties()
2314 new_obj->tzi.utc_offset = old_obj->tzi.utc_offset; in date_object_clone_timezone()
2317 new_obj->tzi.z.utc_offset = old_obj->tzi.z.utc_offset; in date_object_clone_timezone()
2354 tzobj->tzi.utc_offset > 0 ? '-' : '+', in date_object_get_properties_timezone()
2355 abs(tzobj->tzi.utc_offset / 60), in date_object_get_properties_timezone()
2356 abs((tzobj->tzi.utc_offset % 60))); in date_object_get_properties_timezone()
2609 new_offset = tzobj->tzi.utc_offset; in php_date_initialize()
2612 new_offset = tzobj->tzi.z.utc_offset; in php_date_initialize()
3308 tzobj->tzi.utc_offset = t->z; in set_timezone_from_timelib_time()
3311 tzobj->tzi.z.utc_offset = t->z; in set_timezone_from_timelib_time()
3354 timelib_set_timezone_from_offset(dateobj->time, tzobj->tzi.utc_offset); in php_date_timezone_set()
3826 timelib_sll utc_offset = tzobj->tzi.utc_offset; in PHP_FUNCTION() local
3829 utc_offset > 0 ? '-' : '+', in PHP_FUNCTION()
3830 abs(utc_offset / 60), in PHP_FUNCTION()
3831 abs((utc_offset % 60))); in PHP_FUNCTION()
3892 RETURN_LONG(tzobj->tzi.utc_offset * -60); in PHP_FUNCTION()
3895 RETURN_LONG((tzobj->tzi.z.utc_offset - (tzobj->tzi.z.dst*60)) * -60); in PHP_FUNCTION()