Home
last modified time | relevance | path

Searched refs:square (Results 1 – 25 of 139) sorted by relevance

123456

/external/skia/src/gpu/
Dgr_unittests.cpp147 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/
DDrawErrorUnderline.h55 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/
Dp1.cpp98 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/
Dkeyed-call-generic.js49 Number.prototype.square = function() { return this * this; } method in Number
50 Number.prototype.power4 = function() { return this.square().square(); }
/external/libvpx/vp8/encoder/x86/
Dvariance_impl_mmx.asm112 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/
DECPoint.java268 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()
DECCurve.java98 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()
DECFieldElement.java18 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/
D2010-11-23-Distributed.ll6 %square = mul nsw i32 %y, %y
7 %res = sub i32 %mul, %square
/external/qemu/distrib/zlib-1.2.3/
Dcrc32.c70 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/
Dcrc32.c74 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/
Dmatrix-06.glsl1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
Dmatrix-01.glsl1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
Dmatrix-04.glsl1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
Dmatrix-05.glsl1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
Dmatrix-03.glsl1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
Dmatrix-02.glsl1 /* FAIL - non-square matrices are not available in GLSL 1.10 */
/external/webkit/LayoutTests/fast/dom/beforeload/
Dlink-before-load-expected.txt1 …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/
Ddillo26 square
/external/opencv/cv/src/
Dcvcamshift.cpp175 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/
Dsvg-link-hover-use.svg8 <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/
Dmetafunctions.cpp79 struct square { struct
83 int check1[is_same<square<1, 2, -3>::type,
/external/openssl/crypto/dh/
Dgenerate47 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/
Dcssvalues.in281 square
282 square-button
/external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-values/
Ddillo66 square

123456