HomeSort by relevance Sort by last modified time
    Searched refs:gmt (Results 1 - 18 of 18) sorted by null

  /external/tcpdump/
gmt2local.c 42 * Returns the difference between gmt and local time in seconds.
49 register struct tm *gmt, *loc; local
54 gmt = &sgmt;
55 *gmt = *gmtime(&t);
57 dt = (loc->tm_hour - gmt->tm_hour) * 60 * 60 +
58 (loc->tm_min - gmt->tm_min) * 60;
61 * If the year or julian day is different, we span 00:00 GMT
65 dir = loc->tm_year - gmt->tm_year;
67 dir = loc->tm_yday - gmt->tm_yday;
  /external/chromium/base/third_party/nspr/
prtime.h 77 * to midnight (00:00:00), January 1, 1970 Greenwich Mean Time (GMT).
78 * (GMT is also known as Coordinated Universal Time, UTC.)
91 * Time zone and daylight saving time corrections applied to GMT to
96 PRInt32 tp_gmt_offset; /* the offset from GMT in seconds */
106 * offsets from the GMT must be saved in the 'tm_params' field so that
107 * all the information is available to reconstruct GMT.
148 * given the current time in GMT. The input argument gmt should
149 * point to a PRExplodedTime that is in GMT, i.e., whose
152 * For any time zone other than GMT, the computation is intended t
195 NSPR_API(PRTimeParameters) PR_GMTParameters(const PRExplodedTime *gmt); variable
    [all...]
prtime.cc 141 // Compute |absolute_time| in seconds, correct for gmt and dst
327 /* Get back to GMT */
333 /* Now normalize GMT */
439 PR_GMTParameters(const PRExplodedTime *gmt)
442 #pragma unused (gmt)
464 * GMT: Greenwich Mean Time
486 * (microseconds after "1-Jan-1970 00:00:00 GMT").
493 * 14 Apr 89 03:20 GMT
495 * Fri, 17 Mar 89 4:01 GMT
510 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE)
    [all...]
  /external/libxslt/libxslt/
extra.c 178 time_t gmt, lmt; local
233 gmt = mktime(&gmt_tm);
240 local_tm = localtime(&gmt);
246 lmt = gmt - timezone;
  /external/openssl/crypto/asn1/
t_x509.c 389 int gmt=0; local
399 if (v[i-1] == 'Z') gmt=1;
425 mon[M-1],d,h,m,s,f_len,f,y,(gmt)?" GMT":"") <= 0)
437 int gmt=0; local
445 if (v[i-1] == 'Z') gmt=1;
461 mon[M-1],d,h,m,s,y+1900,(gmt)?" GMT":"") <= 0)
  /libcore/luni/src/main/native/
libcore_icu_TimeZones.cpp 103 // instead of GMT offsets (a pity, because it's a bit faster than this code).
138 // ICU doesn't have names for the UTC zones; it just says "GMT+00:00" for both
183 UnicodeString gmt("GMT", 3, US_INV);
186 // Did we get a GMT offset instead of an abbreviation?
187 if (row.shortStd.length() > 3 && row.shortStd.startsWith(gmt)) {
  /packages/apps/Calendar/src/com/android/calendar/
TimezoneAdapter.java 63 /** The actual offset of this timezone from GMT in milliseconds */
70 * A one-line representation of this timezone, including both GMT offset
71 * and display name, e.g. "(GMT-7:00) Pacific Time"
102 name.append("GMT");
283 TimeZone gmt = TimeZone.getTimeZone("GMT"); local
288 // since TimeZone.getTimeZone actually returns a clone of GMT
291 if (!newTz.equals(gmt)) {
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 349 "UT", "GMT", "EST", "EDT", "CST", "CDT", "MST", "MDT", "PST", "PDT",
384 unsigned long gmt, non_gmt = mktime(&tval); local
393 gmt = non_gmt + (zone[0] == '+') ? offset : -offset;
399 gmt = non_gmt + kTimeZoneOffsets[zindex] * 60 * 60;
403 tm *tm_for_timezone = localtime((time_t *)&gmt);
404 *seconds = gmt + tm_for_timezone->tm_gmtoff;
406 *seconds = gmt - timezone;
  /bionic/libc/tzcode/
localtime.c 136 static const char gmt[] = "GMT"; variable
185 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
341 tzname[0] = tzname[1] = gmt;
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 73 static const char gmt[] = "GMT"; variable
118 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
273 tzname[0] = tzname[1] = gmt;
1146 if (tzload(gmt, sp, TRUE) != 0)
1147 (void) tzparse(gmt, sp, TRUE);
1214 (void) strcpy(lclptr->chars, gmt);
    [all...]
zdump.c 929 struct tm gmt; local
953 gmt = *gmtime(&t);
954 offset = delta(&loc, &gmt);
  /external/icu4c/test/intltest/
dtfmrgts.cpp 477 if (!strFullDate.endsWith(UnicodeString("GMT-05:00")))
478 errln("Fail: Want GMT-05:00");
938 TimeZone *gmt = timeZone->clone(); local
940 gmt->setRawOffset(0);
946 format->setTimeZone(*gmt);
975 delete gmt;
1004 * SimpleDateFormat won't parse "GMT"
1013 UDate d = fmt->parse("01/22/92 04:52:00 GMT", p0);
1016 errln("Fail: failed to parse 'GMT'");
    [all...]
dtfmttst.cpp 171 if (fmtOffset.startsWith("GMT") && fmtOffset.length() != 3)
401 "Wednesday", "0225", "0002", "0033", "0003", "PM", "0002", "0002", "Pacific Daylight Time", "1997", "Wednesday", "1997", "2450674", "52452513", "GMT-07:00",
3107 TimeZone *gmt = TimeZone::createTimeZone("Etc\/GMT"); local
    [all...]
  /system/core/libcutils/
tztime.c 106 static const char gmt[] = "GMT"; variable
151 char chars[BIGGEST(BIGGEST(TZ_MAX_CHARS + 1, sizeof gmt),
1166 if (tzload(gmt, sp, TRUE) != 0)
1167 (void) tzparse(gmt, sp, TRUE);
    [all...]
  /external/v8/src/
date.js 261 var gmt = ' GMT' + ((sign == 1) ? '+' : '-') +
263 return gmt + ' (' + timezone + ')';
701 // Return UTC string of the form: Sat, 31 Jan 1970 23:00:00 GMT
706 + TimeStringUTC(this) + ' GMT';
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1050 milliseconds