/external/clang/test/Analysis/ |
D | array-struct-region.cpp | 29 struct S getS() { in getS() function 34 struct S getS(); 39 struct S s = getS(); in testAssignment() 62 int x = getS().field; in testImmediateUse() 68 clang_analyzer_eval((void *)getS().getThis() == (void *)&x); // expected-warning{{FALSE}} in testImmediateUse() 69 clang_analyzer_eval((void *)+getS() == (void *)&x); // expected-warning{{FALSE}} in testImmediateUse() 70 clang_analyzer_eval((void *)-getS() == (void *)&x); // expected-warning{{FALSE}} in testImmediateUse() 72 clang_analyzer_eval(getS().check()); // expected-warning{{TRUE}} in testImmediateUse() 73 clang_analyzer_eval(!getS()); // expected-warning{{FALSE}} in testImmediateUse() 74 clang_analyzer_eval(~getS()); // expected-warning{{FALSE}} in testImmediateUse() [all …]
|
D | reference.cpp | 126 extern S getS(); in testReferenceAddress() 127 clang_analyzer_eval(&getS().x != 0); // expected-warning{{TRUE}} in testReferenceAddress()
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-no-rtti-data.cpp | 18 extern S *getS(); 20 const std::type_info &ti = typeid(*getS()); 21 const U &u = dynamic_cast<U &>(*getS());
|
D | microsoft-abi-static-initializers.cpp | 141 inline S &getS() { in getS() function 225 getS(); in force_usage()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
D | BCECPrivateKey.java | 60 this.d = key.getS(); in BCECPrivateKey() 98 this.d = spec.getS(); in BCECPrivateKey() 265 orderBitLength = ECUtil.getOrderBitLength(configuration, null, this.getS()); in getEncoded() 269 … orderBitLength = ECUtil.getOrderBitLength(configuration, ecSpec.getOrder(), this.getS()); in getEncoded() 277 …keyStructure = new org.bouncycastle.asn1.sec.ECPrivateKey(orderBitLength, this.getS(), publicKey, … in getEncoded() 281 … keyStructure = new org.bouncycastle.asn1.sec.ECPrivateKey(orderBitLength, this.getS(), params); in getEncoded() 321 public BigInteger getS() in getS() method in BCECPrivateKey
|
D | KeyFactorySpi.java | 82 return new java.security.spec.ECPrivateKeySpec(k.getS(), k.getParams()); in engineGetKeySpec() 88 …return new java.security.spec.ECPrivateKeySpec(k.getS(), EC5Util.convertSpec(EC5Util.convertCurve(… in engineGetKeySpec() 111 …return new org.bouncycastle.jce.spec.ECPrivateKeySpec(k.getS(), EC5Util.convertSpec(k.getParams(),… in engineGetKeySpec() 117 return new org.bouncycastle.jce.spec.ECPrivateKeySpec(k.getS(), implicitSpec); in engineGetKeySpec()
|
/external/clang/test/CXX/expr/expr.post/expr.call/ |
D | p7-0x.cpp | 39 S &getS(); 44 (void)sizeof(f(getS())); in g()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLECPrivateKey.java | 60 final BigInteger privKey = ecKeySpec.getS(); in OpenSSLECPrivateKey() 144 final BigInteger privKey = ecPrivateKey.getS(); in getInstance() 173 public BigInteger getS() { in getS() method in OpenSSLECPrivateKey 202 if (!getPrivateKey().equals(other.getS())) { in equals()
|
D | OpenSSLECKeyFactory.java | 108 T result = (T) new ECPrivateKeySpec(ecKey.getS(), ecKey.getParams()); in engineGetKeySpec() 118 T result = (T) new ECPrivateKeySpec(ecKey.getS(), ecKey.getParams()); in engineGetKeySpec() 169 BigInteger s = ecKey.getS(); in engineTranslateKey()
|
/external/wycheproof/java/com/google/security/wycheproof/testcases/ |
D | EcKeyTest.java | 155 assertEquals(priv.getS(), decoded.getS()); in testEncodedPrivateKey() 181 BigInteger s = priv.getS(); in testKeyGeneration()
|
D | EcdsaTest.java | 591 BigInteger x = priv.getS(); in extractK() 708 System.out.println("S:" + priv.getS().toString()); in testBasic()
|
D | EcdhTest.java | 1019 System.out.println(" s =" + priv.getS()); in testDistinctCurves()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | JCEECPrivateKey.java | 63 this.d = key.getS(); in JCEECPrivateKey() 96 this.d = spec.getS(); in JCEECPrivateKey() 329 keyStructure = new ECPrivateKeyStructure(this.getS(), publicKey, params); in getEncoded() 333 keyStructure = new ECPrivateKeyStructure(this.getS(), params); in getEncoded() 383 public BigInteger getS() in getS() method in JCEECPrivateKey
|
/external/guice/core/test/com/google/inject/ |
D | InjectorTest.java | 84 assertEquals("test", foo.bar.getTee().getS()); in testInjection() 108 assertEquals("test", bar.getTee().getS()); 182 String getS(); 196 public String getS() {
|
D | PerformanceComparison.java | 151 assertEquals("test", foo.bar.getTee().getS()); in validate() 275 String getS(); in getS() method 288 public String getS() { in getS() method in PerformanceComparison.TeeImpl
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | SingularValueDecomposition.java | 77 RealMatrix getS(); in getS() method
|
D | SingularValueDecompositionImpl.java | 176 public RealMatrix getS() throws InvalidMatrixException { in getS() method in SingularValueDecompositionImpl
|
/external/syslinux/com32/lua/src/ |
D | lauxlib.c | 674 static const char *getS (lua_State *L, void *ud, size_t *size) { in getS() function 689 return lua_load(L, getS, &ls, name, mode); in luaL_loadbufferx()
|
/external/skia/third_party/lua/src/ |
D | lauxlib.c | 672 static const char *getS (lua_State *L, void *ud, size_t *size) { in getS() function 687 return lua_load(L, getS, &ls, name, mode); in luaL_loadbufferx()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
D | ECUtil.java | 249 privKey.getS(), in generatePrivateKeyParameter()
|