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

1 2 3

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairGeneratorSpiTest.java 72 KeyPair kp = keyPairGen.generateKeyPair(); local
73 assertNull("Not null KeyPair", kp);
KeyPairGenerator3Test.java 98 KeyPair kp, kp1; local
102 kp = kpg[i].generateKeyPair();
104 assertFalse("Incorrect private key", kp.getPrivate().equals(
106 assertFalse("Incorrect public key", kp.getPublic().equals(
124 KeyPair kp, kp1; local
126 kp = kpg[i].generateKeyPair();
128 assertFalse("Incorrect private key", kp.getPrivate().equals(
130 assertFalse("Incorrect public key", kp.getPublic().equals(
SignerTest.java 66 KeyPair kp = new KeyPair(new PublicKeyStub("public", "SignerTest.testToString", null), local
68 s1.setKeyPair(kp);
71 s2.setKeyPair(kp);
134 KeyPair kp = new KeyPair(publicKey, privateKey); local
140 s.setKeyPair(kp);
158 KeyPair kp = new KeyPair(null, null); local
160 s.setKeyPair(kp);
KeyPairGenerator1Test.java 320 KeyPair kp, kp1; local
323 kp = kpg[i].generateKeyPair();
326 assertFalse("Incorrect private key", kp.getPrivate().equals(
328 assertFalse("Incorrect public key", kp.getPublic().equals(
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 63 int kp = -1; local
82 if (k != kp)
90 kp = k;
116 int kp = -1;
135 if (k != kp)
143 kp = k;
169 int kp = -1;
188 if (k != kp)
196 kp = k;
222 int kp = -1
    [all...]
eval_param.pass.cpp 62 int kp = -1; local
81 if (k != kp)
89 kp = k;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 59 int kp = -1; local
78 if (k != kp)
86 kp = k;
109 int kp = -1;
128 if (k != kp)
136 kp = k;
159 int kp = -1;
178 if (k != kp)
186 kp = k;
209 int kp = -1
    [all...]
eval_param.pass.cpp 58 int kp = -1; local
77 if (k != kp)
85 kp = k;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 63 int kp = -1; local
82 if (k != kp)
90 kp = k;
113 int kp = -1;
132 if (k != kp)
140 kp = k;
163 int kp = -1;
182 if (k != kp)
190 kp = k;
213 int kp = -1
    [all...]
eval_param.pass.cpp 62 int kp = -1; local
81 if (k != kp)
89 kp = k;
  /external/jemalloc/test/unit/
ckh.c 55 void **kp, **vp; local
58 kp = (i & 1) ? &k.p : NULL;
62 assert_false(ckh_search(&ckh, strs[i], kp, vp),
81 void **kp, **vp; local
84 kp = (i & 1) ? &k.p : NULL;
88 assert_false(ckh_remove(tsd, &ckh, strs[i], kp, vp),
  /external/libedit/src/
emacs.c 93 Char *cp, *p, *kp; local
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
103 *kp++ = *p;
104 el->el_chared.c_kill.last = kp;
122 Char *kp, *cp; local
139 for (kp = el->el_chared.c_kill.buf; kp < el->el_chared.c_kill.last; kp++)
140 *cp++ = *kp;
158 Char *kp, *cp local
180 Char *kp, *cp; local
213 Char *kp, *cp; local
    [all...]
common.c 114 Char *cp, *p, *kp; local
122 for (p = cp, kp = el->el_chared.c_kill.buf; p < el->el_line.cursor; p++)
123 *kp++ = *p;
124 el->el_chared.c_kill.last = kp;
189 Char *kp, *cp; local
192 kp = el->el_chared.c_kill.buf;
194 *kp++ = *cp++; /* copy it */
195 el->el_chared.c_kill.last = kp;
  /frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
TestEnrollmentActivity.java 59 Keyphrase kp = new Keyphrase(KEYPHRASE_ID, RECOGNITION_MODES, BCP47_LOCALE, TEXT, local
66 new Keyphrase[] { kp });
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherRSAThread.java 38 KeyPair kp = kpg.generateKeyPair(); local
42 cip.init(Cipher.ENCRYPT_MODE, kp.getPublic());
45 cip.init(Cipher.DECRYPT_MODE, kp.getPrivate());
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 211 KeyPair kp = kpGenerator.generateKeyPair(); local
213 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /developers/samples/android/security/keystore/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 211 KeyPair kp = kpGenerator.generateKeyPair(); local
213 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 211 KeyPair kp = kpGenerator.generateKeyPair(); local
213 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /external/freetype/src/base/
fthash.c 53 const char* kp = key->str; local
58 while ( *kp )
59 res = ( res << 5 ) - res + (FT_ULong)*kp++;
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainProcessor.java 28 private final KeepProcessor kp; field in class:MainProcessor
47 kp = keepList.isEmpty() ? null : new KeepProcessor(keepList);
52 if (kp != null)
53 processors.add(kp);
61 if (kp == null)
76 for (String exclude : kp.getExcludes()) {
95 if (kp != null)
  /external/pdfium/third_party/freetype/src/type1/
t1afm.c 116 AFM_KernPair kp; local
172 kp = fi->KernPairs;
202 kp->index1 = FT_Get_Char_Index( t1_face, p[0] );
203 kp->index2 = FT_Get_Char_Index( t1_face, p[1] );
205 kp->x = (FT_Int)FT_PEEK_SHORT_LE(p + 2);
206 kp->y = 0;
208 kp++;
  /external/tcpdump/
print-krb.c 151 register const struct krb *kp; local
157 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0)
158 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp))
160 kp = (const struct krb *)cp;
162 if ((&kp->type) >= ndo->ndo_snapend) {
167 type = kp->type & (0xFF << 1);
170 IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type)));
201 len = KTOHSP(kp, cp)
229 register const struct krb *kp; local
    [all...]
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
97 int e = me.e(&ip, &kp);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
SslUtil.java 70 KeyPair kp = kg.generateKeyPair(); local
71 return kp;
  /external/xmlrpcpp/src/
XmlRpcServerConnection.cpp 84 char *kp = 0; // Start of connection value local
90 kp = cp + 12;
130 if (kp == 0 || strncasecmp(kp, "keep-alive", 10) != 0)
133 if (kp != 0 && strncasecmp(kp, "close", 5) == 0)

Completed in 879 milliseconds

1 2 3