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

  /external/srtp/crypto/replay/
ut_sim.c 57 ut_init(ut_connection *utc) {
59 utc->index = 0;
62 utc->buffer[i] = i;
64 qsort(utc->buffer, UT_BUF, sizeof(uint32_t), ut_compar);
66 utc->index = UT_BUF - 1;
70 ut_next_index(ut_connection *utc) {
73 tmp = utc->buffer[0];
74 utc->index++;
75 utc->buffer[0] = utc->index
91 ut_connection utc; local
    [all...]
  /external/srtp/include/
ut_sim.h 69 ut_init(ut_connection *utc);
77 ut_next_index(ut_connection *utc);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.4.3.js 26 var TITLE = "Date.UTC( year, month, date, hours, minutes, seconds, ms )";
41 function utc( year, month, date, hours, minutes, seconds, ms ) { function
93 addNewTestCase( Date.UTC( 1970,0,1,0,0,0,0),
94 "Date.UTC( 1970,0,1,0,0,0,0)",
95 utc(1970,0,1,0,0,0,0) );
97 addNewTestCase( Date.UTC( 1969,11,31,23,59,59,999),
98 "Date.UTC( 1969,11,31,23,59,59,999)",
99 utc(1969,11,31,23,59,59,999) );
100 addNewTestCase( Date.UTC( 1972,1,29,23,59,59,999),
101 "Date.UTC( 1972,1,29,23,59,59,999)"
    [all...]
  /external/srtp/test/
roc_driver.c 87 ut_connection utc; local
124 ut_init(&utc);
129 ircvd = ut_next_index(&utc);
replay_driver.c 133 ut_connection utc; local
162 ut_init(&utc);
165 ircvd = ut_next_index(&utc);
rdbx_driver.c 215 ut_connection utc; local
269 ut_init(&utc);
273 ircvd = ut_next_index(&utc);
  /external/webkit/Source/JavaScriptCore/wtf/
CurrentTime.cpp 186 double utc = syncLowResUTCTime + highResElapsed; local
196 if (utc < lastUTCTime && (lastUTCTime - utc) < backwardTimeLimit)
198 lastUTCTime = utc;
199 return utc / 1000.0;
274 // GETUTCSECONDS returns the number of seconds since 1980/01/06 00:00:00 UTC,
278 // since 1970/01/01 00:00:00 UTC.
  /libcore/luni/src/main/native/
libcore_icu_TimeZones.cpp 81 static UnicodeString etcUtc("Etc/UTC", 7, US_INV);
86 static UnicodeString utc("UTC", 3, US_INV);
91 id == uct || id == utc || id == universal || id == zulu;
115 UnicodeString utc("UTC", 3, US_INV);
138 // ICU doesn't have names for the UTC zones; it just says "GMT+00:00" for both
139 // long and short names. We don't want this. The best we can do is use "UTC"
142 row.longStd = row.shortStd = row.longDst = row.shortDst = utc;
144 usedAbbreviations[utc] = &utc
    [all...]
  /external/icu4c/test/intltest/
tzoffloc.cpp 121 TimeZone* utc = TimeZone::createTimeZone("UTC"); local
122 Calendar* cal = Calendar::createInstance(*utc, status);
198 df.setTimeZone(*utc);
325 delete utc;
tzbdtest.cpp 291 TimeZone* utc = TimeZone::createTimeZone("UTC"); local
292 Calendar* utccal = Calendar::createInstance(utc, status);
507 zone = TimeZone::createTimeZone("UTC"); // updated 12/3/99 aliu
utxttest.cpp 445 UChar32 utc; // code point from UText local
449 utc = utext_next32(targetUT);
450 if (utc < 0) {
454 TEST_ASSERT(utc == usc);
521 UChar32 utc; // code point from UText local
526 utc = utext_next32(targetUT);
527 if (utc < 0) {
531 TEST_ASSERT(utc == usc);
    [all...]
caltest.cpp 814 int32_t utc = ((cal->get(UCAL_HOUR_OF_DAY, status) * 60 + local
820 if (utc != expected) errln(UnicodeString("FAIL: Discrepancy of ") + (utc - expected) +
821 " millis = " + ((utc - expected) / 1000 / 60 / 60.0) + " hr");
    [all...]
tzrulets.cpp 2112 TimeZone *utc = TimeZone::createTimeZone("Etc\/GMT"); local
2316 UDate utc = cal->getTime(status); local
    [all...]
  /external/qemu/telephony/
android_modem.c 1888 struct tm utc, local; local
    [all...]
  /external/v8/src/
platform-cygwin.cc 105 time_t utc = time(NULL); local
106 ASSERT(utc != -1);
107 struct tm* loc = localtime(&utc);
110 return static_cast<double>((mktime(loc) - utc) * msPerSecond -
platform-solaris.cc 130 time_t utc = time(NULL); local
131 ASSERT(utc != -1);
132 struct tm* loc = localtime(&utc);
134 return static_cast<double>((mktime(loc) - utc) * msPerSecond);
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java     [all...]
  /external/icu4c/test/cintltst/
ccaltst.c 1126 int32_t offset,utc, expected; local
1353 static const UChar utc[] = { 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0 }; \/* "Etc\/GMT" *\/ local
    [all...]
utmstest.c 443 static const UChar utc[] = { 0x45, 0x74, 0x63, 0x2f, 0x47, 0x4d, 0x54, 0 }; /* "Etc/GMT" */ local
455 cal = ucal_open(utc, -1, "", UCAL_GREGORIAN, &errorCode);
458 log_data_err("ucal_open(UTC/proleptic Gregorian) failed: %s - (Are you missing data?)\n", u_errorName(errorCode));
  /external/v8/test/mjsunit/
date.js 168 // LayoutTests/fast/js/script-tests/date-utc-timeclip.js:
170 assertEquals(8639999999999999, Date.UTC(275760, 8, 12, 23, 59, 59, 999));
171 assertEquals(8640000000000000, Date.UTC(275760, 8, 13));
172 assertTrue(isNaN(Date.UTC(275760, 8, 13, 0, 0, 0, 1)));
173 assertTrue(isNaN(Date.UTC(275760, 8, 14)));
175 assertEquals(Date.UTC(-271821, 3, 20, 0, 0, 0, 1), -8639999999999999);
176 assertEquals(Date.UTC(-271821, 3, 20), -8640000000000000);
177 assertTrue(isNaN(Date.UTC(-271821, 3, 19, 23, 59, 59, 999)));
178 assertTrue(isNaN(Date.UTC(-271821, 3, 19)));
  /development/tools/emulator/system/gps/
gps_qemu.c 496 struct tm utc; local
514 gmtime_r( (time_t*) &r->fix.timestamp, &utc );
515 p += snprintf(p, end-p, " time=%s", asctime( &utc ) );
  /sdk/emulator/gps/
gps_qemu.c 496 struct tm utc; local
514 gmtime_r( (time_t*) &r->fix.timestamp, &utc );
515 p += snprintf(p, end-p, " time=%s", asctime( &utc ) );
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 392 CalendarContract.Instances.BEGIN + " INTEGER," + // UTC millis
393 CalendarContract.Instances.END + " INTEGER," + // UTC millis
442 CalendarContract.CalendarAlerts.BEGIN + " INTEGER NOT NULL," + // UTC millis
443 CalendarContract.CalendarAlerts.END + " INTEGER NOT NULL," + // UTC millis
444 CalendarContract.CalendarAlerts.ALARM_TIME + " INTEGER NOT NULL," + // UTC millis
445 // UTC millis
447 // UTC millis
449 // UTC millis
631 // sync time in UTC
2369 final String utc = Time.TIMEZONE_UTC; local
    [all...]
  /prebuilt/common/ant/
ant.jar 
  /external/jdiff/
xerces.jar 

Completed in 810 milliseconds