HomeSort by relevance Sort by last modified time
    Searched refs:square (Results 1 - 25 of 49) sorted by null

1 2

  /external/skia/src/gpu/
gr_unittests.cpp 147 GrPath square;
148 square.moveTo(0, 0);
149 square.lineTo(1, 0);
150 square.lineTo(1, 1);
151 square.lineTo(0, 1);
152 square.close();
154 testIter.reset(square);
159 square.moveTo(0, 0);
160 square.lineTo(0, 0);
161 square.lineTo(0, 0)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
DrawErrorUnderline.h 38 // \ \/ C \/ / \ \/ C \ | height = heightSquares * square
45 // unitWidth = (heightSquares - 1) * square
55 double square = height / heightSquares; local
56 double halfSquare = 0.5 * square;
58 double unitWidth = (heightSquares - 1.0) * square;
80 cairo_line_to(cr, right, top + square); // C
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
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 constant expression}}
113 constexpr int square(int x) { function
  /frameworks/wilhelm/tests/sandbox/
intbufq.c 60 frame_t square[SQUARE_FRAMES]; variable
157 square[i].left = (i % (unsigned) (sr / hz)) < 50 ? 32767 : -32768;
158 square[i].right = square[i].left;
193 buffer = square;
194 size = sizeof(square);
  /external/v8/test/mjsunit/
keyed-call-generic.js 49 Number.prototype.square = function() { return this * this; }
50 Number.prototype.power4 = function() { return this.square().square(); }
69 testOne(2, 'square', 4);
  /external/qemu/distrib/zlib-1.2.3/
crc32.c 70 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
359 local void gf2_matrix_square(square, mat)
360 unsigned long *square;
366 square[n] = gf2_matrix_times(mat, mat[n]);
398 /* apply len2 zeros to crc1 (first square will put the operator for one
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
ECCurve.java 98 ECFieldElement alpha = x.multiply(x.square().add(a)).add(b);
529 yp = yp.square();
535 b.multiply(xp.square().invert()));
588 ECFieldElement w2 = w.square();
589 z = z.square().add(w2.multiply(t));
596 gamma = z.square().add(z);
ECPoint.java 268 ECFieldElement x3 = gamma.square().subtract(this.x).subtract(b.x);
292 ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO));
294 ECFieldElement x3 = gamma.square().subtract(this.x.multiply(TWO));
495 = (ECFieldElement.F2m)lambda.square().add(lambda).add(this.x).add(x2).add(this.curve.getA());
554 = (ECFieldElement.F2m)lambda.square().add(lambda).
559 = (ECFieldElement.F2m)this.x.square().add(
ECFieldElement.java 18 public abstract ECFieldElement square(); method in class:ECFieldElement
95 public ECFieldElement square() method in class:ECFieldElement.Fp
125 return z.square().equals(this) ? z : null;
606 // public ECFieldElement square()
1031 public ECFieldElement square() method in class:ECFieldElement.F2m
    [all...]
Tnaf.java 403 return new ECPoint.F2m(p.getCurve(), x.square(), y.square(), p.isCompressed());
  /external/zlib/
crc32.c 74 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
366 local void gf2_matrix_square(square, mat)
367 unsigned long *square;
373 square[n] = gf2_matrix_times(mat, mat[n]);
405 /* apply len2 zeros to crc1 (first square will put the operator for one
  /external/libvpx/vp8/encoder/x86/
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 accumulat
    [all...]
  /external/opencv/cv/src/
cvcamshift.cpp 175 double theta = 0, square; local
232 square = sqrt( 4 * b * b + (a - c) * (a - c) );
235 theta = atan2( 2 * b, a - c + square );
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info.cpp 306 inline float square(const float x) { return x * x; } function in namespace:latinime
320 const float squaredRadius = square(mSweetSpotRadii[keyIndex]);
346 return square(inputX - sweetSpotCenterX) + square(inputY - sweetSpotCenterY);
  /dalvik/tests/044-proxy/src/
BasicTest.java 129 public int square(int x, int y); method in interface:Quads
168 public int square(int x, int y) { method in class:Mix
169 System.out.println("--- square " + x + "," + y);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 79 struct square { struct in namespace:Math
83 int check1[is_same<square<1, 2, -3>::type,
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertAdapter.java 49 View square = view.findViewById(R.id.color_square); local
51 square.setBackgroundColor(color);
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 198 // Output is a 4 x 4 square of 3-byte pixels in form R, G, B
294 inline int square(int x) { function
312 etc1_uint32 score = (etc1_uint32) (6 * square(decodedG - pixelG));
317 score += (etc1_uint32) (3 * square(decodedR - pixelR));
322 score += (etc1_uint32) square(decodedB - pixelB);
479 // Input is a 4 x 4 square of 3-byte pixels in form R, G, B
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp 198 // Output is a 4 x 4 square of 3-byte pixels in form R, G, B
294 inline int square(int x) { function
312 etc1_uint32 score = (etc1_uint32) (6 * square(decodedG - pixelG));
317 score += (etc1_uint32) (3 * square(decodedR - pixelR));
322 score += (etc1_uint32) square(decodedB - pixelB);
479 // Input is a 4 x 4 square of 3-byte pixels in form R, G, B
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLLIElement01.js 104 assertEquals("typeLink","square",vtype);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLLIElement01.js 104 assertEquals("typeLink","square",vtype);
  /external/bison/lib/
hash.c 440 size_t square = divisor * divisor; local
442 while (square < candidate && (candidate % divisor))
445 square += 4 * divisor;
  /hardware/invensense/mlsdk/mllite/
compass.c 80 static float square(float data) function
135 sum += square(avg - adap_filter->sequence[i]);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 363 private ScreenViewer.LoupeStatus.ColoredSquare square; field in class:ScreenViewer.LoupeStatus
371 square = new ColoredSquare();
372 add(square, new GridBagConstraints(0, 0, 1, 2, 0.0f, 0.0f,
456 square.repaint();
  /external/skia/tests/
PathTest.cpp 291 SkPath square; local
292 square.moveTo(0, 0);
293 square.lineTo(SK_Scalar1, 0);
294 square.lineTo(SK_Scalar1, SK_Scalar1);
295 square.lineTo(0, SK_Scalar1);
296 square.close();
297 check_convexity(reporter, square, SkPath::kConvex_Convexity);
    [all...]

Completed in 816 milliseconds

1 2