/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_acosl.c | 47 long double z,p,q,r,w,s,c,df; local 79 df = u.e; 80 c = (z-df*df)/(s+df); 85 return 2.0*(df+w);
|
e_acosf.c | 37 float z,p,q,r,w,s,c,df; local 67 df = s; 68 GET_FLOAT_WORD(idf,df); 69 SET_FLOAT_WORD(df,idf&0xfffff000); 70 c = (z-df*df)/(s+df); 75 return (float)2.0*(df+w);
|
e_acos.c | 67 double z,p,q,r,w,s,c,df; local 98 df = s; 99 SET_LOW_WORD(df,0); 100 c = (z-df*df)/(s+df); 105 return 2.0*(df+w);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/ |
YMDDateFormatter.java | 26 private SimpleDateFormat df; // cache field in class:YMDDateFormatter 55 this.df = new SimpleDateFormat("yyyy/mm/dd", locale); 56 this.df.setTimeZone(timeZone); 73 // if (df == null) { 78 return df.format(date);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/ |
RegressionTest.java | 34 DurationFormat df = DurationFormat.getInstance(ul); local 35 String result = df.formatDurationFromNow(500); 48 DurationFormatter df = pfs.newDurationFormatterFactory() local 51 String result = df.formatDurationFromNow(500); 67 DurationFormatter df = pfs.newDurationFormatterFactory() local 70 String result = df.formatDurationFromNow(500);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
YMDDateFormatter.java | 24 private SimpleDateFormat df; // cache field in class:YMDDateFormatter 53 this.df = new SimpleDateFormat("yyyy/mm/dd", locale); 54 this.df.setTimeZone(timeZone); 71 // if (df == null) { 76 return df.format(date);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
RegressionTest.java | 30 DurationFormat df = DurationFormat.getInstance(ul); local 31 String result = df.formatDurationFromNow(500); 44 DurationFormatter df = pfs.newDurationFormatterFactory() local 47 String result = df.formatDurationFromNow(500); 63 DurationFormatter df = pfs.newDurationFormatterFactory() local 66 String result = df.formatDurationFromNow(500);
|
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/ |
BitmapDrawableDupe.java | 63 DecimalFormat df = new DecimalFormat("#.##"); local 75 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
ParseExceptionTest.java | 30 DateFormat df = DateFormat.getInstance(); local 31 df.parse("HelloWorld"); 43 DateFormat df = DateFormat.getInstance(); local 44 df.parse("1999HelloWorld");
|
DecimalFormatTest.java | 48 DecimalFormat df = new DecimalFormat(); local 49 df.setDecimalFormatSymbols(dfs); 50 df.format(Double.NaN); 339 DecimalFormat df = new DecimalFormat(); local 341 Number nb = df.parse("" + Long.MIN_VALUE, pos); 347 df = new DecimalFormat(); 349 nb = df.parse("" + Long.MAX_VALUE, pos); 356 df = new DecimalFormat(); 358 nb = df.parse("invalid", pos); 658 DecimalFormat df = new DecimalFormat() local 664 DecimalFormat df = new DecimalFormat(); local 670 DecimalFormat df = new DecimalFormat(); local 676 DecimalFormat df = new DecimalFormat(); local 1013 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local 1030 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local 1059 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local 1284 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local 1338 DecimalFormat df = new DecimalFormat("###0.##"); local 1348 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local 1362 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local 1517 DecimalFormat df = new DecimalFormat("#.#", dfs); local 1679 DecimalFormat df = new DecimalFormat("#0.#", dfs); local 1706 DecimalFormat df = (DecimalFormat) NumberFormat.getInstance(Locale.ENGLISH); local 1716 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(new Locale("ko", "KR")); local 1740 DecimalFormat df = new DecimalFormat("###0.##"); local 1753 DecimalFormat df = new DecimalFormat("###0.##"); local 1762 DecimalFormat df = new DecimalFormat("###0.##"); local 1856 DecimalFormat df = new DecimalFormat("###0.##"); local 1874 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.US)); local 1883 DecimalFormat df = ((DecimalFormat) NumberFormat.getCurrencyInstance(locale)); local 1901 DecimalFormat df = new DecimalFormat("###0.##", new DecimalFormatSymbols(Locale.ENGLISH)); local 1916 DecimalFormat df = null; local 2035 DecimalFormat df = new DecimalFormat(); local [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
DateFormatMiscTests.java | 80 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); local 81 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone(); 83 logln(df.toLocalizedPattern()); 84 String s0 = df.format(d); 88 logln(df.toLocalizedPattern()); 89 String s1 = df.format(d); 94 if (!df.equals(dfClone)) { 101 SimpleDateFormat df = new SimpleDateFormat("E hh:mm"); local 102 df.setDateFormatSymbols(symbols); 103 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone() [all...] |
IntlTestDecimalFormatSymbolsC.java | 138 DecimalFormat df = new DecimalFormat(pattern, sym); local 141 buffer = df.format(value, buffer, pos);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
DateFormatMiscTests.java | 76 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); local 77 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone(); 79 logln(df.toLocalizedPattern()); 80 String s0 = df.format(d); 84 logln(df.toLocalizedPattern()); 85 String s1 = df.format(d); 90 if (!df.equals(dfClone)) { 97 SimpleDateFormat df = new SimpleDateFormat("E hh:mm"); local 98 df.setDateFormatSymbols(symbols); 99 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone() [all...] |
IntlTestDecimalFormatSymbolsC.java | 134 DecimalFormat df = new DecimalFormat(pattern, sym); local 137 buffer = df.format(value, buffer, pos);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
ISO8601Converter.java | 314 DecimalFormat df = new DecimalFormat("0000", new DecimalFormatSymbols(Locale.ENGLISH)); local 315 buffer.append(df.format(dateTime.getYear())); 322 df.applyPattern("'-'00"); 323 buffer.append(df.format(dateTime.getMonth())); 330 buffer.append(df.format(dateTime.getDay())); 341 df.applyPattern("00"); 342 buffer.append(df.format(dateTime.getHour())); 344 buffer.append(df.format(dateTime.getMinute())); 351 df.applyPattern(":00.#########"); 352 buffer.append(df.format(seconds)) [all...] |
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
DecimalFormatTest.java | 23 DecimalFormat df = new DecimalFormat("#,#0.00"); local 27 testEHCS(df, df2, dfn); 41 DecimalFormat df = new DecimalFormat(); local 42 assertEquals("9,223,372,036,854,775,807", df.format(lmax)); 49 DecimalFormat df = new DecimalFormat("#,##0.000"); local 50 assertEquals("23.330", df.format(dsmall)); 58 DecimalFormat df = new DecimalFormat("#,##0.000", sym); local 59 assertEquals("23,330", df.format(dsmall)); 67 DecimalFormat df = new DecimalFormat("#,##0.000", sym); local 68 assertEquals(sym, df.getDecimalFormatSymbols()) 75 DecimalFormat df = new DecimalFormat(); local 84 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local 92 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local 101 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local 109 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local 118 DecimalFormat df = new DecimalFormat("+#,##0.#**;-#,##0.#~~"); local 126 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local 135 DecimalFormat df = new DecimalFormat("+#,##0.#**;-#,##0.#~~"); local 143 DecimalFormat df = new DecimalFormat("+#,##0.#;-#,##0.#"); local 152 DecimalFormat df = new DecimalFormat("%000"); local 161 DecimalFormat df = new DecimalFormat("%000"); local 171 DecimalFormat df = new DecimalFormat("#,#0.#"); local 179 DecimalFormat df = new DecimalFormat("#,##0.##"); local 189 DecimalFormat df = new DecimalFormat("#.#"); local 201 DecimalFormat df = new DecimalFormat("#.#"); local 212 DecimalFormat df = new DecimalFormat("#,##0.##"); local 220 DecimalFormat df = new DecimalFormat("#,##0.##", new DecimalFormatSymbols(Locale.FRANCE)); local 229 DecimalFormat df = new DecimalFormat("#,##0.##"); local 238 DecimalFormat df = new DecimalFormat("#,##0.##", new DecimalFormatSymbols(Locale.FRANCE)); local [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
DecimalFormatTest.java | 32 DecimalFormat df = new DecimalFormat("0E0"); local 33 assertEquals("1E4", df.format(12345.)); 35 DecimalFormatSymbols dfs = df.getDecimalFormatSymbols(); 37 df.setDecimalFormatSymbols(dfs); 38 assertEquals("1-useless-api-4", df.format(12345.)); 42 DecimalFormat df = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local 43 df.setMaximumFractionDigits(0); 44 df.setRoundingMode(RoundingMode.HALF_UP); 45 assertEquals("-0", df.format(-0.2)); 46 df.setMaximumFractionDigits(1) 123 DecimalFormat df = (DecimalFormat) NumberFormat.getInstance(); local 163 DecimalFormat df = (DecimalFormat)NumberFormat.getInstance(); local 171 DecimalFormat df = (DecimalFormat)NumberFormat.getIntegerInstance(locale); local 197 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(Locale.US); local 205 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(Locale.US); local 288 DecimalFormat df = new DecimalFormat("00"); local [all...] |
/cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/ |
StorageDeviceInfo.java | 65 Process df = new ProcessBuilder("df").start(); local 66 Scanner scanner = new Scanner(df.getInputStream());
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
TTestImpl.java | 898 protected double df(double v1, double v2, double n1, double n2) { method in class:TTestImpl [all...] |
/external/eigen/test/ |
denseLM.cpp | 78 int df(const VectorType& uv, JacobianType& fjac) function in struct:DenseLM
|
sparseLM.cpp | 83 int df(const VectorType& uv, JacobianType& fjac) function in struct:sparseGaussianTest
|
/external/eigen/unsupported/Eigen/src/NumericalDiff/ |
NumericalDiff.h | 25 * This class allows you to add a method df() to your functor, which will 28 * for the derivative, you should rather implement df() by yourself. 64 int df(const InputType& _x, JacobianType &jac) const function in class:Eigen::NumericalDiff
|
/external/fdlibm/ |
e_acos.c | 67 double z,p,q,r,w,s,c,df; local 96 df = s; 97 __LO(df) = 0; 98 c = (z-df*df)/(s+df); 103 return 2.0*(df+w);
|
/external/jemalloc/test/unit/ |
math.c | 253 * df={0.1, 1.1, 10.1, 100.1, 1000.1}). 294 double df = pt_chi2_df[i]; local 295 double ln_gamma_df = ln_gamma(df * 0.5); 298 assert_true(double_eq_rel(pt_chi2(p, df, ln_gamma_df),
|
/external/speex/libspeex/ |
filterbank.c | 57 spx_word32_t df; local 62 df = DIV32(SHL32(sampling,15),MULT16_16(2,len)); 82 curr_freq = EXTRACT16(MULT16_32_P15(i,df));
|