Lines Matching refs:z
1050 offset->offset = (t->z - (t->dst * 60)) * -60; in date_format()
1056 offset->offset = (t->z) * -60; in date_format()
1259 offset->offset = (t->z - (t->dst * 60)) * -60; in php_idate()
1265 offset->offset = (t->z - (t->dst * 60)) * -60; in php_idate()
2156 timelib_sll utc_offset = dateobj->time->z; in date_object_get_properties()
2223 new_obj->tzi.z.utc_offset = old_obj->tzi.z.utc_offset; in date_object_clone_timezone()
2224 new_obj->tzi.z.dst = old_obj->tzi.z.dst; in date_object_clone_timezone()
2225 new_obj->tzi.z.abbr = old_obj->tzi.z.abbr; in date_object_clone_timezone()
2369 free(intern->tzi.z.abbr); in date_object_free_storage_timezone()
2470 new_offset = tzobj->tzi.z.utc_offset; in php_date_initialize()
2471 new_dst = tzobj->tzi.z.dst; in php_date_initialize()
2472 new_abbr = strdup(tzobj->tzi.z.abbr); in php_date_initialize()
2489 now->z = new_offset; in php_date_initialize()
2492 now->z = new_offset; in php_date_initialize()
2658 static void zval_from_error_container(zval *z, timelib_error_container *error) in zval_from_error_container() argument
2663 add_assoc_long(z, "warning_count", error->warning_count); in zval_from_error_container()
2669 add_assoc_zval(z, "warnings", element); in zval_from_error_container()
2671 add_assoc_long(z, "error_count", error->error_count); in zval_from_error_container()
2677 add_assoc_zval(z, "errors", element); in zval_from_error_container()
2728 PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(zone, z); in php_date_do_return_parsed_time()
2740 PHP_DATE_PARSE_DATE_SET_TIME_ELEMENT(zone, z); in php_date_do_return_parsed_time()
3008 tzobj->tzi.utc_offset = dateobj->time->z; in PHP_FUNCTION()
3011 tzobj->tzi.z.utc_offset = dateobj->time->z; in PHP_FUNCTION()
3012 tzobj->tzi.z.dst = dateobj->time->dst; in PHP_FUNCTION()
3013 tzobj->tzi.z.abbr = strdup(dateobj->time->tz_abbr); in PHP_FUNCTION()
3071 RETVAL_LONG(dateobj->time->z * -60); in PHP_FUNCTION()
3074 RETVAL_LONG((dateobj->time->z - (60 * dateobj->time->dst)) * -60); in PHP_FUNCTION()
3334 RETURN_STRING(tzobj->tzi.z.abbr, 1); in PHP_FUNCTION()
3392 RETURN_LONG((tzobj->tzi.z.utc_offset - (tzobj->tzi.z.dst*60)) * -60); in PHP_FUNCTION()