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

1 2 3 4 5 6 7

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat384.java 6 public static void mul(int[] x, int[] y, int[] zz)
8 Nat192.mul(x, y, zz);
9 Nat192.mul(x, 6, y, 6, zz, 12);
11 int c18 = Nat192.addToEachOther(zz, 6, zz, 12);
12 int c12 = c18 + Nat192.addTo(zz, 0, zz, 6, 0);
13 c18 += Nat192.addTo(zz, 18, zz, 12, c12);
21 c18 += neg ? Nat.addTo(12, tt, 0, zz, 6) : Nat.subFrom(12, tt, 0, zz, 6)
    [all...]
Nat512.java 6 public static void mul(int[] x, int[] y, int[] zz)
8 Nat256.mul(x, y, zz);
9 Nat256.mul(x, 8, y, 8, zz, 16);
11 int c24 = Nat256.addToEachOther(zz, 8, zz, 16);
12 int c16 = c24 + Nat256.addTo(zz, 0, zz, 8, 0);
13 c24 += Nat256.addTo(zz, 24, zz, 16, c16);
21 c24 += neg ? Nat.addTo(16, tt, 0, zz, 8) : Nat.subFrom(16, tt, 0, zz, 8)
    [all...]
Nat192.java 345 public static void mul(int[] x, int[] y, int[] zz)
357 zz[0] = (int)c;
360 zz[1] = (int)c;
363 zz[2] = (int)c;
366 zz[3] = (int)c;
369 zz[4] = (int)c;
372 zz[5] = (int)c;
374 zz[6] = (int)c;
380 c += x_i * y_0 + (zz[i + 0] & M);
381 zz[i + 0] = (int)c
    [all...]
Nat256.java 440 public static void mul(int[] x, int[] y, int[] zz)
454 zz[0] = (int)c;
457 zz[1] = (int)c;
460 zz[2] = (int)c;
463 zz[3] = (int)c;
466 zz[4] = (int)c;
469 zz[5] = (int)c;
472 zz[6] = (int)c;
475 zz[7] = (int)c;
477 zz[8] = (int)c
    [all...]
Nat224.java 342 public static void mul(int[] x, int[] y, int[] zz)
355 zz[0] = (int)c;
358 zz[1] = (int)c;
361 zz[2] = (int)c;
364 zz[3] = (int)c;
367 zz[4] = (int)c;
370 zz[5] = (int)c;
373 zz[6] = (int)c;
375 zz[7] = (int)c;
381 c += x_i * y_0 + (zz[i + 0] & M)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipExceptionTest.java 26 ZipException zz = new ZipException(); local
27 assertEquals(zz.getMessage(), null);
31 ZipException zz = new ZipException("Test"); local
32 assertEquals(zz.getMessage(), "Test");
  /bionic/libm/upstream-netbsd/lib/libm/complex/
casinl.c 44 long double complex ca, ct, zz, z2; local
108 /* cmull( &ca, &ca, &zz ) */
110 zz = (x - y) * (x + y) + (2.0L * x * y) * I;
112 zz = 1.0L - creall(zz) - cimagl(zz) * I;
113 z2 = csqrtl(zz);
115 zz = ct + z2;
116 zz = clogl(zz);
    [all...]
  /external/skia/src/core/
SkPoint3.cpp 33 double zz = z; local
34 return (float)sqrt(xx * xx + yy * yy + zz * zz);
62 double zz = fZ; local
67 double dscale = 1.0f / sqrt(xx * xx + yy * yy + zz * zz);
73 scale = (float)(1.0f / sqrt(xx * xx + yy * yy + zz * zz));
  /external/skqp/src/core/
SkPoint3.cpp 33 double zz = z; local
34 return (float)sqrt(xx * xx + yy * yy + zz * zz);
62 double zz = fZ; local
67 double dscale = 1.0f / sqrt(xx * xx + yy * yy + zz * zz);
73 scale = (float)(1.0f / sqrt(xx * xx + yy * yy + zz * zz));
  /prebuilts/go/darwin-x86/src/math/
sincos.go 56 zz := z * z
57 cos = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5])
58 sin = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5]
    [all...]
sin.go 156 zz := z * z
158 y = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5])
160 y = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5]
    [all...]
  /prebuilts/go/linux-x86/src/math/
sincos.go 56 zz := z * z
57 cos = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5])
58 sin = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5]
    [all...]
sin.go 156 zz := z * z
158 y = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5])
160 y = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5]
    [all...]
  /external/compiler-rt/test/msan/
