Searched defs:julian (Results 1 - 6 of 6) sorted by relevance

/external/icu4c/test/intltest/
H A Dcalcasts.h8 * conversion between julian-day to fields and vice versa.
28 double julian; // Julian Date member in struct:CalendarCaseTest::TestCase
/external/bluetooth/glib/glib/
H A Dgdate.h103 guint julian_days : 32; /* julian days representation - we use a
109 guint julian : 1; /* julian is valid */ member in struct:_GDate
/external/icu4c/i18n/
H A Dgregoimp.cpp89 double julian = 365 * y + ClockMath::floorDivide(y, 4) + (JULIAN_1_CE - 3) + // Julian cal local
93 return julian - JULIAN_1970_CE; // JD => epoch day
H A Dgregoimp.h100 #define kEarliestViableMillis -185331720384000000.0 // minimum representable by julian day -1e17
102 #define kLatestViableMillis 185753453990400000.0 // max representable by julian day +1e17
228 * @param julian the given Julian day number.
232 static inline double julianDayToMillis(int32_t julian);
279 inline double Grego::julianDayToMillis(int32_t julian) argument
281 return (julian - kEpochStartAsJulianDay) * kOneDay;
H A Dgregocal.cpp477 if((bestField == UCAL_WEEK_OF_YEAR) && // if we are doing WOY calculations, we are counting relative to Jan 1 *julian*
709 * Compute the julian day number of the day BEFORE the first day of
748 // * from 0..6 of the given julian day.
759 // * Compute the DOY using the WEEK_OF_YEAR field and the julian day
794 GregorianCalendar::julianDayToMillis(double julian) argument
796 return (UDate) ((julian - kEpochStartAsJulianDay) * (double) kOneDay);
H A Dcalendar.cpp1273 uint8_t Calendar::julianDayToDayOfWeek(double julian) argument
1275 // If julian is negative, then julian%7 will be negative, so we adjust
1277 int8_t dayOfWeek = (int8_t) uprv_fmod(julian + 1, 7);

Completed in 102 milliseconds