HomeSort by relevance Sort by last modified time
    Searched defs:square (Results 1 - 19 of 19) sorted by null

  /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/skia/tests/
PathTest.cpp 38 SkPath square; local
39 square.moveTo(0, 0);
40 square.lineTo(1, 0);
41 square.lineTo(1, 1);
42 square.lineTo(0, 1);
43 square.close();
44 check_convexity(reporter, square, SkPath::kConvex_Convexity);
  /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);
  /hardware/invensense/mlsdk/mllite/
compass.c 80 static float square(float data) function
135 sum += square(avg - adap_filter->sequence[i]);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertAdapter.java 49 View square = view.findViewById(R.id.color_square); local
51 square.setBackgroundColor(color);
  /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/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 98 constexpr int square(int x);
108 : x(square(a)), y(square(a))
113 constexpr int square(int x) { function
  /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,
  /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/src/
proximity_info.cpp 149 inline float square(const float x) { return x * x; } function in namespace:latinime
161 const float squaredRadius = square(mSweetSpotRadii[keyIndex]);
183 return square(inputX - sweetSpotCenterX) + square(inputY - sweetSpotCenterY);
  /system/media/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/bison/lib/
hash.c 440 size_t square = divisor * divisor; local
442 while (square < candidate && (candidate % divisor))
445 square += 4 * divisor;
  /external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
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...]
  /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();
  /development/tools/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/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 76 inline float square(float n) function in namespace:WebCore::__anon13403
579 // probably worth the speed up of no square root, which also won't be exact.
845 // shadow for a square box.
    [all...]
  /frameworks/base/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
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
MultiWaveView.java 888 private float square(float d) { method
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 1628 milliseconds