Searched refs:pp (Results 126 - 150 of 358) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/asn1/
H A Da_gentm.c69 int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp)
83 return(i2d_ASN1_bytes((ASN1_STRING *)a,pp,
89 unsigned char **pp, long length)
93 ret=(ASN1_GENERALIZEDTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length,
H A Da_time.c75 int i2d_ASN1_TIME(ASN1_TIME *a, unsigned char **pp)
93 return(i2d_ASN1_bytes((ASN1_STRING *)a,pp,
H A Da_utctm.c66 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,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Da_gentm.c69 int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp)
83 return(i2d_ASN1_bytes((ASN1_STRING *)a,pp,
89 unsigned char **pp, long length)
93 ret=(ASN1_GENERALIZEDTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length,
H A Da_time.c75 int i2d_ASN1_TIME(ASN1_TIME *a, unsigned char **pp)
93 return(i2d_ASN1_bytes((ASN1_STRING *)a,pp,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pkcs7/
H A Dverify.c82 char *pp; local
103 pp=NULL;
122 pp=argv[0];
128 if (pp == NULL)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dmkstack.pl94 #define d2i_ASN1_SET_OF_${type_thing}(st, pp, length, d2i_func, free_func, ex_tag, ex_class) \\
95 SKM_ASN1_SET_OF_d2i($type_thing, (st), (pp), (length), (d2i_func), (free_func), (ex_tag), (ex_class))
96 #define i2d_ASN1_SET_OF_${type_thing}(st, pp, i2d_func, ex_tag, ex_class, is_set) \\
97 SKM_ASN1_SET_OF_i2d($type_thing, (st), (pp), (i2d_func), (ex_tag), (ex_class), (is_set))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dprom.c158 struct property *pp; local
160 for (pp = np->properties; pp != 0; pp = pp->next) {
161 if (strcasecmp(pp->name, name) == 0) {
163 *lenp = pp->length;
167 return pp;
178 struct property *pp = of_find_property(np,name,lenp); local
179 return pp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ecdsa/
H A Decdsa.h97 * DER encode content of ECDSA_SIG object (note: this function modifies *pp
98 * (*pp += length of the DER encoded signature)).
100 * \param pp pointer to a unsigned char pointer for the output or NULL
103 int i2d_ECDSA_SIG(const ECDSA_SIG *a, unsigned char **pp);
106 * decodes a DER encoded ECDSA signature (note: this function changes *pp
107 * (*pp += len)).
109 * \param pp buffer with the DER encoded signature
113 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **v, const unsigned char **pp, long len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Decdsa.h97 * DER encode content of ECDSA_SIG object (note: this function modifies *pp
98 * (*pp += length of the DER encoded signature)).
100 * \param pp pointer to a unsigned char pointer for the output or NULL
103 int i2d_ECDSA_SIG(const ECDSA_SIG *a, unsigned char **pp);
106 * decodes a DER encoded ECDSA signature (note: this function changes *pp
107 * (*pp += len)).
109 * \param pp buffer with the DER encoded signature
113 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **v, const unsigned char **pp, long len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ata/
H A Dahci.c661 struct ahci_port_priv *pp = ap->private_data; local
666 writel((pp->cmd_slot_dma >> 16) >> 16,
668 writel(pp->cmd_slot_dma & 0xffffffff, port_mmio + PORT_LST_ADDR);
671 writel((pp->rx_fis_dma >> 16) >> 16,
673 writel(pp->rx_fis_dma & 0xffffffff, port_mmio + PORT_FIS_ADDR);
874 static void ahci_fill_cmd_slot(struct ahci_port_priv *pp, unsigned int tag, argument
879 cmd_tbl_dma = pp->cmd_tbl_dma + tag * AHCI_CMD_TBL_SZ;
881 pp->cmd_slot[tag].opts = cpu_to_le32(opts);
882 pp->cmd_slot[tag].status = 0;
883 pp
911 struct ahci_port_priv *pp = ap->private_data; local
1015 struct ahci_port_priv *pp = ap->private_data; local
1095 struct ahci_port_priv *pp = ap->private_data; local
1131 struct ahci_port_priv *pp = ap->private_data; local
1168 struct ahci_port_priv *pp = ap->private_data; local
1239 struct ahci_port_priv *pp = ap->private_data; local
1529 struct ahci_port_priv *pp; local
[all...]
H A Dsata_sil24.c469 struct sil24_port_priv *pp = ap->private_data; local
475 ata_tf_from_fis(fis, &pp->tf);
480 struct sil24_port_priv *pp = ap->private_data; local
481 return pp->tf.command;
514 struct sil24_port_priv *pp = ap->private_data; local
515 *tf = pp->tf;
538 struct sil24_port_priv *pp = ap->private_data; local
539 struct sil24_prb *prb = &pp->cmd_block[0].ata.prb;
540 dma_addr_t paddr = pp->cmd_block_dma;
581 *class = ata_dev_classify(&pp
662 struct sil24_port_priv *pp = ap->private_data; local
711 struct sil24_port_priv *pp = ap->private_data; local
929 struct sil24_port_priv *pp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dext2fs_inline.c22 void **pp = (void **)ptr; local
24 *pp = malloc(size);
25 if (!*pp)
35 void **pp = (void **)ptr; local
37 free(*pp);
38 *pp = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/fips/des/
H A Dfips_desmovs.c489 char *xp, *pp = ibuf+2; local
499 if(!strncmp(pp,"INVERSE ",8) || !strncmp(pp,"DES ",4)
500 || !strncmp(pp,"TDES ",5)
501 || !strncmp(pp,"PERMUTATION ",12)
502 || !strncmp(pp,"SUBSTITUTION ",13)
503 || !strncmp(pp,"VARIABLE ",9))
506 if(!strncmp(pp,"DES ",4))
507 pp+=4;
508 else if(!strncmp(pp,"TDE
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Dfips_desmovs.c489 char *xp, *pp = ibuf+2; local
499 if(!strncmp(pp,"INVERSE ",8) || !strncmp(pp,"DES ",4)
500 || !strncmp(pp,"TDES ",5)
501 || !strncmp(pp,"PERMUTATION ",12)
502 || !strncmp(pp,"SUBSTITUTION ",13)
503 || !strncmp(pp,"VARIABLE ",9))
506 if(!strncmp(pp,"DES ",4))
507 pp+=4;
508 else if(!strncmp(pp,"TDE
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dwrite-po.c314 lex_pos_ty *pp = &mp->filepos[j]; local
315 char *cp = pp->file_name;
325 cp, (long) pp->line_number);
341 lex_pos_ty *pp; local
346 pp = &mp->filepos[j];
347 cp = pp->file_name;
351 if (pp->line_number == (size_t)(-1))
354 sprintf (buffer, ":%ld", (long) pp->line_number);
653 char *pp; local
738 for (ep = s, pp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dtsearch.c461 node *pp = nodestack[sp - 1]; local
462 p = *pp;
483 *pp = q;
484 /* Make sure pp is right if the case below tries to use
486 nodestack[sp++] = pp = &q->left;
528 *pp = q2;
545 *pp = q;
563 *pp = q;
564 nodestack[sp++] = pp = &q->right;
583 *pp
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/rxrpc/
H A Dar-connection.c71 struct rb_node *p, *parent, **pp; local
112 pp = &trans->bundles.rb_node;
114 while (*pp) {
115 parent = *pp;
119 pp = &(*pp)->rb_left;
121 pp = &(*pp)->rb_right;
130 rb_link_node(&bundle->node, parent, pp);
610 struct rb_node *p, **pp; local
[all...]
H A Dar-accept.c317 struct rb_node *parent, **pp; local
332 pp = &rx->calls.rb_node;
334 while (*pp) {
335 parent = *pp;
339 pp = &(*pp)->rb_left;
341 pp = &(*pp)->rb_right;
372 rb_link_node(&call->sock_node, parent, pp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dprom.c245 struct property *pp, **prev_pp = NULL; local
349 pp = unflatten_dt_alloc(&mem, sizeof(struct property),
359 pp->name = pname;
360 pp->length = sz;
361 pp->value = (void *)*p;
362 *prev_pp = pp;
363 prev_pp = &pp->next;
384 pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz,
387 pp->name = "name";
388 pp
1523 struct property *pp; local
1545 struct property *pp = of_find_property(np,name,lenp); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hpfs/
H A Dmap.c219 unsigned p, pp = 0; local
237 hpfs_error(s, "bad dirent size in dnode %08x, dirent %03x, last %03x", secno, p, pp);
242 hpfs_error(s, "namelen does not match dirent size in dnode %08x, dirent %03x, last %03x", secno, p, pp);
248 hpfs_error(s, "bad down pointer in dnode %08x, dirent %03x, last %03x", secno, p, pp);
251 pp = p;
258 if (d[pp + 30] != 1 || d[pp + 31] != 255) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dftp.c384 static int ftp_endofresp(struct pingpong *pp, argument
387 char *line = pp->linestart_resp;
388 size_t len = pp->nread_resp;
398 struct pingpong *pp,
402 struct connectdata *conn = pp->conn;
410 result = Curl_pp_readresp(sockfd, pp, &code, size);
471 struct pingpong *pp = &ftpc->pp; local
486 timeout = Curl_pp_state_timeout(pp);
511 if(pp
397 ftp_readresp(curl_socket_t sockfd, struct pingpong *pp, int *ftpcode, size_t *size) argument
2459 struct pingpong *pp = &ftpc->pp; local
2906 struct pingpong *pp = &ftpc->pp; local
2982 struct pingpong *pp = &ftpc->pp; local
3068 struct pingpong *pp = &ftpc->pp; local
3305 struct pingpong *pp = &ftpc->pp; local
3937 struct pingpong *pp = &ftpc->pp; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/macintosh/
H A Dvia-pmu.c2409 struct pmu_private *pp; local
2414 if (len > sizeof(pp->rb_buf[0].data))
2415 len = sizeof(pp->rb_buf[0].data);
2418 pp = list_entry(list, struct pmu_private, list);
2419 spin_lock(&pp->lock);
2420 i = pp->rb_put + 1;
2423 if (i != pp->rb_get) {
2424 struct rb_entry *rp = &pp->rb_buf[pp->rb_put];
2427 pp
2438 struct pmu_private *pp; local
2461 struct pmu_private *pp = file->private_data; local
2519 struct pmu_private *pp = filp->private_data; local
2536 struct pmu_private *pp = file->private_data; local
2626 struct pmu_private *pp = filp->private_data; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/libunarchive/
H A Ddecompress_bunzip2.c223 int minLen, maxLen, pp; local
290 pp = 0;
295 hufGroup->permute[pp++] = t;
307 pp = t = 0;
309 pp += temp[i];
318 limit[i] = (pp << (maxLen - i)) - 1;
319 pp <<= 1;
321 base[i+1] = pp - t;
324 limit[maxLen] = pp + temp[maxLen] - 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Dsess_id.c98 char **pp; local
158 for (pp=sess_id_usage; (*pp != NULL); pp++)
159 BIO_printf(bio_err,"%s",*pp);

Completed in 176 milliseconds

1234567891011>>