/external/v8/test/mjsunit/compiler/ |
D | regress-8.js | 34 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/ |
D | ECFieldElement.java | 77 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 …]
|
D | ECCurve.java | 527 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 …]
|
D | ECPoint.java | 602 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 640 …Fp(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/ |
D | SECNamedCurves.java | 51 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/ |
D | X962NamedCurves.java | 25 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(
|
D | X9FieldElement.java | 28 this(new ECFieldElement.Fp(p, new BigInteger(1, s.getOctets()))); in X9FieldElement()
|
D | X9Curve.java | 58 curve = new ECCurve.Fp(p, x9A.getValue().toBigInteger(), x9B.getValue().toBigInteger()); in X9Curve()
|
/external/llvm/test/CodeGen/X86/ |
D | regpressure.ll | 25 %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/ |
D | Build.mak | 75 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/ |
D | EC5Util.java | 80 ECCurve.Fp curve = new ECCurve.Fp(((ECFieldFp)field).getP(), a, b); in convertCurve()
|
/external/jpeg/ |
D | makeapps.ds | 76 /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
|
D | makelib.ds | 107 /Fp"$(INTDIR)/jpeg.pch" /YX /Fo"$(INTDIR)/" /c
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAsmPrinter.h | 270 void printFPConstant(const ConstantFP *Fp, raw_ostream &O);
|
D | NVPTXAsmPrinter.cpp | 1672 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()
|
D | NVPTXVector.td | 1338 // 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/ |
D | Builtins.def | 420 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/ |
D | X86Schedule.td | 75 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/ |
D | en-US_kdt_g2p.pkb | 349 ~�<�Fp�&
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/ |
D | en-GB_kdt_posp.pkb | 303 …�@����!� ��}��@Q�������H���^5����E_Q��,_ad�@�_��'[�8Do�F�Fp=7|�Zo� ~/�D;�E/�D…
|
/external/clang/include/clang/Driver/ |
D | CLCompatOptions.td | 265 def _SLASH_Fp : CLJoined<"Fp">;
|
/external/llvm/test/Transforms/InstCombine/ |
D | fast-math.ll | 253 ; X/C1 * C2 => X * (C2/C1) (if C2/C1 is normal Fp)
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_kdt_g2p.pkb | 358 …����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/ |
D | es-ES_zl0_kpdf_mgc.pkb | 476 …Y|���a�9���Po�����?���JL�������]���"����1�2,P�f�Fp�-A&�Q.<$((:TPM��齉… 1395 ��?��Pl��g��������d���!@���~��������$%Z�Fp�������������t�
|
/external/clang/lib/CodeGen/ |
D | CodeGenFunction.h | 2496 const llvm::CmpInst::Predicate Fp,
|