HomeSort by relevance Sort by last modified time
    Searched defs:x9 (Results 1 - 25 of 294) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DHPublicKey.java 1 package org.bouncycastle.asn1.x9;
11 * X9.42 definition of a DHPublicKey
X9ECParametersHolder.java 1 package org.bouncycastle.asn1.x9;
X9FieldElement.java 1 package org.bouncycastle.asn1.x9;
X9IntegerConverter.java 1 package org.bouncycastle.asn1.x9;
DHValidationParms.java 1 package org.bouncycastle.asn1.x9;
ValidationParams.java 1 package org.bouncycastle.asn1.x9;
X962Parameters.java 1 package org.bouncycastle.asn1.x9;
13 * The Parameters ASN.1 CHOICE from X9.62.
X9ECPoint.java 1 package org.bouncycastle.asn1.x9;
ECNamedCurveTable.java 1 package org.bouncycastle.asn1.x9;
16 * A general class that reads all X9.62 style EC curve tables.
X9FieldID.java 1 package org.bouncycastle.asn1.x9;
15 * X9.62, for further details.
DHDomainParameters.java 1 package org.bouncycastle.asn1.x9;
DomainParameters.java 1 package org.bouncycastle.asn1.x9;
16 * X9.44 Diffie-Hellman domain parameters.
X9Curve.java 1 package org.bouncycastle.asn1.x9;
19 * X9.62, for further details.
X9ECParameters.java 1 package org.bouncycastle.asn1.x9;
19 * X9.62, for further details.
X962NamedCurves.java 1 package org.bouncycastle.asn1.x9;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
PrivateKeyFactory.java 22 import org.bouncycastle.asn1.x9.ECNamedCurveTable;
23 import org.bouncycastle.asn1.x9.X962Parameters;
24 import org.bouncycastle.asn1.x9.X9ECParameters;
25 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
133 X9ECParameters x9; local
140 x9 = CustomNamedCurves.getByOID(oid);
141 if (x9 == null)
143 x9 = ECNamedCurveTable.getByOID(oid);
146 oid, x9.getCurve(), x9.getG(), x9.getN(), x9.getH(), x9.getSeed())
    [all...]
PublicKeyFactory.java 24 import org.bouncycastle.asn1.x9.DHPublicKey;
25 import org.bouncycastle.asn1.x9.DomainParameters;
26 import org.bouncycastle.asn1.x9.ECNamedCurveTable;
27 import org.bouncycastle.asn1.x9.ValidationParams;
28 import org.bouncycastle.asn1.x9.X962Parameters;
29 import org.bouncycastle.asn1.x9.X9ECParameters;
30 import org.bouncycastle.asn1.x9.X9ECPoint;
31 import org.bouncycastle.asn1.x9.X9ObjectIdentifiers;
169 X9ECParameters x9; local
176 x9 = CustomNamedCurves.getByOID(oid)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 34 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
39 x9 = 0x80808080; /* const. */
66 x11 = sad_4pixel(x11, x14, x9);
69 x10 = sad_4pixel(x10, x12, x9);
92 x11 = sad_4pixel(x11, x14, x9);
95 x10 = sad_4pixel(x10, x12, x9);
137 int32 x4, x5, x6, x9, x10, x11, x12, x14; local
139 x9 = 0x80808080; /* const. */
170 x11 = sad_4pixelN(x11, x14, x9);
173 x10 = sad_4pixelN(x10, x12, x9);
230 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
sad_inline.h 84 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
86 x9 = 0x80808080; /* const. */
114 x11 = sad_4pixel(x11, x14, x9);
117 x10 = sad_4pixel(x10, x12, x9);
133 x11 = sad_4pixel(x11, x14, x9);
136 x10 = sad_4pixel(x10, x12, x9);
259 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
261 x9 = 0x80808080; /* const. */
281 x11 = sad_4pixel(x11, x14, x9);
284 x10 = sad_4pixel(x10, x12, x9);
448 int32 x4, x5, x6, x8, x9, x10, x11, x12, x14; local
    [all...]
  /external/clang/test/ASTMerge/Inputs/
struct1.c 42 struct S9 { int i; float f; } *x9; variable in typeref:struct:S9
struct2.c 39 struct S9 *x9; variable in typeref:struct:S9
  /bionic/libc/upstream-openbsd/lib/libc/crypt/
chacha_private.h 91 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; local
132 x9 = j9;
141 QUARTERROUND( x1, x5, x9,x13)
147 QUARTERROUND( x3, x4, x9,x14)
158 x9 = PLUS(x9,j9);
176 x9 = XOR(x9,U8TO32_LITTLE(m + 36));
200 U32TO8_LITTLE(c + 36,x9);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP256K1FieldElement.java 157 int[] x9 = x6; local
158 SecP256K1Field.squareN(x6, 3, x9);
159 SecP256K1Field.multiply(x9, x3, x9);
160 int[] x11 = x9;
161 SecP256K1Field.squareN(x9, 2, x11);
  /external/clang/test/CodeGen/
override-layout.c 81 // CHECK: Type: struct X9
82 struct X9 {
137 struct X9 x9; local
138 typedef int X9array[sizeof(struct X9)];
139 x9.y = sizeof(struct X9);
  /external/lzma/Asm/x86/
7zAsm.asm 75 x9 equ r9d define

Completed in 682 milliseconds

1 2 3 4 5 6 7 8 91011>>