Searched defs:jd (Results 1 - 13 of 13) sorted by relevance

/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse_copy.pass.cpp53 int jd[sd] = {-1}; local
54 r = std::reverse_copy(InIter(id), InIter(id+sd), OutIter(jd));
55 assert(base(r) == jd+sd);
56 assert(jd[0] == 3);
57 assert(jd[1] == 2);
58 assert(jd[2] == 1);
59 assert(jd[3] == 0);
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
H A Dunique_copy.pass.cpp53 int jd[sd] = {-1}; local
54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd));
55 assert(base(r) == jd + 2);
56 assert(jd[0] == 0);
57 assert(jd[1] == 1);
H A Dunique_copy_pred.pass.cpp70 int jd[sd] = {-1}; local
72 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd), count_equal());
73 assert(base(r) == jd + 2);
74 assert(jd[0] == 0);
75 assert(jd[1] == 1);
/external/boringssl/src/crypto/
H A Dtime_support.c93 static void julian_to_date(long jd, int *y, int *m, int *d) { argument
94 long L = jd + 68569;
/external/icu/icu4c/source/test/intltest/
H A Dastrotst.cpp404 double jd = astro->getJulianDay() - 2447891.5; local
406 if (jd == exp) {
408 logln(d3->format(cal3->getTime(status),s) + " => " + jd);
411 errln("FAIL: " + d3->format(cal3->getTime(status), s) + " => " + jd +
H A Dcaltest.cpp2067 int32_t jd; local
2074 jd = cal.get(UCAL_JULIAN_DAY, status);
2075 if(jd != kEpochStartAsJulianDay) {
2076 errln("Wanted JD of %d at time=0, [epoch 1970] but got %d\n", kEpochStartAsJulianDay, jd);
2078 logln("Wanted JD of %d at time=0, [epoch 1970], got %d\n", kEpochStartAsJulianDay, jd);
2086 errln("Wanted time of 0 at jd=%d, got %.1lf\n", kEpochStartAsJulianDay, epochTime);
2088 logln("Wanted time of 0 at jd=%d, got %.1lf\n", kEpochStartAsJulianDay, epochTime);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DIndianCalendar.java457 double jd = IndianToJD(year ,imonth, 1);
459 return (int)jd;
472 double start, jd;
486 jd = start + (date - 1);
488 jd = start + leapMonth;
491 jd += m * 31;
494 jd += m * 30;
496 jd += date - 1;
499 return jd;
524 * This routine converts a julian day (jd) t
527 jdToGregorian(double jd) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dindiancal.cpp158 * @param jd The Julian Day
160 static int32_t* jdToGregorian(double jd, int32_t gregorianDate[3]) { argument
163 wjd = uprv_floor(jd - 0.5) + 0.5;
197 double start, jd; local
212 jd = start + (date - 1);
214 jd = start + leapMonth;
222 jd += m * 31;
226 jd += m * 30;
228 jd += date - 1;
231 return jd;
255 double jd = IndianToJD(eyear ,imonth, 1); local
[all...]
H A Dchnsecal.cpp805 int32_t jd = newMoon + kEpochStartAsJulianDay - 1 + dom; local
810 set(UCAL_JULIAN_DAY, jd-1);
819 set(UCAL_JULIAN_DAY, jd);
822 set(UCAL_JULIAN_DAY, jd);
H A Dgregocal.cpp71 // ms=+183882168921600000 jd=7f000000 December 20, 5828963 AD
72 // ms=-184303902528000000 jd=81000000 September 20, 5838270 BC
375 fprintf(stderr, "%s:%d: jd%d- (greg's %d)- [cut=%d]\n",
475 int32_t jd = Calendar::handleComputeJulianDay(bestField); local
479 jd >= fCutoverJulianDay) {
487 //if ((fIsGregorian==TRUE) != (jd >= fCutoverJulianDay)) { /* cutoverJulianDay)) { */
488 if ((fIsGregorian==TRUE) != (jd >= fCutoverJulianDay)) { /* cutoverJulianDay)) { */
490 fprintf(stderr, "%s:%d: jd [invert] %d\n",
491 __FILE__, __LINE__, jd);
494 jd
[all...]
/external/sonivox/jet_tools/JetCreator/
H A DJetDefs.py559 jd = JetDefs() variable
560 jd.CreateHelpIniFile()
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 424 milliseconds