HomeSort by relevance Sort by last modified time
    Searched defs:pq (Results 1 - 19 of 19) 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/skia/third_party/glu/libtess/
priorityq-heap.c 54 #define LEQ(x,y) (*pq->leq)(x,y)
64 PriorityQ *pq = (PriorityQ *)memAlloc( sizeof( PriorityQ )); local
65 if (pq == NULL) return NULL;
67 pq->size = 0;
68 pq->max = INIT_SIZE;
69 pq->nodes = (PQnode *)memAlloc( (INIT_SIZE + 1) * sizeof(pq->nodes[0]) );
70 if (pq->nodes == NULL) {
71 memFree(pq);
75 pq->handles = (PQhandleElem *)memAlloc( (INIT_SIZE + 1) * sizeof(pq->handles[0]) )
    [all...]
priorityq.c 59 PriorityQ *pq = (PriorityQ *)memAlloc( sizeof( PriorityQ )); local
60 if (pq == NULL) return NULL;
62 pq->heap = __gl_pqHeapNewPriorityQ( leq );
63 if (pq->heap == NULL) {
64 memFree(pq);
68 pq->keys = (PQHeapKey *)memAlloc( INIT_SIZE * sizeof(pq->keys[0]) );
69 if (pq->keys == NULL) {
70 __gl_pqHeapDeletePriorityQ(pq->heap);
71 memFree(pq);
    [all...]
tess.h 91 PriorityQ *pq; /* priority queue of vertex events */ member in struct:GLUtesselator
sweep.c 543 pqDelete( tess->pq, eUp->Org->pqHandle ); /* __gl_pqSortDelete */
750 eUp->Org->pqHandle = pqInsert( tess->pq, eUp->Org ); /* __gl_pqSortInsert */
752 pqDeletePriorityQ(tess->pq); /* __gl_pqSortDeletePriorityQ */
753 tess->pq = NULL;
1240 PriorityQ *pq; local
    [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/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 381 Set pq = new HashSet(); local
385 return pq;
399 pq.add(new PolicyQualifierInfo(bOut.toByteArray()));
409 return pq;
464 Set pq)
482 pq,
556 Set pq = null; local
583 pq = getQualifierSet(pinfo.getPolicyQualifiers());
605 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/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/misc/common/jython/
jython.jar 

Completed in 915 milliseconds