HomeSort by relevance Sort by last modified time
    Searched refs:pp (Results 101 - 125 of 410) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator2Test.java 84 AlgorithmParameterSpec pp = null; local
85 algParGen.init(pp, new SecureRandom());
86 algParGen.init(pp);
88 algParGen.init(pp, null);
92 pp = new tmpAlgorithmParameterSpec("Proba");
93 algParGen.init(pp, new SecureRandom());
94 algParGen.init(pp);
KeyPairGenerator2Test.java 90 AlgorithmParameterSpec pp = null; local
94 keyPairGen.initialize(pp, new SecureRandom());
118 keyPairGen.initialize(pp, new SecureRandom());
133 keyPairGen.initialize(pp, new SecureRandom());
134 keyPairGen.initialize(pp);
143 keyPairGen.initialize(pp, null);
147 keyPairGen.initialize(pp, new SecureRandom());
KeyStore2Test.java 631 KeyStore.PasswordProtection pp = new KeyStore.PasswordProtection(pssWord); local
636 keyTest.setEntry("symKey", pkEntry, pp);
670 KeyStore.PasswordProtection pp = new KeyStore.PasswordProtection( local
677 keyTest.setEntry("alias1", pke, pp);
678 keyTest.setEntry("alias2", pke1, pp);
765 KeyStore.PasswordProtection pp = new KeyStore.PasswordProtection(pssWord); local
766 assertNull(keyTest.getEntry("alias", pp));
771 keyTest.setEntry("alias1", pke1, pp);
772 keyTest.setEntry("alias2", pke2, pp);
774 assertNull(keyTest.getEntry("alias", pp));
815 KeyStore.PasswordProtection pp = new KeyStore.PasswordProtection(pssWord); local
    [all...]
  /system/core/run-as/
package.c 349 /* Parse one or more whitespace characters starting from '*pp'
350 * until 'end' is reached. Updates '*pp' on exit.
355 parse_spaces(const char** pp, const char* end)
357 const char* p = *pp;
364 *pp = p;
368 /* Parse a positive decimal number starting from '*pp' until 'end'
369 * is reached. Adjust '*pp' on exit. Return decimal value or -1
375 * If '*pp' does not start with a decimal digit, -1 is returned
379 parse_positive_decimal(const char** pp, const char* end)
381 const char* p = *pp;
    [all...]
  /external/quake/quake/src/WinQuake/
net_main.cpp 929 PollProcedure *pp; local
948 for (pp = pollProcedureList; pp; pp = pp->next)
950 if (pp->nextTime > net_time)
952 pollProcedureList = pp->next;
953 pp->procedure(pp->arg);
960 PollProcedure *pp, *prev local
    [all...]
  /bionic/libc/upstream-netbsd/libc/inet/
inet_pton.c 107 u_int *pp = parts; local
156 if (pp >= parts + 3)
158 *pp++ = val;
172 n = pp - parts + 1;
  /external/clang/include/clang/Lex/
PTHLexer.h 64 PTHLexer(Preprocessor& pp, FileID FID, const unsigned char *D,
  /external/e2fsprogs/lib/blkid/
getsize.c 90 struct partition *pp; local
148 pp = &lab.d_partitions[part];
149 if (pp->p_size)
150 return pp->p_size << 9;
  /external/openssl/crypto/pkcs7/
verify.c 82 char *pp; local
103 pp=NULL;
122 pp=argv[0];
128 if (pp == NULL)
  /frameworks/rs/
rsPath.h 41 Path(Context *, RsPathPrimitive pp, bool isStatic, Allocation *vtx, Allocation *loop, float q);
  /external/clang/lib/Rewrite/Frontend/
HTMLPrint.cpp 36 Preprocessor &PP;
40 HTMLPrinter(raw_ostream *OS, Preprocessor &pp,
42 : Out(OS), PP(pp), SyntaxHighlight(_SyntaxHighlight),
51 Preprocessor &PP,
54 return new HTMLPrinter(OS, PP, SyntaxHighlight, HighlightMacros);
62 if (PP.getDiagnostics().hasErrorOccurred())
84 if (SyntaxHighlight) html::SyntaxHighlight(R, FID, PP);
85 if (HighlightMacros) html::HighlightMacros(R, FID, PP);
  /external/openssl/crypto/ecdsa/
ecdsa.h 94 /** DER encode content of ECDSA_SIG object (note: this function modifies *pp
95 * (*pp += length of the DER encoded signature)).
97 * \param pp pointer to a unsigned char pointer for the output or NULL
100 int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
102 /** Decodes a DER encoded ECDSA signature (note: this function changes *pp
103 * (*pp += len)).
105 * \param pp memory buffer with the DER encoded signature
109 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
  /external/openssl/include/openssl/
ecdsa.h 94 /** DER encode content of ECDSA_SIG object (note: this function modifies *pp
95 * (*pp += length of the DER encoded signature)).
97 * \param pp pointer to a unsigned char pointer for the output or NULL
100 int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
102 /** Decodes a DER encoded ECDSA signature (note: this function changes *pp
103 * (*pp += len)).
105 * \param pp memory buffer with the DER encoded signature
109 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
  /hardware/msm7k/librpc/
xdr.c 248 * translated. pp references a pointer to storage. If *pp is null
255 caddr_t *pp, /* the pointer to work on */
261 if (*pp == NULL) {
267 *pp = (caddr_t) mem_alloc (size);
268 if (*pp == NULL) return FALSE;
269 memset(*pp, 0, size);
276 stat = (*proc) (xdrs, *pp, LASTUNSIGNED);
279 mem_free(*pp);
280 *pp = NULL
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
KeyStoreBuilderParametersTest.java 40 KeyStore.ProtectionParameter pp = new ProtectionParameterImpl(); local
41 KeyStore.Builder bld = KeyStore.Builder.newInstance("testType", null, pp);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyPairGenerator2Test.java 87 AlgorithmParameterSpec pp = null; local
91 keyPairGen.initialize(pp, new SecureRandom());
115 keyPairGen.initialize(pp, new SecureRandom());
130 keyPairGen.initialize(pp, new SecureRandom());
131 keyPairGen.initialize(pp);
140 keyPairGen.initialize(pp, null);
144 keyPairGen.initialize(pp, new SecureRandom());
  /external/libnfc-nci/src/nfc/nfc/
nfc_ncif.c 141 UINT8 *pp; local
213 pp = (UINT8 *)(p + 1) + p->offset;
215 memcpy (pp, ps, ulen);
225 pp = (UINT8 *)(p + 1) + p->offset;
227 NCI_DATA_PBLD_HDR(pp, pbf, hdr0, ulen);
366 UINT8 mt, pbf, gid, *p, *pp; local
373 pp = p;
374 NCI_MSG_PRS_HDR0 (pp, mt, pbf, gid);
386 oid = ((*pp) & NCI_OID_MASK);
771 UINT8 *pp, len_act local
1455 UINT8 *pp, cid; local
    [all...]
  /external/icu4c/i18n/
unum.cpp 328 ParsePosition pp; local
331 pp.setIndex(*parsePos);
333 ((const NumberFormat*)fmt)->parse(src, res, pp);
335 if(pp.getErrorIndex() != -1) {
338 *parsePos = pp.getErrorIndex();
341 *parsePos = pp.getIndex();
427 ParsePosition pp; local
429 pp.setIndex(*parsePos);
432 LocalPointer<CurrencyAmount> currAmt(((const NumberFormat*)fmt)->parseCurrency(src, pp));
433 if (pp.getErrorIndex() != -1)
    [all...]
  /external/openssl/crypto/srp/
srp_vfy.c 366 char **pp; local
393 pp = sk_OPENSSL_PSTRING_value(tmpdb->data,i);
394 if (pp[DB_srptype][0] == DB_SRP_INDEX)
401 if (!(gN->id = BUF_strdup(pp[DB_srpid]))
402 || !(gN->N = SRP_gN_place_bn(vb->gN_cache,pp[DB_srpverifier]))
403 || !(gN->g = SRP_gN_place_bn(vb->gN_cache,pp[DB_srpsalt]))
411 last_index = pp[DB_srpid];
414 else if (pp[DB_srptype][0] == DB_SRP_VALID)
418 if ((lgN = SRP_get_gN_by_id(pp[DB_srpgN],SRP_gN_tab))!=NULL)
425 if (!SRP_user_pwd_set_ids(user_pwd, pp[DB_srpid],pp[DB_srpinfo])
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldDateFormatTest.java 379 ParsePosition pp = new ParsePosition(0); local
380 int parseIndex = pp.getIndex();
381 Date result = (Date) df.parseObject(df.format(current), pp);
391 assertTrue("ParseIndex is incorrect", pp.getIndex() != parseIndex);
394 pp.setIndex(0);
398 result = (Date) df.parseObject(partialCorrect, pp);
400 assertTrue("ParseIndex is incorrect", pp.getIndex() == 0);
402 pp.getErrorIndex() == cur.length / 2);
404 pp.setIndex(2);
406 char [] newArray = new char[curDate.length + pp.getIndex()]
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_cmac.c 219 UINT8 *pp = p->param_buf; local
221 print128(pp, (const UINT8 *)"K1 before shift");
224 if ( (pp[BT_OCTET16_LEN - 1] & 0x80) != 0 )
227 leftshift_onebit(pp, k1);
232 leftshift_onebit(pp, k1);
  /external/openssl/apps/
sess_id.c 99 const char **pp; local
159 for (pp=sess_id_usage; (*pp != NULL); pp++)
160 BIO_printf(bio_err,"%s",*pp);
  /external/openssl/crypto/asn1/
a_utctm.c 66 int i2d_ASN1_UTCTIME(ASN1_UTCTIME *a, unsigned char **pp)
69 return(i2d_ASN1_bytes((ASN1_STRING *)a,pp,
80 return i2d_ASN1_bytes(&x, pp, V_ASN1_UTCTIME,V_ASN1_UNIVERSAL);
85 ASN1_UTCTIME *d2i_ASN1_UTCTIME(ASN1_UTCTIME **a, unsigned char **pp,
90 ret=(ASN1_UTCTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length,
  /libcore/luni/src/main/java/java/security/
KeyStoreSpi.java 304 KeyStore.ProtectionParameter pp = param.getProtectionParameter(); local
305 if (pp instanceof KeyStore.PasswordProtection) {
307 pwd = ((KeyStore.PasswordProtection) pp).getPassword();
314 if (pp instanceof KeyStore.CallbackHandlerProtection) {
316 pwd = getPasswordFromCallBack(pp);
  /external/speex/libspeex/
ltp.c 396 int pp=pitch-1; local
400 if (j-pp<0)
401 e[j]=exc2[j-pp];
402 else if (j-pp-pitch<0)
403 e[j]=exc2[j-pp-pitch];
504 int pp=pitch+1-i; local
506 if (tmp1>pp)
507 tmp1=pp;
509 exc[j]=MAC16_16(exc[j],SHL16(gain[2-i],7),exc2[j-pp]);
511 if (tmp3>pp+pitch
737 int pp=pitch+1-i; local
    [all...]

Completed in 994 milliseconds

1 2 3 45 6 7 8 91011>>