HomeSort by relevance Sort by last modified time
    Searched defs:pq (Results 1 - 20 of 20) 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/ceres-solver/internal/ceres/
conjugate_gradients_solver.cc 152 double pq = p.dot(q); local
154 if ((pq <= 0) || IsInfinite(pq)) {
155 LOG(ERROR) << "Numerical failure. pq = " << pq;
160 double alpha = rho / pq;
  /libcore/benchmarks/src/benchmarks/regression/
PriorityQueueBenchmark.java 31 private PriorityQueue<Integer> pq; field in class:PriorityQueueBenchmark
37 pq = new PriorityQueue<Integer>();
51 pq.add(allElements.get(i));
56 pq.add(allElements.get(i));
62 usepq = new PriorityQueue<Integer>(pq);
78 usepq = new PriorityQueue<Integer>(pq);
  /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/bluetooth/bluedroid/bta/av/
bta_av_main.c 1093 BUFFER_Q *pq; local
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 116 /** The pq param */
117 void *pq; member in struct:KAT_key
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 33 * {@code Arrays.sort(pq.toArray())}. Also, method {@code drainTo}
215 PriorityBlockingQueue<? extends E> pq = local
217 this.comparator = (Comparator<? super E>) pq.comparator();
219 if (pq.getClass() == PriorityBlockingQueue.class) // exact match
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 380 Set pq = new HashSet(); local
384 return pq;
398 pq.add(new PolicyQualifierInfo(bOut.toByteArray()));
408 return pq;
463 Set pq)
481 pq,
555 Set pq = null; local
582 pq = getQualifierSet(pinfo.getPolicyQualifiers());
604 p_node, pq, id_p, ci);
    [all...]
RFC3280CertPathUtilities.java 943 Set pq = null; local
1293 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...]
  /external/regex-re2/lib/codereview/
codereview.py 1843 def pq(ui, repo, *pats, **opts): function
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /prebuilts/devtools/tools/lib/
jython-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/
jython-2.5.3.jar 

Completed in 2223 milliseconds