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

1 2

  /external/clang/test/PCH/
enum.h 10 Square,
  /external/slf4j/slf4j-simple/src/test/java/org/slf4j/
DetectLoggerNameMismatchTest.java 115 Square square = new Square(); local
116 assertEquals("org.slf4j.Square", square.logger.getName());
133 class Square extends ShapeBase {
  /external/libchrome/crypto/
p224.cc 186 // Square computes *out = a*a
190 void Square(FieldElement* out, const FieldElement& a) {
248 Square(&f1, in); // 2
250 Square(&f1, f1); // 2**3 - 2
252 Square(&f2, f1); // 2**4 - 2
253 Square(&f2, f2); // 2**5 - 4
254 Square(&f2, f2); // 2**6 - 8
256 Square(&f2, f1); // 2**7 - 2
258 Square(&f2, f2);
261 Square(&f3, f2); // 2**13 -
    [all...]
  /development/samples/OpenGL/HelloOpenGLES10/src/com/example/android/opengl/
MyGLRenderer.java 36 private Square mSquare;
45 mSquare = new Square();
61 // Draw square
Square.java 26 * A two-dimensional square for use as a drawn object in OpenGL ES 1.0/1.1.
28 public class Square {
48 public Square() {
  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
MyGLRenderer.java 39 private Square mSquare;
56 mSquare = new Square();
72 // Draw square
Square.java 26 * A two-dimensional square for use as a drawn object in OpenGL ES 2.0.
28 public class Square {
73 public Square() {
142 // Draw the square
  /platform_testing/tests/perf/PerformanceLaunch/src/com/android/performanceLaunch/helper/
SimpleGLRenderer.java 41 private Square mSquare;
58 mSquare = new Square();
74 // Draw square
Square.java 27 * A two-dimensional square for use as a drawn object in OpenGL ES 2.0.
30 public class Square {
80 public Square() {
148 // Draw the square
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 63 private Square mSquare;
83 mSquare = new Square();
300 private final static class Square {
355 public Square() {
  /external/skia/src/sfnt/
SkPanose.h 35 Square = 6,
370 Square = 6,
410 Square = 3,
  /external/v8/src/
bignum.h 36 void Square();
bignum.cc 321 void Bignum::Square() {
454 Square();
  /prebuilts/go/darwin-x86/src/encoding/gob/
codec_test.go 1049 Square() int
1054 func (i Int) Square() int {
1060 func (f Float) Square() int {
1066 func (v Vector) Square() int {
1078 func (p Point) Square() int {
1121 if item2.Sq1 == nil || item2.Sq1.Square() != iVal.Square() {
1124 if item2.Sq2 == nil || item2.Sq2.Square() != fVal.Square() {
1127 if item2.Sq3 == nil || item2.Sq3.Square() != vVal.Square()
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
codec_test.go 1049 Square() int
1054 func (i Int) Square() int {
1060 func (f Float) Square() int {
1066 func (v Vector) Square() int {
1078 func (p Point) Square() int {
1121 if item2.Sq1 == nil || item2.Sq1.Square() != iVal.Square() {
1124 if item2.Sq2 == nil || item2.Sq2.Square() != fVal.Square() {
1127 if item2.Sq3 == nil || item2.Sq3.Square() != vVal.Square()
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
check_bn_tests.go 198 case "Square":
199 if checkKeys(test, "A", "Square") {
201 checkResult(test, "A * A", "Square", r)
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
numeric.h 101 T Square(const T& x) {
  /external/webp/src/enc/
delta_palettization_enc.c 281 static WEBP_INLINE int Square(int x) {
300 distance += Square(pv - av);
302 // We sum square of intensity difference with factor 10, but because Intensity
306 distance += Square(Intensity(predicted_value)
  /external/skia/src/ports/
SkTypeface_win_dw.cpp 402 SerifStyle::Square == serifStyle ||
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 237 ; Square src2. Ignore high value
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 238 ; Square src2. Ignore high value
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
tables.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
tables.go     [all...]
  /prebuilts/go/darwin-x86/src/crypto/elliptic/
p224.go 241 // Square computes *out = a*a
  /prebuilts/go/darwin-x86/src/math/big/
int.go 645 // to calculate the square root of any quadratic residue mod p quickly for 3
655 // modSqrtTonelliShanks uses the Tonelli-Shanks algorithm to find the square
664 // find some non-square n
672 // section 6 of "Square roots from 1; 24, 51, 10 to Dan Shanks" by Ezra
704 // ModSqrt sets z to a square root of x mod p if such a square root exists, and
705 // returns z. The modulus p must be an odd prime. If x is not a square mod p,
711 return nil // x is not a square mod p
935 panic("square root of negative number")

Completed in 1471 milliseconds

1 2