chained_origin.cc 40 int * volatile zz = new int; local
41 int z = *zz;
  /art/test/005-annotations/src/android/test/anno/
AnnoArrayField.java 10 boolean[] zz() default {};
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Field.java 29 public static void addExt(int[] xx, int[] yy, int[] zz)
31 int c = Nat.add(12, xx, yy, zz);
32 if (c != 0 || (zz[11] == PExt11 && Nat.gte(12, zz, PExt)))
34 if (Nat.addTo(PExtInv.length, PExtInv, zz) != 0)
36 Nat.incAt(12, zz, PExtInv.length);
80 public static void multiplyAddToExt(int[] x, int[] y, int[] zz)
82 int c = Nat192.mulAddTo(x, y, zz);
83 if (c != 0 || (zz[11] == PExt11 && Nat.gte(12, zz, PExt))
    [all...]
SecP192R1Field.java 30 public static void addExt(int[] xx, int[] yy, int[] zz)
32 int c = Nat.add(12, xx, yy, zz);
33 if (c != 0 || (zz[11] == PExt11 && Nat.gte(12, zz, PExt)))
35 if (Nat.addTo(PExtInv.length, PExtInv, zz) != 0)
37 Nat.incAt(12, zz, PExtInv.length);
81 public static void multiplyAddToExt(int[] x, int[] y, int[] zz)
83 int c = Nat192.mulAddTo(x, y, zz);
84 if (c != 0 || (zz[11] == PExt11 && Nat.gte(12, zz, PExt))
    [all...]
SecP224K1Field.java 30 public static void addExt(int[] xx, int[] yy, int[] zz)
32 int c = Nat.add(14, xx, yy, zz);
33 if (c != 0 || (zz[13] == PExt13 && Nat.gte(14, zz, PExt)))
35 if (Nat.addTo(PExtInv.length, PExtInv, zz) != 0)
37 Nat.incAt(14, zz, PExtInv.length);
81 public static void multiplyAddToExt(int[] x, int[] y, int[] zz)
83 int c = Nat224.mulAddTo(x, y, zz);
84 if (c != 0 || (zz[13] == PExt13 && Nat.gte(14, zz, PExt))
    [all...]
SecP256K1Field.java 31 public static void addExt(int[] xx, int[] yy, int[] zz)
33 int c = Nat.add(16, xx, yy, zz);
34 if (c != 0 || (zz[15] == PExt15 && Nat.gte(16, zz, PExt)))
36 if (Nat.addTo(PExtInv.length, PExtInv, zz) != 0)
38 Nat.incAt(16, zz, PExtInv.length);
82 public static void multiplyAddToExt(int[] x, int[] y, int[] zz)
84 int c = Nat256.mulAddTo(x, y, zz);
85 if (c != 0 || (zz[15] == PExt15 && Nat.gte(16, zz, PExt))
    [all...]
SecP521R1Field.java 141 protected static void implMultiply(int[] x, int[] y, int[] zz)
143 Nat512.mul(x, y, zz);
146 zz[32] = Nat.mul31BothAdd(16, x16, y, y16, x, zz, 16) + (x16 * y16);
149 protected static void implSquare(int[] x, int[] zz)
151 Nat512.square(x, zz);
154 zz[32] = Nat.mulWordAddTo(16, x16 << 1, x, 0, zz, 16) + (x16 * x16);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7884.go 13 zz, err := ii.(interface{})
14 fmt.Println(zz, err)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7884.go 13 zz, err := ii.(interface{})
14 fmt.Println(zz, err)
  /external/bzip2/
huffman.c 35 Int32 zz, tmp; \
36 zz = z; tmp = heap[zz]; \
37 while (weight[tmp] < weight[heap[zz >> 1]]) { \
38 heap[zz] = heap[zz >> 1]; \
39 zz >>= 1; \
41 heap[zz] = tmp; \
46 Int32 zz, yy, tmp; \
47 zz = z; tmp = heap[zz];
    [all...]
  /bionic/tests/libs/
cfi_test_lib.cpp 74 int zz; local
75 __cfi_slowpath(13, static_cast<void*>(&zz));
  /external/clang/test/SemaCXX/
internal_linkage.cpp 14 static int zz; // expected-note{{previous definition is here}} member in class:A
25 __attribute__((internal_linkage)) int A::zz; // expected-error{{'internal_linkage' attribute does not appear on the first declaration of 'zz'}} member in class:A

Completed in 676 milliseconds

1 2 3 4 5 6 7