/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
D | PacketKexInit.java | 23 KexParameters kp = new KexParameters(); field in PacketKexInit 27 kp.cookie = new byte[16]; in PacketKexInit() 28 rnd.nextBytes(kp.cookie); in PacketKexInit() 30 kp.kex_algorithms = cwl.kexAlgorithms; in PacketKexInit() 31 kp.server_host_key_algorithms = cwl.serverHostKeyAlgorithms; in PacketKexInit() 32 kp.encryption_algorithms_client_to_server = cwl.c2s_enc_algos; in PacketKexInit() 33 kp.encryption_algorithms_server_to_client = cwl.s2c_enc_algos; in PacketKexInit() 34 kp.mac_algorithms_client_to_server = cwl.c2s_mac_algos; in PacketKexInit() 35 kp.mac_algorithms_server_to_client = cwl.s2c_mac_algos; in PacketKexInit() 36 kp.compression_algorithms_client_to_server = new String[] { "none" }; in PacketKexInit() [all …]
|
/external/dropbear/libtomcrypt/src/ciphers/ |
D | skipjack.c | 91 tmp = g_func(w1, &kp, skey->skipjack.key); \ 97 tmp = g_func(w1, &kp, skey->skipjack.key); \ 104 w1 = ig_func(w2, &kp, skey->skipjack.key); \ 108 tmp = ig_func(w2, &kp, skey->skipjack.key); \ 112 static unsigned g_func(unsigned w, int *kp, unsigned char *key) in g_func() argument 117 g1 ^= sbox[g2^key[*kp]]; *kp = keystep[*kp]; in g_func() 118 g2 ^= sbox[g1^key[*kp]]; *kp = keystep[*kp]; in g_func() 119 g1 ^= sbox[g2^key[*kp]]; *kp = keystep[*kp]; in g_func() 120 g2 ^= sbox[g1^key[*kp]]; *kp = keystep[*kp]; in g_func() 124 static unsigned ig_func(unsigned w, int *kp, unsigned char *key) in ig_func() argument [all …]
|
/external/kernel-headers/original/linux/ |
D | moduleparam.h | 32 typedef int (*param_set_fn)(const char *val, struct kernel_param *kp); 34 typedef int (*param_get_fn)(char *buffer, struct kernel_param *kp); 107 extern int param_set_byte(const char *val, struct kernel_param *kp); 108 extern int param_get_byte(char *buffer, struct kernel_param *kp); 111 extern int param_set_short(const char *val, struct kernel_param *kp); 112 extern int param_get_short(char *buffer, struct kernel_param *kp); 115 extern int param_set_ushort(const char *val, struct kernel_param *kp); 116 extern int param_get_ushort(char *buffer, struct kernel_param *kp); 119 extern int param_set_int(const char *val, struct kernel_param *kp); 120 extern int param_get_int(char *buffer, struct kernel_param *kp); [all …]
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
D | KeyPairTest.java | 78 Object kp = new KeyPair(null, null); 79 assertTrue(kp instanceof KeyPair); 89 Object kp = new KeyPair(TestKeyPair.getPublic(), TestKeyPair.getPrivate()); 90 assertTrue(kp instanceof KeyPair); 98 KeyPair kp = new KeyPair(null, null); 99 assertNull(kp.getPrivate()); 109 KeyPair kp = new KeyPair(null, pk); 110 assertSame(pk, kp.getPrivate()); 118 KeyPair kp = new KeyPair(null, null); 119 assertNull(kp.getPublic()); [all …]
|
D | KeyPairGenerator3Test.java | 97 KeyPair kp, kp1; in testGenKeyPair01() local 101 kp = kpg[i].generateKeyPair(); in testGenKeyPair01() 103 assertFalse("Incorrect private key", kp.getPrivate().equals( in testGenKeyPair01() 105 assertFalse("Incorrect public key", kp.getPublic().equals( in testGenKeyPair01() 123 KeyPair kp, kp1; in testGenKeyPair02() local 125 kp = kpg[i].generateKeyPair(); in testGenKeyPair02() 127 assertFalse("Incorrect private key", kp.getPrivate().equals( in testGenKeyPair02() 129 assertFalse("Incorrect public key", kp.getPublic().equals( in testGenKeyPair02()
|
D | SignerTest.java | 57 …KeyPair kp = new KeyPair(new PublicKeyStub("public", "SignerTest.testToString", null), new Private… in test_toString() local 58 s1.setKeyPair(kp); in test_toString() 61 s2.setKeyPair(kp); in test_toString() 103 KeyPair kp = new KeyPair(publicKey, privateKey); in testGetPrivateKey() local 109 s.setKeyPair(kp); in testGetPrivateKey()
|
D | KeyPairGeneratorSpiTest.java | 76 KeyPair kp = keyPairGen.generateKeyPair(); in testKeyPairGeneratorSpi01() local 77 assertNull("Not null KeyPair", kp); in testKeyPairGeneratorSpi01()
|
/external/tcpdump/ |
D | print-krb.c | 155 register const struct krb *kp; in krb4_print() local 161 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0) in krb4_print() argument 162 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp)) in krb4_print() argument 164 kp = (struct krb *)cp; in krb4_print() 166 if ((&kp->type) >= snapend) { in krb4_print() 171 type = kp->type & (0xFF << 1); in krb4_print() 174 IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type)); in krb4_print() 205 len = KTOHSP(kp, cp); in krb4_print() 214 printf(" %s ", tok2str(kerr2str, NULL, KTOHSP(kp, cp))); in krb4_print() 232 register const struct krb *kp; in krb_print() local [all …]
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
D | event_test.cc | 224 kp = new KernelProxy(); in SetUp() 225 kp->Init(NULL); in SetUp() 226 EXPECT_EQ(0, kp->umount("/")); in SetUp() 227 EXPECT_EQ(0, kp->mount("", "/", "memfs", 0, NULL)); in SetUp() 233 delete kp; in TearDown() 255 kp->close(fds[index]); in CloseFDs() 259 KernelProxy* kp; member in SelectPollTest 272 fds[0] = kp->open("/test.txt", O_CREAT | O_WRONLY); in TEST_F() 273 fds[1] = kp->open("/test.txt", O_RDONLY); in TEST_F() 279 ASSERT_EQ(2, kp->poll(pollfds, 2, 0)); in TEST_F() [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/chacha/ |
D | chacha_vec.c | 172 unsigned iters, i, *op=(unsigned *)out, *ip=(unsigned *)in, *kp; in CRYPTO_chacha_20_neon() local 183 kp = (unsigned *)key; in CRYPTO_chacha_20_neon() 191 kp = (unsigned *)key; in CRYPTO_chacha_20_neon() 198 s1 = LOAD(&((vec*)kp)[0]); in CRYPTO_chacha_20_neon() 199 s2 = LOAD(&((vec*)kp)[1]); in CRYPTO_chacha_20_neon() 238 x4 = kp[0]; x5 = kp[1]; x6 = kp[2]; x7 = kp[3]; in CRYPTO_chacha_20_neon() 239 x8 = kp[4]; x9 = kp[5]; x10 = kp[6]; x11 = kp[7]; in CRYPTO_chacha_20_neon() 284 op[4] = REVW_BE(REVW_BE(ip[4]) ^ (x4 + kp[0])); in CRYPTO_chacha_20_neon() 285 op[5] = REVW_BE(REVW_BE(ip[5]) ^ (x5 + kp[1])); in CRYPTO_chacha_20_neon() 286 op[6] = REVW_BE(REVW_BE(ip[6]) ^ (x6 + kp[2])); in CRYPTO_chacha_20_neon() [all …]
|
/external/chromium_org/base/process/ |
D | process_handle_openbsd.cc | 31 struct kinfo_proc kp; in GetProcessExecutablePath() local 39 if (sysctl(mib, arraysize(mib), &kp, &len, NULL, 0) < 0) in GetProcessExecutablePath() 41 if ((kp.p_flag & P_SYSTEM) != 0) in GetProcessExecutablePath() 43 if (strcmp(kp.p_comm, "chrome") == 0) in GetProcessExecutablePath() 44 return FilePath(kp.p_comm); in GetProcessExecutablePath()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | AMutableDictionary.m | 93 ACBKey *kp; 98 kp = [ACBKey newKeyWithKStr:aKey]; 102 kp = aKey; 111 node = [root search:kp.key]; 113 ret = [node searchnode:kp.key match:YES]; 121 if ( mustRelease ) [kp release]; 127 ACBKey *kp; 130 kp = [ACBKey newKeyWithKStr:aKey]; 134 kp = (ACBKey *)aKey; 141 if ( [root search:kp.key] == nil ) { [all …]
|
D | ACBTree.m | 100 - (ACBTree *)createnode:(ACBKey *)kp 110 //tmp.keys[0] = kp; 160 - (ACBTree *)insertkey:(ACBKey *)kp value:(id)value 166 q = [self internalinsert:kp value:value split:&h]; 323 /** Search key kp on B-tree with root t; if found increment counter. 324 * otherwise insert an item with key kp in tree. If an ACBKey 325 * emerges to be passed to a lower level, then assign it to kp; 328 - (ACBTree *) internalinsert:(ACBKey *)kp value:(id)value split:(NSInteger *)h 335 ret = [keys[i].key compare:kp.key]; 342 q = [self insert:kp value:value index:i split:h]; [all …]
|
/external/chromium_org/third_party/smhasher/src/ |
D | DifferentialTest.h | 33 keytype kp = diffs[0]; in ProcessDifferentials() local 37 if(diffs[i] == kp) in ProcessDifferentials() 52 printbits((unsigned char*)&kp,sizeof(kp)); in ProcessDifferentials() 61 kp = diffs[i]; in ProcessDifferentials() 72 printbits((unsigned char*)&kp,sizeof(kp)); in ProcessDifferentials()
|
/external/clang/test/PCH/ |
D | cuda-kernel-call.cu | 10 void kcall(void (*kp)()) { in kcall() argument 11 kp<<<1, 1>>>(); in kcall()
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
D | cryptoparams.h | 39 const std::string& kp, const std::string& sp) in CryptoParams() 40 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {} in CryptoParams()
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
D | cryptoparams.h | 39 const std::string& kp, const std::string& sp) in CryptoParams() 40 : tag(t), cipher_suite(cs), key_params(kp), session_params(sp) {} in CryptoParams()
|
/external/opencv/cv/src/ |
D | cvinpaint.cpp | 334 int km=k-1+(k==1),kp=k-1-(k==t->rows-2); in icvTeleaInpaintFMM() local 365 …gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,l… in icvTeleaInpaintFMM() 367 …gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,… in icvTeleaInpaintFMM() 371 …gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,… in icvTeleaInpaintFMM() 447 int km=k-1+(k==1),kp=k-1-(k==t->rows-2); in icvTeleaInpaintFMM() local 478 … gradI.y=(float)((CV_MAT_ELEM(*out,uchar,kp+1,lm)-CV_MAT_ELEM(*out,uchar,km-1,lm)))*2.0f; in icvTeleaInpaintFMM() 480 … gradI.y=(float)((CV_MAT_ELEM(*out,uchar,kp+1,lm)-CV_MAT_ELEM(*out,uchar,km,lm))); in icvTeleaInpaintFMM() 484 … gradI.y=(float)((CV_MAT_ELEM(*out,uchar,kp,lm)-CV_MAT_ELEM(*out,uchar,km-1,lm))); in icvTeleaInpaintFMM() 542 int km=k-1+(k==1),kp=k-1-(k==f->rows-2); in icvNSInpaintFMM() local 555 …gradI.x=(float)(abs(CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,kp,… in icvNSInpaintFMM() [all …]
|
/external/freetype/src/psaux/ |
D | afmparse.c | 687 AFM_KernPair kp; in afm_parse_kern_pairs() local 726 kp = fi->KernPairs + n; in afm_parse_kern_pairs() 736 kp->index1 = shared_vals[0].u.i; in afm_parse_kern_pairs() 737 kp->index2 = shared_vals[1].u.i; in afm_parse_kern_pairs() 740 kp->x = 0; in afm_parse_kern_pairs() 741 kp->y = shared_vals[2].u.i; in afm_parse_kern_pairs() 745 kp->x = shared_vals[2].u.i; in afm_parse_kern_pairs() 746 kp->y = ( token == AFM_TOKEN_KP && r == 4 ) in afm_parse_kern_pairs()
|
/external/chromium_org/third_party/freetype/src/psaux/ |
D | afmparse.c | 687 AFM_KernPair kp; in afm_parse_kern_pairs() local 726 kp = fi->KernPairs + n; in afm_parse_kern_pairs() 736 kp->index1 = shared_vals[0].u.i; in afm_parse_kern_pairs() 737 kp->index2 = shared_vals[1].u.i; in afm_parse_kern_pairs() 740 kp->x = 0; in afm_parse_kern_pairs() 741 kp->y = shared_vals[2].u.i; in afm_parse_kern_pairs() 745 kp->x = shared_vals[2].u.i; in afm_parse_kern_pairs() 746 kp->y = ( token == AFM_TOKEN_KP && r == 4 ) in afm_parse_kern_pairs()
|
/external/qemu/distrib/jpeg-6b/ |
D | ansi2knr.c | 514 char *kp; local 517 while ( (kp = *key) != 0 ) 518 { if ( strlen(kp) == len && !strncmp(kp, buf, len) )
|
/external/jpeg/ |
D | ansi2knr.c | 514 char *kp; local 517 while ( (kp = *key) != 0 ) 518 { if ( strlen(kp) == len && !strncmp(kp, buf, len) )
|
/external/clang/test/FixIt/ |
D | fixit-cxx0x.cpp | 91 int *ip; char *kp; variable 97 int e = me.e(&ip, &kp);
|
/external/libpng/ |
D | pngwutil.c | 1232 png_charp kp, dp; in png_check_keyword() local 1256 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++) in png_check_keyword() 1258 if ((png_byte)*kp < 0x20 || in png_check_keyword() 1259 ((png_byte)*kp > 0x7E && (png_byte)*kp < 0xA1)) in png_check_keyword() 1265 "invalid keyword character 0x%02X", (png_byte)*kp); in png_check_keyword() 1274 *dp = *kp; in png_check_keyword() 1280 kp = *new_key + key_len - 1; in png_check_keyword() 1281 if (*kp == ' ') in png_check_keyword() 1285 while (*kp == ' ') in png_check_keyword() 1287 *(kp--) = '\0'; in png_check_keyword() [all …]
|
/external/qemu/distrib/libpng-1.2.19/ |
D | pngwutil.c | 1209 png_charp kp, dp; in png_check_keyword() local 1232 for (kp = key, dp = *new_key; *kp != '\0'; kp++, dp++) in png_check_keyword() 1234 if ((png_byte)*kp < 0x20 || in png_check_keyword() 1235 ((png_byte)*kp > 0x7E && (png_byte)*kp < 0xA1)) in png_check_keyword() 1241 "invalid keyword character 0x%02X", (png_byte)*kp); in png_check_keyword() 1250 *dp = *kp; in png_check_keyword() 1256 kp = *new_key + key_len - 1; in png_check_keyword() 1257 if (*kp == ' ') in png_check_keyword() 1261 while (*kp == ' ') in png_check_keyword() 1263 *(kp--) = '\0'; in png_check_keyword() [all …]
|