/external/skia/src/gpu/ |
D | gr_unittests.cpp | 147 GrPath square; in test_convex() 148 square.moveTo(0, 0); in test_convex() 149 square.lineTo(1, 0); in test_convex() 150 square.lineTo(1, 1); in test_convex() 151 square.lineTo(0, 1); in test_convex() 152 square.close(); in test_convex() 154 testIter.reset(square); in test_convex() 159 square.moveTo(0, 0); in test_convex() 160 square.lineTo(0, 0); in test_convex() 161 square.lineTo(0, 0); in test_convex() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
D | DrawErrorUnderline.h | 55 double square = height / heightSquares; in drawErrorUnderline() local 56 double halfSquare = 0.5 * square; in drawErrorUnderline() 58 double unitWidth = (heightSquares - 1.0) * square; in drawErrorUnderline() 80 cairo_line_to(cr, right, top + square); // C in drawErrorUnderline()
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
D | p1.cpp | 98 constexpr int square(int x); // expected-note {{declared here}} 108 …: x(square(a)), y(square(a)) // expected-note {{undefined function 'square' cannot be used in a co… in pixel() 113 constexpr int square(int x) { in square() function
|
/external/v8/test/mjsunit/ |
D | keyed-call-generic.js | 49 Number.prototype.square = function() { return this * this; } method in Number 50 Number.prototype.power4 = function() { return this.square().square(); }
|
/external/libvpx/vp8/encoder/x86/ |
D | variance_impl_mmx.asm | 112 pmaddwd mm0, mm0 ; square and accumulate 113 pmaddwd mm2, mm2 ; square and accumulate 136 pmaddwd mm0, mm0 ; square and accumulate 137 pmaddwd mm2, mm2 ; square and accumulate 159 pmaddwd mm0, mm0 ; square and accumulate 160 pmaddwd mm2, mm2 ; square and accumulate 182 pmaddwd mm0, mm0 ; square and accumulate 183 pmaddwd mm2, mm2 ; square and accumulate 205 pmaddwd mm0, mm0 ; square and accumulate 206 pmaddwd mm2, mm2 ; square and accumulate [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/ |
D | ECPoint.java | 268 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x); in add() 292 … ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO)); in twice() 294 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO)); in twice() 495 … = (ECFieldElement.F2m)lambda.square().add(lambda).add(this.x).add(x2).add(this.curve.getA()); in addSimple() 554 = (ECFieldElement.F2m)lambda.square().add(lambda). in twice() 559 = (ECFieldElement.F2m)this.x.square().add( in twice()
|
D | ECCurve.java | 98 ECFieldElement alpha = x.multiply(x.square().add(a)).add(b); in decodePoint() 529 yp = yp.square(); in decompressPoint() 535 b.multiply(xp.square().invert())); in decompressPoint() 588 ECFieldElement w2 = w.square(); in solveQuadradicEquation() 589 z = z.square().add(w2.multiply(t)); in solveQuadradicEquation() 596 gamma = z.square().add(z); in solveQuadradicEquation()
|
D | ECFieldElement.java | 18 public abstract ECFieldElement square(); in square() method in ECFieldElement 95 public ECFieldElement square() in square() method in ECFieldElement.Fp 125 return z.square().equals(this) ? z : null; in sqrt() 1031 public ECFieldElement square() in square() method in ECFieldElement.F2m 1033 IntArray squared = x.square(m); in square()
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2010-11-23-Distributed.ll | 6 %square = mul nsw i32 %y, %y 7 %res = sub i32 %mul, %square
|
/external/qemu/distrib/zlib-1.2.3/ |
D | crc32.c | 70 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat)); 359 local void gf2_matrix_square(square, mat) in gf2_matrix_square() argument 360 unsigned long *square; in gf2_matrix_square() 366 square[n] = gf2_matrix_times(mat, mat[n]);
|
/external/zlib/ |
D | crc32.c | 74 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat)); 366 local void gf2_matrix_square(square, mat) in gf2_matrix_square() argument 367 unsigned long *square; in gf2_matrix_square() 373 square[n] = gf2_matrix_times(mat, mat[n]);
|
/external/mesa3d/src/glsl/tests/ |
D | matrix-06.glsl | 1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
|
D | matrix-01.glsl | 1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
|
D | matrix-04.glsl | 1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
|
D | matrix-05.glsl | 1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
|
D | matrix-03.glsl | 1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
|
D | matrix-02.glsl | 1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
|
/external/webkit/LayoutTests/fast/dom/beforeload/ |
D | link-before-load-expected.txt | 1 …he beforeload event on link elements. You should see the word PASS below underneath a green square.
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/ |
D | dillo | 26 square
|
/external/opencv/cv/src/ |
D | cvcamshift.cpp | 175 double theta = 0, square; in cvCamShift() local 232 square = sqrt( 4 * b * b + (a - c) * (a - c) ); in cvCamShift() 235 theta = atan2( 2 * b, a - c + square ); in cvCamShift()
|
/external/webkit/Source/WebCore/manual-tests/ |
D | svg-link-hover-use.svg | 8 <text y='120' x='10'>The above blue square is a link, the cursor should be a hand above it.</text>
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | metafunctions.cpp | 79 struct square { struct 83 int check1[is_same<square<1, 2, -3>::type,
|
/external/openssl/crypto/dh/ |
D | generate | 47 to be a non-square. If (P-1)/2 is also prime, then 48 non-square == primitive-root for bases << P.
|
/external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/ |
D | cssvalues.in | 281 square 282 square-button
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-values/ |
D | dillo | 66 square
|