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

1 2 3

  /external/chromium_org/base/process/
process_handle_openbsd.cc 31 struct kinfo_proc kp; local
39 if (sysctl(mib, arraysize(mib), &kp, &len, NULL, 0) < 0)
41 if ((kp.p_flag & P_SYSTEM) != 0)
43 if (strcmp(kp.p_comm, "chrome") == 0)
44 return FilePath(kp.p_comm);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyPairGeneratorSpiTest.java 75 KeyPair kp = keyPairGen.generateKeyPair(); local
76 assertNull("Not null KeyPair", kp);
KeyPairGenerator3Test.java 97 KeyPair kp, kp1; local
101 kp = kpg[i].generateKeyPair();
103 assertFalse("Incorrect private key", kp.getPrivate().equals(
105 assertFalse("Incorrect public key", kp.getPublic().equals(
123 KeyPair kp, kp1; local
125 kp = kpg[i].generateKeyPair();
127 assertFalse("Incorrect private key", kp.getPrivate().equals(
129 assertFalse("Incorrect public key", kp.getPublic().equals(
SignerTest.java 57 KeyPair kp = new KeyPair(new PublicKeyStub("public", "SignerTest.testToString", null), new PrivateKeyStub("private", "SignerTest.testToString", null)); local
58 s1.setKeyPair(kp);
61 s2.setKeyPair(kp);
103 KeyPair kp = new KeyPair(publicKey, privateKey); local
109 s.setKeyPair(kp);
  /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 65 KeyPair kp = new KeyPair(new PublicKeyStub("public", "SignerTest.testToString", null), local
67 s1.setKeyPair(kp);
70 s2.setKeyPair(kp);
129 KeyPair kp = new KeyPair(publicKey, privateKey); local
135 s.setKeyPair(kp);
153 KeyPair kp = new KeyPair(null, null); local
155 s.setKeyPair(kp);
  /external/jemalloc/test/unit/
ckh.c 49 void **kp, **vp; local
52 kp = (i & 1) ? &k.p : NULL;
56 assert_false(ckh_search(&ckh, strs[i], kp, vp),
75 void **kp, **vp; local
78 kp = (i & 1) ? &k.p : NULL;
82 assert_false(ckh_remove(&ckh, strs[i], kp, vp),
  /external/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;
  /ndk/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;
  /external/chromium_org/third_party/smhasher/src/
DifferentialTest.h 33 keytype kp = diffs[0]; local
37 if(diffs[i] == kp)
52 printbits((unsigned char*)&kp,sizeof(kp));
61 kp = diffs[i];
72 printbits((unsigned char*)&kp,sizeof(kp));
  /external/conscrypt/src/test/java/org/conscrypt/
SignatureTest.java 95 KeyPair kp = new KeyPair(pubKey, privKey); local
101 test_Signature(sig1, kp);
  /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...]
  /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 189 KeyPair kp = kpGenerator.generateKeyPair(); local
190 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 189 KeyPair kp = kpGenerator.generateKeyPair(); local
190 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 189 KeyPair kp = kpGenerator.generateKeyPair(); local
190 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /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/jpeg/
ansi2knr.c 514 char *kp; local
517 while ( (kp = *key) != 0 )
518 { if ( strlen(kp) == len && !strncmp(kp, buf, len) )
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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/qemu/distrib/jpeg-6b/
ansi2knr.c 514 char *kp; local
517 while ( (kp = *key) != 0 )
518 { if ( strlen(kp) == len && !strncmp(kp, buf, len) )
  /external/tcpdump/
print-krb.c 155 register const struct krb *kp; local
161 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0)
162 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp))
164 kp = (struct krb *)cp;
166 if ((&kp->type) >= snapend) {
171 type = kp->type & (0xFF << 1);
174 IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type));
205 len = KTOHSP(kp, cp)
232 register const struct krb *kp; local
    [all...]

Completed in 1708 milliseconds

1 2 3