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

1 2 34 5 6 7 8 91011>>

  /external/linux-tools-perf/util/
probe-event.c 75 static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
190 struct perf_probe_point *pp)
202 ret = find_perf_probe_point((unsigned long)addr, pp);
207 pp->function = strdup(tp->symbol);
208 if (pp->function == NULL)
210 pp->offset = tp->offset;
212 pp->retprobe = tp->retprobe;
531 struct perf_probe_point *pp)
540 pp->function = strdup(tp->symbol);
541 if (pp->function == NULL
684 struct perf_probe_point *pp = &pev->point; local
1335 struct perf_probe_point *pp = &pev->point; local
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Makefile 21 OCAMLCFLAGS += -pp camlp4of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Makefile 21 OCAMLCFLAGS += -pp camlp4of
  /external/openssl/crypto/x509v3/
v3_ocsp.c 79 static int i2d_ocsp_nonce(void *a, unsigned char **pp);
80 static void *d2i_ocsp_nonce(void *a, const unsigned char **pp, long length);
211 static int i2d_ocsp_nonce(void *a, unsigned char **pp)
214 if(pp) {
215 memcpy(*pp, os->data, os->length);
216 *pp += os->length;
221 static void *d2i_ocsp_nonce(void *a, const unsigned char **pp, long length)
227 if(!ASN1_OCTET_STRING_set(os, *pp, length)) goto err;
229 *pp += length;
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStoreBuilderTest.java 120 KeyStore.ProtectionParameter[] pp = { protPass, protPass1, local
122 for (int i = 0; i < pp.length; i++) {
125 KeyStore.Builder.newInstance(ks, pp[i]);
132 ksB = KeyStore.Builder.newInstance(ks, pp[i]);
136 ksB = KeyStore.Builder.newInstance(ks, pp[i]);
148 assertEquals(ksB.getProtectionParameter("aaa"), pp[i]);
154 assertEquals(ksB.getProtectionParameter("Bad alias"), pp[i]);
161 assertEquals(ksB.getProtectionParameter(""), pp[i]);
186 assertEquals(pPar, pp[i]);
397 KeyStore.ProtectionParameter[] pp = { protPass, myPP, callbackHand } local
    [all...]
  /external/openssl/crypto/asn1/
a_object.c 67 int i2d_ASN1_OBJECT(ASN1_OBJECT *a, unsigned char **pp)
75 if (pp == NULL) return objsize;
77 p= *pp;
82 *pp=p;
258 ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
266 p= *pp;
280 if(ret) *pp = p;
286 ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
296 for (i = 0, p = *pp; i < len; i++, p++)
314 p= *pp;
    [all...]
asn1_par.c 67 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length,
102 int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent)
104 return(asn1_parse2(bp,&pp,len,0,0,indent,0));
107 int ASN1_parse_dump(BIO *bp, const unsigned char *pp, long len, int indent, int dump)
109 return(asn1_parse2(bp,&pp,len,0,0,indent,dump));
112 static int asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset,
129 p= *pp;
149 if (BIO_printf(bp,"%5ld:",(long)offset+(long)(op- *pp))
182 offset+(p - *pp),depth+1,
192 offset+(p - *pp),depth+1
    [all...]
a_int.c 114 int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp)
148 if (pp == NULL) return(ret);
149 p= *pp;
172 *pp+=ret;
178 ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
194 p= *pp;
256 *pp=pend;
271 ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
289 p= *pp;
326 *pp=p
    [all...]
n_pkey.c 114 int i2d_Netscape_RSA(const RSA *a, unsigned char **pp,
118 return i2d_RSA_NET(a, pp, cb, 0);
121 int i2d_RSA_NET(const RSA *a, unsigned char **pp,
162 if (pp == NULL)
229 ret = i2d_NETSCAPE_ENCRYPTED_PKEY(enckey, pp);
238 RSA *d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length,
242 return d2i_RSA_NET(a, pp, length, cb, 0);
245 RSA *d2i_RSA_NET(RSA **a, const unsigned char **pp, long length,
253 p = *pp;
277 *pp = p
    [all...]
  /external/openssl/crypto/txt_db/
txt_db.c 81 OPENSSL_STRING *pp; local
129 pp=(char **)p;
132 pp[n++]=p;
149 pp[n++]=p;
165 pp[n]=p;
166 if (!sk_OPENSSL_PSTRING_push(ret->data,pp))
258 char *p,**pp,*f; local
268 pp=sk_OPENSSL_PSTRING_value(db->data,i);
273 if (pp[j] != NULL)
274 l+=strlen(pp[j])
    [all...]
  /bionic/libc/netbsd/resolv/
res_init.c 171 register char *cp, **pp; local
250 pp = statp->dnsrch;
251 *pp++ = cp;
252 for (n = 0; *cp && pp < statp->dnsrch + MAXDNSRCH; cp++) {
259 *pp++ = cp;
268 *pp++ = 0;
321 pp = statp->dnsrch;
322 *pp++ = cp;
323 for (n = 0; *cp && pp < statp->dnsrch + MAXDNSRCH; cp++) {
328 *pp++ = cp
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyPairGenerator1.java 49 public MyKeyPairGenerator1(String pp) {
50 super(pp);
  /external/clang/include/clang/Lex/
PTHManager.h 65 /// PP - The Preprocessor object that will use this PTHManager to create
67 Preprocessor* PP;
123 void setPreprocessor(Preprocessor *pp) { PP = pp; }
  /external/harfbuzz_ng/src/
hb-buffer-serialize.cc 245 parse_uint (const char *pp, const char *end, uint32_t *pv)
248 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - pp));
249 strncpy (buf, pp, len);
258 if (errno || p == pend || pend - p != end - pp)
266 parse_int (const char *pp, const char *end, int32_t *pv)
269 unsigned int len = MIN (ARRAY_LENGTH (buf) - 1, (unsigned int) (end - pp));
270 strncpy (buf, pp, len);
279 if (errno || p == pend || pend - p != end - pp)
  /external/openssl/crypto/dsa/
dsa.h 194 int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp);
195 DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length);
224 DSA * d2i_DSAPublicKey(DSA **a, const unsigned char **pp, long length);
225 DSA * d2i_DSAPrivateKey(DSA **a, const unsigned char **pp, long length);
226 DSA * d2i_DSAparams(DSA **a, const unsigned char **pp, long length);
242 int i2d_DSAPublicKey(const DSA *a, unsigned char **pp);
243 int i2d_DSAPrivateKey(const DSA *a, unsigned char **pp);
244 int i2d_DSAparams(const DSA *a,unsigned char **pp);
  /external/openssl/include/openssl/
dsa.h 194 int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp);
195 DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length);
224 DSA * d2i_DSAPublicKey(DSA **a, const unsigned char **pp, long length);
225 DSA * d2i_DSAPrivateKey(DSA **a, const unsigned char **pp, long length);
226 DSA * d2i_DSAparams(DSA **a, const unsigned char **pp, long length);
242 int i2d_DSAPublicKey(const DSA *a, unsigned char **pp);
243 int i2d_DSAPrivateKey(const DSA *a, unsigned char **pp);
244 int i2d_DSAparams(const DSA *a,unsigned char **pp);
ts.h 286 int i2d_TS_REQ(const TS_REQ *a, unsigned char **pp);
287 TS_REQ *d2i_TS_REQ(TS_REQ **a, const unsigned char **pp, long length);
298 int i2d_TS_MSG_IMPRINT(const TS_MSG_IMPRINT *a, unsigned char **pp);
300 const unsigned char **pp, long length);
311 int i2d_TS_RESP(const TS_RESP *a, unsigned char **pp);
312 TS_RESP *d2i_TS_RESP(TS_RESP **a, const unsigned char **pp, long length);
323 int i2d_TS_STATUS_INFO(const TS_STATUS_INFO *a, unsigned char **pp);
325 const unsigned char **pp, long length);
330 int i2d_TS_TST_INFO(const TS_TST_INFO *a, unsigned char **pp);
331 TS_TST_INFO *d2i_TS_TST_INFO(TS_TST_INFO **a, const unsigned char **pp,
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/sasl/
Sasl.java 95 Provider[] pp = Security.getProviders(); local
96 if ((pp == null) || (pp.length == 0)) {
100 for (int i = 0; i < pp.length; i++) {
101 String prName = pp[i].getName();
102 Enumeration<Object> keys = pp[i].keys();
106 String prop = pp[i].getProperty(s);
109 fact.add(newInstance(prop, pp[i]));
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyPairGenerator1.java 50 public MyKeyPairGenerator1(String pp) {
51 super(pp);
  /external/openssl/apps/
ciphers.c 88 const char **pp; local
157 for (pp=ciphers_usage; (*pp != NULL); pp++)
158 BIO_printf(bio_err,"%s",*pp);
  /external/openssl/crypto/pem/
pem_info.c 95 void *pp; local
142 pp=&(xi->x509);
153 pp=&(xi->x509);
164 pp=&(xi->crl);
182 pp=&xi->x_pkey->dec_pkey;
204 pp=&xi->x_pkey->dec_pkey;
226 pp=&xi->x_pkey->dec_pkey;
234 pp=NULL;
250 if (!d2i_PrivateKey(ptype, pp, &p, len))
256 else if (d2i(pp,&p,len) == NULL
    [all...]
  /external/libvorbis/lib/
lsp.c 321 double p=defl[m],pp=0.f,ppp=0.f,denom; local
325 ppp = new*ppp + pp;
326 pp = new*pp + p;
331 denom=(m-1) * ((m-1)*pp*pp - m*p*ppp);
335 if(pp>0){
336 denom = pp + sqrt(denom);
339 denom = pp - sqrt(denom);
377 double pp=0.,delta local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
AlgorithmParameterGenerator2Test.java 85 AlgorithmParameterSpec pp = null; local
86 algParGen.init(pp, new SecureRandom());
87 algParGen.init(pp);
89 algParGen.init(pp, null);
93 pp = new tmpAlgorithmParameterSpec("Proba");
94 algParGen.init(pp, new SecureRandom());
95 algParGen.init(pp);
  /external/icu4c/i18n/
nfrule.cpp 762 ParsePosition pp; local
785 stripPrefix(workText, prefix, pp);
789 fprintf(stderr, "' pl: %d ppi: %d s1p: %d\n", prefixLength, pp.getIndex(), sub1->getPos());
792 if (pp.getIndex() == 0 && sub1->getPos() != 0) {
795 parsePosition.setErrorIndex(pp.getErrorIndex());
840 pp.setIndex(0);
    [all...]
  /external/quake/quake/src/QW/qwfwd/
qwfwd.c 246 peer_t *pp; local
248 pp = NULL;
252 if (!pp && !p->next) {
255 p = pp = NULL;
258 pp->next = p->next;
261 p = pp->next;
263 pp = p;

Completed in 6702 milliseconds

1 2 34 5 6 7 8 91011>>