Searched defs:df (Results 1 - 25 of 82) sorted by relevance

1234

/external/v8/test/intl/date-format/
H A Dtimezone.js30 var df = Intl.DateTimeFormat(); variable
31 assertEquals(getDefaultTimeZone(), df.resolvedOptions().timeZone);
33 df = Intl.DateTimeFormat(undefined, {timeZone: 'UtC'});
34 assertEquals('UTC', df.resolvedOptions().timeZone);
36 df = Intl.DateTimeFormat(undefined, {timeZone: 'gmt'});
37 assertEquals('UTC', df.resolvedOptions().timeZone);
39 df = Intl.DateTimeFormat(undefined, {timeZone: 'America/Los_Angeles'});
40 assertEquals('America/Los_Angeles', df.resolvedOptions().timeZone);
42 df = Intl.DateTimeFormat(undefined, {timeZone: 'Europe/Belgrade'});
43 assertEquals('Europe/Belgrade', df
[all...]
/external/clang/test/CodeGenCXX/
H A Dcfi-vcall.cpp51 void df(D *d) { function
59 df(&d);
/external/libcxx/test/std/utilities/time/time.point/time.point.cast/
H A Dtime_point_cast.pass.cpp24 test(const FromDuration& df, const ToDuration& d) argument
30 FromTimePoint f(df);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DYMDDateFormatter.java24 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/eigen/test/
H A DsparseLM.cpp83 int df(const VectorType& uv, JacobianType& fjac) function in struct:sparseGaussianTest
H A DdenseLM.cpp78 int df(const VectorType& uv, JacobianType& fjac) function in struct:DenseLM
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h25 * 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/
H A De_acos.c67 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/
H A Dmath.c253 * 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/valgrind/none/tests/x86/
H A Dbug152818-x86.c101 int df; local
131 df = (idx >= (sizeof(lens)/sizeof(lens[0]))/2);
136 if (df)
152 if (df)
172 if (df)
188 if (df)
208 printf ("DF = %d, count = %2d ", df, len);
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DChiSquaredDistributionImpl.java49 * @param df degrees of freedom.
51 public ChiSquaredDistributionImpl(double df) { argument
52 this(df, new GammaDistributionImpl(df / 2.0, 2.0));
57 * @param df degrees of freedom.
64 public ChiSquaredDistributionImpl(double df, GammaDistribution g) { argument
67 setDegreesOfFreedomInternal(df);
74 * @param df degrees of freedom.
79 public ChiSquaredDistributionImpl(double df, double inverseCumAccuracy) { argument
81 gamma = new GammaDistributionImpl(df / 2.
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
H A DTTestImpl.java898 protected double df(double v1, double v2, double n1, double n2) { method in class:TTestImpl
990 degreesOfFreedom = df(v1, v2, n1, n2);
/external/icu/icu4c/source/test/intltest/
H A Dmiscdtfm.cpp166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status); local
169 format0 = df->format(d, format0);
171 localizedPattern0 = df->toLocalizedPattern(localizedPattern0, status);
172 failure(status, "df->toLocalizedPattern");
175 format1 = df->format(d, format1);
181 localizedPattern1 = df->toLocalizedPattern(localizedPattern1, status);
182 failure(status, "df->toLocalizedPattern");
188 delete df;
198 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status);
200 df
258 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status); local
[all...]
H A Ddtfmapts.cpp81 DateFormat *df = DateFormat::createDateTimeInstance(DateFormat::kMedium, DateFormat::kMedium, Locale(LOCALES[i])); local
82 if (df == NULL){
86 delete df;
H A Dnmfmtrt.cpp185 DecimalFormat *df = dynamic_cast<DecimalFormat *>(fmt); local
186 if(df != NULL)
190 test(fmt, randomDouble(DBL_MAX/2.0) / df->getMultiplier());
192 test(fmt, randomDouble(1e75) / df->getMultiplier());
194 test(fmt, randomDouble(1e65) / df->getMultiplier());
233 DecimalFormat *df = dynamic_cast<DecimalFormat *>(fmt); local
234 if(df != NULL) {
235 df->setRoundingIncrement(0.0);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DScientificNumberFormatter.java58 * @param df The DecimalFormat must be configured for scientific
59 * notation. Caller may safely change df after this call as this method
67 DecimalFormat df) {
68 return getInstance(df, SUPER_SCRIPT);
93 * @param df The DecimalFormat must be configured for scientific
94 * notation. Caller may safely change df after this call as this method
104 DecimalFormat df,
108 df, new MarkupStyle(beginMarkup, endMarkup));
66 getSuperscriptInstance( DecimalFormat df) argument
103 getMarkupInstance( DecimalFormat df, String beginMarkup, String endMarkup) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp66 static void *df = 0; local
70 df = llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(
73 if (df)
74 ((void (*)(void *))df)(p);
/external/speex/libspeex/
H A Dfilterbank.c57 spx_word32_t df; local
62 df = DIV32(SHL32(sampling,15),MULT16_16(2,len));
82 curr_freq = EXTRACT16(MULT16_32_P15(i,df));
/external/iptables/include/linux/netfilter/
H A Dxt_osf.h70 __u8 ttl, df; member in struct:xt_osf_user_finger
/external/jemalloc/test/include/test/
H A Dmath.h5 double pt_chi2(double p, double df, double ln_gamma_df_2);
209 * with df degrees of freedom, where ln_gamma_df_2 is ln_gamma(df/2.0), compute
222 pt_chi2(double p, double df, double ln_gamma_df_2) argument
228 assert(df > 0.0);
233 xx = 0.5 * df;
236 if (df < -1.24 * log(p)) {
242 if (df > 0.32) {
248 p1 = 0.222222 / df;
249 ch = df * po
[all...]
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_osf.h69 __u8 ttl, df; member in struct:xt_osf_user_finger
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_images.c403 VGfloat *df = (VGfloat*)temp; local
455 pipe_get_tile_rgba(pipe, transfer, sx, y, width, 1, df);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DRandomDataImpl.java577 * @param df the degrees of freedom of the ChiSquare distribution
578 * @return random value sampled from the ChiSquare(df) distribution
582 public double nextChiSquare(double df) throws MathException { argument
583 return nextInversionDeviate(new ChiSquaredDistributionImpl(df));
652 * @param df the degrees of freedom of the T distribution
653 * @return random value from the T(df) distribution
657 public double nextT(double df) throws MathException { argument
658 return nextInversionDeviate(new TDistributionImpl(df));
/external/eigen/unsupported/test/
H A Dlevenberg_marquardt.cpp42 int df(const VectorXd &x, MatrixXd &fjac) const function in struct:lmder_functor
255 int df(const VectorXd &b, MatrixXd &fjac) function in struct:chwirut2_functor
339 int df(const VectorXd &b, MatrixXd &fjac) function in struct:misra1a_functor
421 int df(const VectorXd &b, MatrixXd &fjac) function in struct:hahn1_functor
515 int df(const VectorXd &b, MatrixXd &fjac) function in struct:misra1d_functor
590 int df(const VectorXd &b, MatrixXd &fjac) function in struct:lanczos1_functor
678 int df(const VectorXd &b, MatrixXd &fjac) function in struct:rat42_functor
755 int df(const VectorXd &b, MatrixXd &fjac) function in struct:MGH10_functor
834 int df(const VectorXd &b, MatrixXd &fjac) function in struct:BoxBOD_functor
913 int df(cons function in struct:MGH17_functor
1001 int df(const VectorXd &b, MatrixXd &fjac) function in struct:MGH09_functor
1086 int df(const VectorXd &b, MatrixXd &fjac) function in struct:Bennett5_functor
1170 int df(const VectorXd &b, MatrixXd &fjac) function in struct:thurber_functor
1266 int df(const VectorXd &b, MatrixXd &fjac) function in struct:rat43_functor
1354 int df(const VectorXd &b, MatrixXd &fjac) function in struct:eckerle4_functor
[all...]
/external/icu/icu4c/source/i18n/
H A Dreldtfmt.cpp90 DateFormat * df; local
94 df = createDateInstance((EStyle)baseDateStyle, locale);
95 fDateTimeFormatter=dynamic_cast<SimpleDateFormat *>(df);
102 df = createTimeInstance((EStyle)timeStyle, locale);
103 SimpleDateFormat *sdf = dynamic_cast<SimpleDateFormat *>(df);
111 df = createTimeInstance((EStyle)timeStyle, locale);
112 fDateTimeFormatter=dynamic_cast<SimpleDateFormat *>(df);

Completed in 1007 milliseconds

1234