Home
last modified time | relevance | path

Searched refs:tz_offset (Results 1 – 7 of 7) sorted by relevance

/third_party/benchmark/src/
Dtimers.cc206 char tz_offset[41]; in LocalDateTimeString() local
218 tz_len = std::strftime(tz_offset, sizeof(tz_offset), "%z", timeinfo_p); in LocalDateTimeString()
225 offset_minutes = ::strtol(tz_offset, NULL, 10); in LocalDateTimeString()
232 ::snprintf(tz_offset, sizeof(tz_offset), "%c%02li:%02li", in LocalDateTimeString()
246 strncpy(tz_offset, "-00:00", kTzOffsetLen + 1); in LocalDateTimeString()
255 std::strncat(storage, tz_offset, sizeof(storage) - timestamp_len - 1); in LocalDateTimeString()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dos_win32.c67 os_time_t tz_offset; in os_mktime() local
91 tz_offset = t2 - t1; in os_mktime()
93 tz_offset = 0; in os_mktime()
95 tz_offset = 0; in os_mktime()
97 *t = (os_time_t) t_local - tz_offset; in os_mktime()
Dos_unix.c133 os_time_t tz_offset; in os_mktime() local
157 tz_offset = t2 - t1; in os_mktime()
159 tz_offset = 0; in os_mktime()
161 tz_offset = 0; in os_mktime()
163 *t = (os_time_t) t_local - tz_offset; in os_mktime()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dos_win32.c67 os_time_t tz_offset; in os_mktime() local
91 tz_offset = t2 - t1; in os_mktime()
93 tz_offset = 0; in os_mktime()
95 tz_offset = 0; in os_mktime()
97 *t = (os_time_t) t_local - tz_offset; in os_mktime()
Dos_unix.c139 os_time_t tz_offset; in os_mktime() local
163 tz_offset = t2 - t1; in os_mktime()
165 tz_offset = 0; in os_mktime()
167 tz_offset = 0; in os_mktime()
169 *t = (os_time_t) t_local - tz_offset; in os_mktime()
/third_party/glib/glib/
Dgdatetime.c1345 parse_iso8601_timezone (const gchar *text, gsize length, gssize *tz_offset) in parse_iso8601_timezone() argument
1354 *tz_offset = length - 1; in parse_iso8601_timezone()
1393 *tz_offset = i; in parse_iso8601_timezone()
1413 gssize tz_offset = -1; in parse_iso8601_time() local
1416 *tz = parse_iso8601_timezone (text, length, &tz_offset); in parse_iso8601_time()
1417 if (tz_offset >= 0) in parse_iso8601_time()
1418 length = tz_offset; in parse_iso8601_time()
/third_party/gstreamer/gstreamer/tools/
Dgst-launch.c404 gdouble tz_offset = gst_date_time_get_time_zone_offset (dt); in print_tag() local
407 if (tz_offset != 0.0) { in print_tag()
409 (tz_offset > 0.0) ? "+" : "", tz_offset); in print_tag()