HomeSort by relevance Sort by last modified time
    Searched defs:pq (Results 1 - 10 of 10) sorted by null

  /external/openssl/crypto/pqueue/
pq_test.c 66 pqueue pq; local
68 pq = pqueue_new();
71 pqueue_insert(pq, item);
74 pqueue_insert(pq, item);
77 pqueue_insert(pq, item);
79 item = pqueue_find(pq, 1);
82 item = pqueue_find(pq, 2);
85 item = pqueue_find(pq, 3);
88 pqueue_print(pq);
90 for(item = pqueue_pop(pq); item != NULL; item = pqueue_pop(pq)
    [all...]
pqueue.c 95 pqueue_s *pq = (pqueue_s *) OPENSSL_malloc(sizeof(pqueue_s)); local
96 if (pq == NULL) return NULL;
98 memset(pq, 0x00, sizeof(pqueue_s));
99 return pq;
103 pqueue_free(pqueue_s *pq)
105 if (pq == NULL) return;
107 OPENSSL_free(pq);
111 pqueue_insert(pqueue_s *pq, pitem *item)
115 if (pq->items == NULL)
117 pq->items = item
    [all...]
  /external/srec/srec/crec/
priority_q.c 43 priority_q *pq; local
45 pq = (priority_q*) CALLOC(1, sizeof(priority_q), "search.srec.priority_q");
46 pq->max_cost_in_q = MAXcostdata;
47 pq->word_token_list = MAXwordID;
48 pq->max_in_q = (miscdata)max_n;
49 pq->num_in_q = 0;
50 return pq;
53 void free_priority_q(priority_q* pq)
55 FREE(pq);
60 void clear_priority_q(priority_q *pq)
    [all...]
  /external/qemu/slirp/
ip_input.c 320 struct ipasfrag *pq = q->ipf_prev; local
321 i = pq->ipf_off + pq->ipf_len - ip->ip_off;
  /external/qemu/slirp-android/
ip_input.c 320 struct ipasfrag *pq = q->ipf_prev; local
321 i = pq->ipf_off + pq->ipf_len - ip->ip_off;
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 116 /** The pq param */
117 void *pq; member in struct:KAT_key
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 494 Set pq = new HashSet(); local
498 return pq;
512 pq.add(new PolicyQualifierInfo(bOut.toByteArray()));
522 return pq;
577 Set pq)
595 pq,
668 Set pq = null; local
697 pq = getQualifierSet(pinfo.getPolicyQualifiers());
719 p_node, pq, id_p, ci);
    [all...]
RFC3280CertPathUtilities.java 961 Set pq = null; local
1311 Set pq = null; local
    [all...]
  /external/dnsmasq/src/
rfc2131.c 503 char *pq = daemon->dhcp_buff; local
521 memcpy(pq, op+1, *op);
522 pq += *op;
524 *(pq++) = '.';
528 memcpy(pq, op, len);
531 pq += len + 1;
534 if (pq != daemon->dhcp_buff)
535 pq--;
537 *pq = 0;
    [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 583 milliseconds