Searched defs:x0 (Results 1 - 25 of 424) sorted by path

1234567891011>>

/external/aac/libFDK/src/
H A Dmdct.cpp345 FIXP_DBL x0, x1; local
347 cplxMult(&x1, &x0, *pCurr++, - *pOvl--, pWindow[i]);
348 *pOut0 = IMDCT_SCALE_DBL(x0);
H A Dqmf.cpp496 FIXP_QMF x0, x1, y0, y1; local
498 x0 = timeIn[i] >> 1;
503 rSubband[i] = x0 - y0;
505 iSubband[i] = x0 + y0;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DBrentSolver.java291 * @param x0 old approximation for the root
296 * @param x2 bracket point (must be set to x0 if no bracket point is
304 double x0, double y0,
309 double delta = x1 - x0;
316 x0 = x1;
318 x2 = x0;
346 // the equality test (x0 == x2) is intentional,
349 if (x0 == x2) {
357 p = r3 * (dx * r1 * (r1 - r2) - (x1 - x0) * (r2 - 1.0));
378 x0
303 solve(final UnivariateRealFunction f, double x0, double y0, double x1, double y1, double x2, double y2) argument
[all...]
H A DUnivariateRealSolverUtils.java46 * @param x0 the lower bound for the interval.
54 public static double solve(UnivariateRealFunction f, double x0, double x1) argument
57 return LazyHolder.FACTORY.newDefaultSolver().solve(f, x0, x1);
65 * @param x0 the lower bound for the interval
75 public static double solve(UnivariateRealFunction f, double x0, double x1, argument
82 return solver.solve(f, x0, x1);
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DAbstractDistribution.java45 * to this distribution, this method returns P(x0 ≤ X ≤ x1).
49 * P(x0 &le; X &le; x1) = P(X &le; x1) - P(X &le; x0) </p>
51 * @param x0 the (inclusive) lower bound
54 * will take a value between <code>x0</code> and <code>x1</code>,
58 * @throws IllegalArgumentException if <code>x0 > x1</code>
60 public double cumulativeProbability(double x0, double x1) argument
62 if (x0 > x1) {
65 x0, x1);
67 return cumulativeProbability(x1) - cumulativeProbability(x0);
[all...]
H A DAbstractIntegerDistribution.java75 * to this distribution, this method returns P(x0 &le; X &le; x1).
77 * @param x0 the (inclusive) lower bound
80 * will take a value between <code>x0</code> and <code>x1</code>,
84 * @throws IllegalArgumentException if <code>x0 > x1</code>
87 public double cumulativeProbability(double x0, double x1) argument
89 if (x0 > x1) {
91 LocalizedFormats.LOWER_ENDPOINT_ABOVE_UPPER_ENDPOINT, x0, x1);
93 if (FastMath.floor(x0) < x0) {
94 return cumulativeProbability(((int) FastMath.floor(x0))
145 cumulativeProbability(int x0, int x1) argument
[all...]
H A DBetaDistributionImpl.java211 public double cumulativeProbability(double x0, double x1) throws MathException { argument
212 return cumulativeProbability(x1) - cumulativeProbability(x0);
H A DDistribution.java43 * to this distribution, this method returns P(x0 &le; X &le; x1).
45 * @param x0 the (inclusive) lower bound
48 * will take a value between <code>x0</code> and <code>x1</code>,
52 * @throws IllegalArgumentException if <code>x0 > x1</code>
54 double cumulativeProbability(double x0, double x1) throws MathException; argument
H A DHypergeometricDistributionImpl.java334 * For this distribution, X, this method returns P(x0 &le; X &le; x1). This
336 * x0, x0 + 1, x0 + 2, ..., x1, in the order directed by dx.
338 * @param x0 the inclusive, lower bound
340 * @param dx the direction of summation. 1 indicates summing from x0 to x1.
341 * 0 indicates summing from x1 to x0.
345 * @return P(x0 &le; X &le; x1).
347 private double innerCumulativeProbability(int x0, int x1, int dx, int n, argument
349 double ret = probability(n, m, k, x0);
[all...]
H A DIntegerDistribution.java51 * For this distribution, X, this method returns P(x0 &le; X &le; x1).
52 * @param x0 the inclusive, lower bound
57 * @throws IllegalArgumentException if x0 > x1
59 double cumulativeProbability(int x0, int x1) throws MathException; argument
/external/boringssl/src/crypto/cipher_extra/
H A De_rc2.c129 uint16_t x0, x1, x2, x3, t; local
133 x0 = (uint16_t)l & 0xffff;
144 t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff;
145 x0 = (t << 1) | (t >> 15);
146 t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff;
148 t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff;
150 t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff;
159 x0 += p1[x3 & 0x3f];
160 x1 += p1[x0
173 uint16_t x0, x1, x2, x3, t; local
[all...]
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305_arm.c44 uint32_t x0 = r->v[0]; local
57 x1 += x0 >> 26;
58 x0 &= 0x3ffffff;
65 x0 += 5 * (x4 >> 26);
69 y0 = x0 + 5;
81 y0 ^= x0;
93 y0 ^= x0;
107 uint32_t x0 = x->v[0]; local
113 x1 += x0 >> 26;
114 x0
[all...]
/external/caliper/lib/
H A Dgson-2.2.2.jar ... .Type, com.google.gson.JsonSerializationContext) Object x0 java.lang.reflect.Type x1 com. ...
H A Djava-allocation-instrumenter-2.0.jar ... .lang.Object, java.lang.Object) Object x0 Object x1 public volatile synthetic java.lang.Object ...
H A Djersey-client-1.11.jar ... async.FutureListener) java.util.concurrent.Callable x0 protected void done () Throwable t } com/sun/jersey/api/client ...
H A Djersey-core-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/jersey-module-version META- ...
H A Djsr311-api-1.1.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ ...
/external/clang/test/ASTMerge/Inputs/
H A Dstruct1.c10 struct S0 x0; variable in typeref:struct:S0
H A Dstruct2.c7 struct S0 x0; variable in typeref:struct:S0
H A Dvar1.c1 int *x0; variable
H A Dvar2.c1 int *x0; variable
/external/clang/test/Analysis/
H A Ddead-stores.c553 int x0 = (getInt(), 0); // expected-warning{{unused variable 'x0'}} local
/external/clang/test/CXX/temp/temp.decls/temp.mem/
H A Dp5.cpp75 void test_X0(X0 x0, const X0 &x0c) { argument
76 x0.operator const int*(); // expected-note{{in instantiation of function template specialization}}
77 x0.operator float *();

Completed in 1132 milliseconds

1234567891011>>