Home
last modified time | relevance | path

Searched refs:Fp (Results 1 – 25 of 30) sorted by relevance

12

/external/v8/test/mjsunit/compiler/
Dregress-8.js34 var Fp = ""; variable
53 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+Gob))))))))),
60 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Hob))))),p);
65 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Iob))))),p);
70 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Job))))),p);
75 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Kob))))),p);
80 c.append(gp,yE,W,LA+(a.Un+(zE+(Fp+(LA+(a.Im+Lob))))),p);
85 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(Mob+(LA+(a.total+zE))))))))),
101 LA+(a.Un+(zE+(Fp+(LA+(a.Im+(zE+(AE+(LA+(a.total+zE))))))))),
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECFieldElement.java77 public static class Fp extends ECFieldElement class in ECFieldElement
98 public Fp(BigInteger q, BigInteger x) in Fp() method in ECFieldElement.Fp
103 Fp(BigInteger q, BigInteger r, BigInteger x) in Fp() method in ECFieldElement.Fp
142 return new Fp(q, r, modAdd(x, b.toBigInteger())); in add()
152 return new Fp(q, r, x2); in addOne()
157 return new Fp(q, r, modSubtract(x, b.toBigInteger())); in subtract()
162 return new Fp(q, r, modMult(x, b.toBigInteger())); in multiply()
170 return new Fp(q, r, modReduce(ab.subtract(xy))); in multiplyMinusProduct()
178 return new Fp(q, r, modReduce(ab.add(xy))); in multiplyPlusProduct()
183 return new Fp(q, r, modMult(x, modInverse(b.toBigInteger()))); in divide()
[all …]
DECCurve.java527 public static class Fp extends AbstractFp class in ECCurve
532 ECPoint.Fp infinity;
534 public Fp(BigInteger q, BigInteger a, BigInteger b) in Fp() method in ECCurve.Fp
539 public Fp(BigInteger q, BigInteger a, BigInteger b, BigInteger order, BigInteger cofactor) in Fp() method in ECCurve.Fp
544 this.r = ECFieldElement.Fp.calculateResidue(q); in Fp()
545 this.infinity = new ECPoint.Fp(this, null, null); in Fp()
554 protected Fp(BigInteger q, BigInteger r, ECFieldElement a, ECFieldElement b) in Fp() method in ECCurve.Fp
559 …protected Fp(BigInteger q, BigInteger r, ECFieldElement a, ECFieldElement b, BigInteger order, Big… in Fp() method in ECCurve.Fp
565 this.infinity = new ECPoint.Fp(this, null, null); in Fp()
576 return new Fp(q, r, a, b, order, cofactor); in cloneCurve()
[all …]
DECPoint.java602 public static class Fp extends AbstractFp class in ECPoint
613 public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y) in Fp() method in ECPoint.Fp
628 public Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, boolean withCompression) in Fp() method in ECPoint.Fp
640Fp(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, boolean withCompression) in Fp() method in ECPoint.Fp
649 return new ECPoint.Fp(null, this.getAffineXCoord(), this.getAffineYCoord()); in detach()
706 return new ECPoint.Fp(curve, X3, Y3, this.withCompression); in add()
748 … return new ECPoint.Fp(curve, X3, Y3, new ECFieldElement[]{ Z3 }, this.withCompression); in add()
871 return new ECPoint.Fp(curve, X3, Y3, zs, this.withCompression); in add()
910 return new ECPoint.Fp(curve, X3, Y3, this.withCompression); in twice()
940 … return new ECPoint.Fp(curve, X3, Y3, new ECFieldElement[]{ Z3 }, this.withCompression); in twice()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/sec/
DSECNamedCurves.java51 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
77 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
103 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
129 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
168 ECCurve curve = configureCurveGLV(new ECCurve.Fp(p, a, b, n, h), glv);
194 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
220 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
259 ECCurve curve = configureCurveGLV(new ECCurve.Fp(p, a, b, n, h), glv);
285 ECCurve curve = configureCurve(new ECCurve.Fp(p, a, b, n, h));
324 ECCurve curve = configureCurveGLV(new ECCurve.Fp(p, a, b, n, h), glv);
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
DX962NamedCurves.java25 ECCurve cFp192v1 = new ECCurve.Fp(
47 ECCurve cFp192v2 = new ECCurve.Fp(
69 ECCurve cFp192v3 = new ECCurve.Fp(
91 ECCurve cFp239v1 = new ECCurve.Fp(
113 ECCurve cFp239v2 = new ECCurve.Fp(
135 ECCurve cFp239v3 = new ECCurve.Fp(
157 ECCurve cFp256v1 = new ECCurve.Fp(
DX9FieldElement.java28 this(new ECFieldElement.Fp(p, new BigInteger(1, s.getOctets()))); in X9FieldElement()
DX9Curve.java58 curve = new ECCurve.Fp(p, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger()); in X9Curve()
/external/llvm/test/CodeGen/X86/
Dregpressure.ll25 %Fp = getelementptr i32, i32* %P, i32 5 ; <i32*> [#uses=1]
26 %F = load i32, i32* %Fp ; <i32> [#uses=1]
53 %Fp = getelementptr i32, i32* %P, i32 5 ; <i32*> [#uses=1]
54 %F = load i32, i32* %Fp ; <i32> [#uses=1]
85 %Fp = getelementptr i16, i16* %P, i32 5 ; <i16*> [#uses=1]
86 %F = load i16, i16* %Fp ; <i16> [#uses=1]
/external/lzma/CPP/
DBuild.mak75 COMPL_PCH = $(CC) $(CFLAGS_O1) -Yc"StdAfx.h" -Fp$O/a.pch $**
76 COMPL = $(CC) $(CFLAGS_O1) -Yu"StdAfx.h" -Fp$O/a.pch $**
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DEC5Util.java80 ECCurve.Fp curve = new ECCurve.Fp(((ECFieldFp)field).getP(), a, b); in convertCurve()
/external/jpeg/
Dmakeapps.ds76 /Fp"$(INTDIR)/cjpeg.pch" /YX /Fo"$(INTDIR)/" /c
144 /Fp"$(INTDIR)/djpeg.pch" /YX /Fo"$(INTDIR)/" /c
208 /Fp"$(INTDIR)/jpegtran.pch" /YX /Fo"$(INTDIR)/" /c
265 /Fp"$(INTDIR)/rdjpgcom.pch" /YX /Fo"$(INTDIR)/" /c
318 /Fp"$(INTDIR)/wrjpgcom.pch" /YX /Fo"$(INTDIR)/" /c
Dmakelib.ds107 /Fp"$(INTDIR)/jpeg.pch" /YX /Fo"$(INTDIR)/" /c
/external/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.h270 void printFPConstant(const ConstantFP *Fp, raw_ostream &O);
DNVPTXAsmPrinter.cpp1672 void NVPTXAsmPrinter::printFPConstant(const ConstantFP *Fp, raw_ostream &O) { in printFPConstant() argument
1673 APFloat APF = APFloat(Fp->getValueAPF()); // make a copy in printFPConstant()
1678 if (Fp->getType()->getTypeID() == Type::FloatTyID) { in printFPConstant()
1682 } else if (Fp->getType()->getTypeID() == Type::DoubleTyID) { in printFPConstant()
DNVPTXVector.td1338 // Fp scalar to fp vector convert
1347 // Fp vector to fp scalar convert
1352 // Fp scalar to int vector convert
1391 // Fp vector to int scalar convert
1441 // Fp vector to int vector convert
/external/clang/include/clang/Basic/
DBuiltins.def420 BUILTIN(__builtin_fprintf, "iP*cC*.", "Fp:1:")
427 BUILTIN(__builtin_printf, "icC*.", "Fp:0:")
483 BUILTIN(__builtin___snprintf_chk, "ic*zizcC*.", "Fp:4:")
484 BUILTIN(__builtin___sprintf_chk, "ic*izcC*.", "Fp:3:")
487 BUILTIN(__builtin___fprintf_chk, "iP*icC*.", "Fp:2:")
488 BUILTIN(__builtin___printf_chk, "iicC*.", "Fp:1:")
/external/llvm/lib/Target/X86/
DX86Schedule.td75 defm WriteFVarBlend : X86SchedWritePair; // Fp vector variable blends.
120 defm WriteFShuffle256 : X86SchedWritePair; // Fp 256-bit width vector shuffles.
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_kdt_g2p.pkb349 ~�<�Fp�&
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/
Den-GB_kdt_posp.pkb303 …�@����!� ��}��@Q�������H���^5����E _Q��,_ad�@�_��'[�8Do�F�Fp=7|�Zo� ~/�D;�E/�D…
/external/clang/include/clang/Driver/
DCLCompatOptions.td265 def _SLASH_Fp : CLJoined<"Fp">;
/external/llvm/test/Transforms/InstCombine/
Dfast-math.ll253 ; X/C1 * C2 => X * (C2/C1) (if C2/C1 is normal Fp)
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_kdt_g2p.pkb358 …����B ��K�v��n�i�K�LNC6�l��i�n��"p9��@-�ړl��P����x@ l����� @�Fp����ٍK�����^�"�…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kpdf_mgc.pkb476 …Y |��� a�9���P o�����?���JL�������]����"�� ��1�2,P�f�Fp�-A&�Q.<$((:TPM��齉…
1395 ���?��Pl��g���������d���!@����~���������$%Z�Fp�������������t�
/external/clang/lib/CodeGen/
DCodeGenFunction.h2496 const llvm::CmpInst::Predicate Fp,

12