HomeSort by relevance Sort by last modified time
    Searched refs:df (Results 26 - 50 of 959) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
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_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);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
ChiSquaredDistributionImpl.java 49 * @param df degrees of freedom.
51 public ChiSquaredDistributionImpl(double df) {
52 this(df, new GammaDistributionImpl(df / 2.0, 2.0));
57 * @param df degrees of freedom.
64 public ChiSquaredDistributionImpl(double df, GammaDistribution g) {
67 setDegreesOfFreedomInternal(df);
74 * @param df degrees of freedom.
79 public ChiSquaredDistributionImpl(double df, double inverseCumAccuracy) {
81 gamma = new GammaDistributionImpl(df / 2.0, 2.0)
    [all...]
TDistributionImpl.java 257 * For degrees of freedom parameter df, the mean is
259 * <li>if <code>df &gt; 1</code> then <code>0</code></li>
267 final double df = getDegreesOfFreedom(); local
269 if (df > 1) {
279 * For degrees of freedom parameter df, the variance is
281 * <li>if <code>df &gt; 2</code> then <code>df / (df - 2)</code> </li>
282 * <li>if <code>1 &lt; df &lt;= 2</code> then <code>positive infinity</code></li>
290 final double df = getDegreesOfFreedom() local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
RegressionTest.java 36 DurationFormat df = DurationFormat.getInstance(ul); local
37 String result = df.formatDurationFromNow(500);
50 DurationFormatter df = pfs.newDurationFormatterFactory() local
53 String result = df.formatDurationFromNow(500);
69 DurationFormatter df = pfs.newDurationFormatterFactory() local
72 String result = df.formatDurationFromNow(500);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
RegressionTest.java 33 DurationFormat df = DurationFormat.getInstance(ul); local
34 String result = df.formatDurationFromNow(500);
47 DurationFormatter df = pfs.newDurationFormatterFactory() local
50 String result = df.formatDurationFromNow(500);
66 DurationFormatter df = pfs.newDurationFormatterFactory() local
69 String result = df.formatDurationFromNow(500);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatMiscTests.java 84 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); local
85 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone();
87 logln(df.toLocalizedPattern());
88 String s0 = df.format(d);
92 logln(df.toLocalizedPattern());
93 String s1 = df.format(d);
98 if (!df.equals(dfClone)) {
105 SimpleDateFormat df = new SimpleDateFormat("E hh:mm"); local
106 df.setDateFormatSymbols(symbols);
107 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone()
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatMiscTests.java 81 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); local
82 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone();
84 logln(df.toLocalizedPattern());
85 String s0 = df.format(d);
89 logln(df.toLocalizedPattern());
90 String s1 = df.format(d);
95 if (!df.equals(dfClone)) {
102 SimpleDateFormat df = new SimpleDateFormat("E hh:mm"); local
103 df.setDateFormatSymbols(symbols);
104 SimpleDateFormat dfClone = (SimpleDateFormat) df.clone()
    [all...]
  /external/bart/tests/
test_signal.py 39 df = pd.DataFrame({"A": A, "B": B})
40 trace.add_parsed_event("event", df)
57 df = pd.DataFrame({"A": A, "B": B})
58 trace.add_parsed_event("event", df)
69 df = pd.DataFrame({"A": A, "B": B})
70 trace.event.data_frame = df
85 df = pd.DataFrame({"A": A, "B": B})
86 trace.add_parsed_event("event", df)
97 df = pd.DataFrame({"A": A, "B": B})
98 trace.event.data_frame = df
    [all...]
  /external/tensorflow/tensorflow/python/ops/distributions/
student_t.py 49 This distribution has parameters: degree of freedom `df`, location `loc`,
57 pdf(x; df, mu, sigma) = (1 + y**2 / df)**(-0.5 (df + 1)) / Z
60 Z = abs(sigma) sqrt(df pi) Gamma(0.5 df) / Gamma(0.5 (df + 1))
75 X ~ StudentT(df, loc=0, scale=1)
81 t-distribution std. dev. is `scale sqrt(df / (df - 2))` when `df > 2`
186 def df(self): member in class:StudentT
    [all...]
  /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/
wishart_test.py 45 def wishart_var(df, x):
47 x = np.sqrt(df) * np.asarray(x)
57 df = 4
58 w = distributions.WishartCholesky(df, chol(scale))
59 # sp.stats.wishart(df=4, scale=make_pd(1., 2)).entropy()
62 w = distributions.WishartCholesky(df=1, scale=[[1.]])
63 # sp.stats.wishart(df=1,scale=1).entropy()
72 - 0.5 * (w.df - w.dimension - 1.) * w.mean_log_det()
73 + 0.5 * w.df * w.dimension).eval()
75 w = distributions.WishartCholesky(df=4
    [all...]
chi2_test.py 34 df = constant_op.constant([2.0] * batch_size, dtype=np.float64)
37 chi2 = chi2_lib.Chi2(df=df)
51 df = constant_op.constant([2.0] * batch_size, dtype=np.float64)
55 chi2 = chi2_lib.Chi2(df=df)
66 chi2 = chi2_lib.Chi2(df=df_v)
74 chi2 = chi2_lib.Chi2(df=df_v)
82 chi2 = chi2_lib.Chi2(df=df_v)
89 chi2 = chi2_lib.Chi2WithAbsDf(df=df_v
    [all...]
  /external/icu/icu4c/source/test/intltest/
miscdtfm.cpp 168 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status); local
171 format0 = df->format(d, format0);
173 localizedPattern0 = df->toLocalizedPattern(localizedPattern0, status);
174 failure(status, "df->toLocalizedPattern");
177 format1 = df->format(d, format1);
183 localizedPattern1 = df->toLocalizedPattern(localizedPattern1, status);
184 failure(status, "df->toLocalizedPattern");
190 delete df;
200 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status);
202 df->setDateFormatSymbols(*symbols)
260 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status); local
    [all...]
dcfmapts.cpp 449 DecimalFormat *df = new DecimalFormat(status); local
455 df->adoptCurrencyPluralInfo(cpi);
457 df->getCurrencyPluralInfo();
459 df->setCurrencyPluralInfo(cpi1);
461 delete df;
611 LocalPointer<DecimalFormat> df(new DecimalFormat("###", status), status);
616 FixedDecimal fd = df->getFixedDecimal(44, status);
622 fd = df->getFixedDecimal(-44, status);
628 df.adoptInsteadAndCheckErrorCode(new DecimalFormat("###.00##", status), status);
630 fd = df->getFixedDecimal(123.456, status)
    [all...]
  /external/trappy/tests/
test_idle.py 38 df = trappy.FTrace(normalize_time=False).cpu_idle.data_frame
67 assert_series_equal(df["state"], exp_states, check_exact=True)
68 assert_series_equal(df["cpu_id"], exp_cpus, check_exact=True)
  /external/lisa/libs/utils/analysis/
irq_analysis.py 47 df = self._dfg_trace_event('irq_handler_entry')
49 if len(df) == 0:
54 irqs = df[df.irq == irq]
56 irqs = df[df.name == irq]
tasks_analysis.py 67 df = self._dfg_trace_event('sched_load_avg_task')
68 big_tasks_events = df[df.util_avg > min_utilization]
116 df = self._dfg_trace_event('sched_wakeup')
119 wkp_tasks_stats = df.groupby('pid').describe(include=['object'])
126 if not len(df):
131 len(df), len(wkp_tasks_stats))
159 df = self._dfg_trace_event('sched_switch')
162 df = df[df.next_prio <= min_prio
    [all...]
  /external/ltp/testcases/kernel/sched/sched_stress/
sched_stress.sh 32 export RAWDEV=`df / | grep dev | awk {'print $1'}`
  /external/skia/tests/
DrawFilterTest.cpp 33 sk_sp<TestFilter> df(new TestFilter);
38 canvas->setDrawFilter(df.get());
  /external/skqp/tests/
DrawFilterTest.cpp 33 sk_sp<TestFilter> df(new TestFilter);
38 canvas->setDrawFilter(df.get());
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/rx/
shll.d 21 20: fd df 00 shll #31, r0, r0
22 23: fd df 0f shll #31, r0, r15
23 26: fd df f0 shll #31, r15, r0
24 29: fd df ff shll #31, r15, r15
  /external/tensorflow/tensorflow/python/kernel_tests/distributions/
student_t_test.py 52 df = constant_op.constant([3.] * batch_size)
59 student = student_t.StudentT(df, loc=mu, scale=-sigma)
81 df = constant_op.constant([[1.5, 7.2]] * batch_size)
89 student = student_t.StudentT(df, loc=mu, scale=sigma)
109 df = constant_op.constant([3.] * batch_size)
116 student = student_t.StudentT(df, loc=mu, scale=sigma)
141 student = student_t.StudentT(df=df_v, loc=mu_v, scale=sigma_v)
161 df = constant_op.constant(4.)
168 student = student_t.StudentT(df=df, loc=mu, scale=sigma
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
aes-intel.d 16 [ ]*[a-f0-9]+: 66 0f 38 df 01 aesdeclast xmm0,XMMWORD PTR \[ecx\]
17 [ ]*[a-f0-9]+: 66 0f 38 df c1 aesdeclast xmm0,xmm1
20 [ ]*[a-f0-9]+: 66 0f 3a df 01 08 aeskeygenassist xmm0,XMMWORD PTR \[ecx\],0x8
21 [ ]*[a-f0-9]+: 66 0f 3a df c1 08 aeskeygenassist xmm0,xmm1,0x8
28 [ ]*[a-f0-9]+: 66 0f 38 df 01 aesdeclast xmm0,XMMWORD PTR \[ecx\]
29 [ ]*[a-f0-9]+: 66 0f 38 df c1 aesdeclast xmm0,xmm1
32 [ ]*[a-f0-9]+: 66 0f 3a df 01 08 aeskeygenassist xmm0,XMMWORD PTR \[ecx\],0x8
33 [ ]*[a-f0-9]+: 66 0f 3a df c1 08 aeskeygenassist xmm0,xmm1,0x8
aes.d 15 [ ]*[a-f0-9]+: 66 0f 38 df 01 aesdeclast \(%ecx\),%xmm0
16 [ ]*[a-f0-9]+: 66 0f 38 df c1 aesdeclast %xmm1,%xmm0
19 [ ]*[a-f0-9]+: 66 0f 3a df 01 08 aeskeygenassist \$0x8,\(%ecx\),%xmm0
20 [ ]*[a-f0-9]+: 66 0f 3a df c1 08 aeskeygenassist \$0x8,%xmm1,%xmm0
27 [ ]*[a-f0-9]+: 66 0f 38 df 01 aesdeclast \(%ecx\),%xmm0
28 [ ]*[a-f0-9]+: 66 0f 38 df c1 aesdeclast %xmm1,%xmm0
31 [ ]*[a-f0-9]+: 66 0f 3a df 01 08 aeskeygenassist \$0x8,\(%ecx\),%xmm0
32 [ ]*[a-f0-9]+: 66 0f 3a df c1 08 aeskeygenassist \$0x8,%xmm1,%xmm0
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ilp32/
x86-64-aes-intel.d 17 [ ]*[a-f0-9]+: 66 0f 38 df 01 aesdeclast xmm0,XMMWORD PTR \[rcx\]
18 [ ]*[a-f0-9]+: 66 0f 38 df c1 aesdeclast xmm0,xmm1
21 [ ]*[a-f0-9]+: 66 0f 3a df 01 08 aeskeygenassist xmm0,XMMWORD PTR \[rcx\],0x8
22 [ ]*[a-f0-9]+: 66 0f 3a df c1 08 aeskeygenassist xmm0,xmm1,0x8
29 [ ]*[a-f0-9]+: 66 0f 38 df 01 aesdeclast xmm0,XMMWORD PTR \[rcx\]
30 [ ]*[a-f0-9]+: 66 0f 38 df c1 aesdeclast xmm0,xmm1
33 [ ]*[a-f0-9]+: 66 0f 3a df 01 08 aeskeygenassist xmm0,XMMWORD PTR \[rcx\],0x8
34 [ ]*[a-f0-9]+: 66 0f 3a df c1 08 aeskeygenassist xmm0,xmm1,0x8

Completed in 461 milliseconds

12 3 4 5 6 7 8 91011>>