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

1 2 3 4 5 6 7 8

  /external/tcpdump/
gmt2local.c 65 dir = loc->tm_year - gmt->tm_year;
  /bionic/libc/bionic/
time64.c 207 Year orig_year = (Year)date->tm_year;
264 assert(tm->tm_mday <= days_in_month[IS_LEAP(tm->tm_year)][tm->tm_mon]);
273 assert(tm->tm_yday <= length_of_year[IS_LEAP(tm->tm_year)]);
378 dest->tm_year = (Year)src->tm_year;
410 dest->tm_year = (int)src->tm_year;
495 Year year = input_date->tm_year + 1900;
504 date.tm_year = safe_year(year) - 1900;
509 time += seconds_between_years(year, (Year)(safe_date.tm_year + 1900))
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_time.c 46 time_ptr->year = tm_t->tm_year + 1900;
  /frameworks/native/libs/utils/tests/
ZipFileRO_test.cpp 45 EXPECT_EQ(2011, t.tm_year + 1900)
  /system/extras/tests/bionic/libc/common/
test_strftime_2039.c 14 tm.tm_year = 2039 - 1900;
  /frameworks/av/media/mtp/
MtpUtils.cpp 59 tm.tm_year = year - 1900;
75 tm.tm_year + 1900,
  /frameworks/rs/scriptc/
rs_time.rsh 42 * tm_year - Years since 1900.
55 int tm_year; ///< year
  /prebuilts/sdk/renderscript/include/
rs_time.rsh 42 * tm_year - Years since 1900.
55 int tm_year; ///< year
  /frameworks/base/core/jni/
Time.cpp 16 t.t.tm_year+1900, t.t.tm_mon+1, t.t.tm_mday,
28 t.tm_year = 0;
50 COMPARE_FIELD(tm_year);
118 n = t.tm_year+1900;
164 t.tm_year+1900, t.tm_mon+1, t.tm_mday, t.tm_hour, t.tm_min,
  /external/openssl/crypto/asn1/
a_utctm.c 215 if((ts->tm_year < 50) || (ts->tm_year >= 150))
232 BIO_snprintf(p,len,"%02d%02d%02d%02d%02d%02dZ",ts->tm_year%100,
269 return_cmp(year, tm->tm_year);
291 tm.tm_year=g2(s->data);
292 if(tm.tm_year < 50)
293 tm.tm_year+=100;
a_time.c 123 if((ts->tm_year >= 50) && (ts->tm_year < 150))
  /external/openssl/crypto/
o_time.c 207 result->tm_year = time_values.year - 1900;
265 time_year = tm->tm_year + 1900;
286 tm->tm_year = time_year - 1900;
355 if ((tm1.tm_year == tm2.tm_year) &&
364 tm2.tm_mday, tm2.tm_mon + 1, tm2.tm_year + 1900,
367 tm1.tm_mday, tm1.tm_mon + 1, tm1.tm_year + 1900,
  /external/stlport/test/unit/
time_facets_test.cpp 68 CPPUNIT_ASSERT( other.tm_year == xmas.tm_year );
93 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
106 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
151 CPPUNIT_ASSERT( other.tm_year == xmas.tm_year );
176 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
time_facets_test.cpp 68 CPPUNIT_ASSERT( other.tm_year == xmas.tm_year );
93 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
106 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
151 CPPUNIT_ASSERT( other.tm_year == xmas.tm_year );
176 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
    [all...]
  /ndk/tests/device/test-stlport/unit/
time_facets_test.cpp 68 CPPUNIT_ASSERT( other.tm_year == xmas.tm_year );
93 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
106 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
151 CPPUNIT_ASSERT( other.tm_year == xmas.tm_year );
176 CPPUNIT_ASSERT( yet_more.tm_year == xmas.tm_year );
    [all...]
  /external/chromium/base/third_party/nspr/
prtime.cc 107 st.wYear = exploded->tm_year;
134 gregorian_date.year = exploded->tm_year;
160 exp_tm.tm_year = exploded->tm_year - 1900;
167 !(exploded->tm_year == 1969 && exploded->tm_month == 11 &&
173 if (exploded->tm_year >= 1970)
289 time->tm_year--;
290 if (IsLeapYear(time->tm_year))
295 time->tm_mday = nDays[IsLeapYear(time->tm_year)][time->tm_month];
306 nDays[IsLeapYear(time->tm_year)][time->tm_month])
    [all...]
prtime.h 131 PRInt32 tm_month; /* months past tm_year (0-11, Jan = 0) */
132 PRInt16 tm_year; /* absolute year, AD (note that we do not member in struct:PRExplodedTime
179 * - tm_month and tm_year: because the number of days in a month and
  /external/ppp/pppd/plugins/radius/
util.c 51 tm->tm_year = atoi (&valstr[7]) - 1900;
  /external/skia/src/ports/
SkTime_Unix.cpp 24 dt->fYear = tstruct->tm_year;
  /external/webkit/Source/WebCore/loader/
FTPDirectoryParser.cpp 49 result.tm_year = date.year() - 1900;
200 result.modifiedTime.tm_year += 1900;
574 result.modifiedTime.tm_year = atoi(p+4); // NSPR wants year as XXXX
715 result.modifiedTime.tm_year = atoi(p+0) - 1900;
724 result.modifiedTime.tm_year = atoi((p+pos)-2);
725 if (result.modifiedTime.tm_year < 70)
726 result.modifiedTime.tm_year += 100;
878 result.modifiedTime.tm_year = atoi(tokens[0]+6);
882 if (result.modifiedTime.tm_year < 80)
883 result.modifiedTime.tm_year += 2000
    [all...]
  /external/bluetooth/glib/glib/
gtimer.c 273 retval = (tm->tm_year - 70) * 365;
274 retval += (tm->tm_year - 68) / 4;
277 if (tm->tm_year % 4 == 0 && tm->tm_mon < 2)
326 tm.tm_year = val - 1900;
340 tm.tm_year = val / 10000 - 1900;
443 tm->tm_year + 1900,
457 tm->tm_year + 1900,
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp 229 now.tm_year += 1900;
231 if (fileTime.tm_year == now.tm_year) {
240 wasLastDayOfMonth(fileTime.tm_year, fileTime.tm_mon, fileTime.tm_mday))
244 if (fileTime.tm_year == now.tm_year - 1 && fileTime.tm_mon == 12 && fileTime.tm_mday == 31 && now.tm_mon == 1 && now.tm_mday == 1)
255 if (fileTime.tm_year > -1)
256 dateString = makeString(months[month], ' ', String::number(fileTime.tm_mday), ", ", String::number(fileTime.tm_year));
258 dateString = makeString(months[month], ' ', String::number(fileTime.tm_mday), ", ", String::number(now.tm_year));
  /bionic/libc/kernel/common/linux/
rtc.h 29 int tm_year; member in struct:rtc_time
  /bionic/libc/tzcode/
strptime.c 365 tm->tm_year = i - TM_YEAR_BASE;
399 tm->tm_year = cr->relyear + 2000 - TM_YEAR_BASE;
401 tm->tm_year = cr->relyear + 1900 - TM_YEAR_BASE;
403 tm->tm_year = cr->relyear + cr->century - TM_YEAR_BASE;
  /development/ndk/platforms/android-3/include/linux/
rtc.h 21 int tm_year; member in struct:rtc_time

Completed in 683 milliseconds

1 2 3 4 5 6 7 8