HomeSort by relevance Sort by last modified time
    Searched refs:pq (Results 1 - 25 of 27) sorted by null

1 2

  /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.h 84 void pqueue_free(pqueue pq);
86 pitem *pqueue_insert(pqueue pq, pitem *item);
87 pitem *pqueue_peek(pqueue pq);
88 pitem *pqueue_pop(pqueue pq);
89 pitem *pqueue_find(pqueue pq, PQ_64BIT priority);
90 pitem *pqueue_iterator(pqueue pq);
93 void pqueue_print(pqueue pq);
94 int pqueue_size(pqueue pq);
pqueue.c 97 pqueue_s *pq = (pqueue_s *) OPENSSL_malloc(sizeof(pqueue_s)); local
98 if (pq == NULL) return NULL;
100 memset(pq, 0x00, sizeof(pqueue_s));
101 return pq;
105 pqueue_free(pqueue_s *pq)
107 if (pq == NULL) return;
109 OPENSSL_free(pq);
113 pqueue_insert(pqueue_s *pq, pitem *item)
117 if (pq->items == NULL)
119 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/openssl/include/openssl/
pqueue.h 84 void pqueue_free(pqueue pq);
86 pitem *pqueue_insert(pqueue pq, pitem *item);
87 pitem *pqueue_peek(pqueue pq);
88 pitem *pqueue_pop(pqueue pq);
89 pitem *pqueue_find(pqueue pq, PQ_64BIT priority);
90 pitem *pqueue_iterator(pqueue pq);
93 void pqueue_print(pqueue pq);
94 int pqueue_size(pqueue pq);
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmutils.h 122 #define PKTQ_PREC_ITER(pq, prec) for (prec = (pq)->num_prec - 1; prec >= 0; prec--)
134 #define pktq_psetmax(pq, prec, _max) ((pq)->q[prec].max = (_max))
135 #define pktq_plen(pq, prec) ((pq)->q[prec].len)
136 #define pktq_pavail(pq, prec) ((pq)->q[prec].max - (pq)->q[prec].len)
137 #define pktq_pfull(pq, prec) ((pq)->q[prec].len >= (pq)->q[prec].max
    [all...]
  /external/dropbear/libtomcrypt/src/pk/katja/
katja_free.c 28 key->qP, key->p, key->q, key->pq, NULL);
katja_import.c 38 &key->dP, &key->qP, &key->p, &key->q, &key->pq, NULL)) != CRYPT_OK) {
59 LTC_ASN1_INTEGER, 1UL, key->pq,
72 key->qP, key->p, key->q, key->pq, NULL);
katja_make_key.c 63 &key->qP, &key->p, &key->q, &key->pq, NULL)) != CRYPT_OK) {
67 /* n=p^2q and 1/n mod pq */
70 if ((err = mp_mul(key->p, key->q, key->pq)) != CRYPT_OK) { goto error2; } /* tmp1 = pq */
71 if ((err = mp_mul(key->pq, key->p, key->N)) != CRYPT_OK) { goto error2; } /* N = p^2q */
75 if ((err = mp_invmod( key->N, key->d, key->d)) != CRYPT_OK) { goto error2; } /* key->d = 1/N mod pq */
90 mp_clear_multi( key->d, key->N, key->dQ, key->dP, key->qP, key->p, key->q, key->pq, NULL);
katja_export.c 45 Version, n, d, p, q, d mod (p-1), d mod (q - 1), 1/q mod p, pq
56 LTC_ASN1_INTEGER, 1UL, key->pq,
  /hardware/broadcom/wlan/bcm4329/src/shared/
bcmutils.c 157 pktq_penq(struct pktq *pq, int prec, void *p)
161 ASSERT(prec >= 0 && prec < pq->num_prec);
164 ASSERT(!pktq_full(pq));
165 ASSERT(!pktq_pfull(pq, prec));
167 q = &pq->q[prec];
177 pq->len++;
179 if (pq->hi_prec < prec)
180 pq->hi_prec = (uint8)prec;
186 pktq_penq_head(struct pktq *pq, int prec, void *p)
190 ASSERT(prec >= 0 && prec < pq->num_prec)
    [all...]
  /external/srec/srec/include/
srec.h 324 void free_priority_q(priority_q* pq);
325 void clear_priority_q(priority_q *pq);
326 wtokenID get_word_token_list(priority_q *pq, word_token *word_token_array);
327 wtokenID add_word_token_to_priority_q(priority_q *pq, wtokenID token_index_to_add, word_token *word_token_array);
328 void remove_non_end_word_from_q(srec *rec, priority_q *pq, word_token *word_token_array, nodeID end_node);
329 costdata get_priority_q_threshold(priority_q *pq, word_token *word_token_array);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 633 Set pq = new HashSet(); local
637 return pq;
651 pq.add(new PolicyQualifierInfo(bOut.toByteArray()));
661 return pq;
716 Set pq)
734 pq,
808 Set pq = null; local
816 pq = getQualifierSet(pinfo.getPolicyQualifiers());
832 p_node, pq, id_p, ci);
PKIXCertPathValidatorSpi.java 454 Set pq = CertPathValidatorUtilities.getQualifierSet(pInfo.getPolicyQualifiers()); local
456 boolean match = CertPathValidatorUtilities.processCertD1i(i, policyNodes, pOid, pq);
460 CertPathValidatorUtilities.processCertD1ii(i, policyNodes, pOid, pq);
721 Set pq = null; local
730 pq = CertPathValidatorUtilities.getQualifierSet(pinfo.getPolicyQualifiers());
746 p_node, pq, id_p, ci);
    [all...]
  /external/e2fsprogs/util/
gen-tarball.in 32 -o -name CVS -o -name \*.rej -o -name Makefile.pq \
  /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/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...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
PKIXCertPathReviewer.java 1144 Set pq; local
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 116 /** The pq param */
117 void *pq; member in struct:KAT_key
  /external/opencore/engines/player/test/data/
test_amr_ietf.amr 338 H????S?6}|"???????<?t>ou?A??XLD??)?X a7f??0@<?N???)??l??????x?E???<~??V??!;t??o?<?p?OH4?v???<?ij'?^A?!?o0?yb,Y1???'???<x?u2???{?\??9?*?3?????;???<?J/r?~E??Uhhn?k????s?xw? <??^g?????QPd?? ???%g??fCp<4?d^x???A??.?vJ&E^?^???A?pq?<8?{d{??DR?%?[E??I?'*?N????<Hzi?~??T???y?T?a?ü?????[<:???J?????l????l?_}I?o?0<4?i.9?T???F%b" F??m???q???E?<??#??? ??Tz?AP?v???@?7?q<D?%?I?<e??Z?(?X?\*E???W??W<?.{)????J?1t?}???????T#?_E%\<D????_?R?
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
perlstress-002.js     [all...]
  /external/bison/
configure     [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]

Completed in 2660 milliseconds

1 2