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

1 2

  /external/chromium_org/third_party/openssl/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/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/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_queryobj.h 41 struct pipe_query *pq; member in struct:st_query_object
  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.h 41 struct pipe_query *pq; member in struct:st_query_object
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_query.c 52 struct llvmpipe_query *pq; local
56 pq = CALLOC_STRUCT( llvmpipe_query );
58 return (struct pipe_query *) pq;
65 struct llvmpipe_query *pq = llvmpipe_query(q); local
70 if (pq->fence) {
71 if (!lp_fence_issued(pq->fence))
74 if (!lp_fence_signalled(pq->fence))
75 lp_fence_wait(pq->fence);
77 lp_fence_reference(&pq->fence, NULL);
80 FREE(pq);
90 struct llvmpipe_query *pq = llvmpipe_query(q); local
125 struct llvmpipe_query *pq = llvmpipe_query(q); local
148 struct llvmpipe_query *pq = llvmpipe_query(q); local
    [all...]
lp_rast.c 486 struct llvmpipe_query *pq = arg.query_obj; local
490 task->query = pq;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_query.c 52 struct llvmpipe_query *pq; local
56 pq = CALLOC_STRUCT( llvmpipe_query );
58 return (struct pipe_query *) pq;
65 struct llvmpipe_query *pq = llvmpipe_query(q); local
70 if (pq->fence) {
71 if (!lp_fence_issued(pq->fence))
74 if (!lp_fence_signalled(pq->fence))
75 lp_fence_wait(pq->fence);
77 lp_fence_reference(&pq->fence, NULL);
80 FREE(pq);
90 struct llvmpipe_query *pq = llvmpipe_query(q); local
125 struct llvmpipe_query *pq = llvmpipe_query(q); local
148 struct llvmpipe_query *pq = llvmpipe_query(q); local
    [all...]
lp_rast.c 486 struct llvmpipe_query *pq = arg.query_obj; local
490 task->query = pq;
  /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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
presentation.c 44 vlVdpPresentationQueue *pq = NULL; local
61 pq = CALLOC(1, sizeof(vlVdpPresentationQueue));
62 if (!pq)
65 pq->device = dev;
66 pq->drawable = pqt->drawable;
69 if (!vl_compositor_init_state(&pq->cstate, dev->context)) {
76 *presentation_queue = vlAddDataHTAB(pq);
86 FREE(pq);
96 vlVdpPresentationQueue *pq; local
98 pq = vlGetDataHTAB(presentation_queue)
119 vlVdpPresentationQueue *pq; local
148 vlVdpPresentationQueue *pq; local
177 vlVdpPresentationQueue *pq; local
205 vlVdpPresentationQueue *pq; local
312 vlVdpPresentationQueue *pq; local
346 vlVdpPresentationQueue *pq; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
presentation.c 44 vlVdpPresentationQueue *pq = NULL; local
61 pq = CALLOC(1, sizeof(vlVdpPresentationQueue));
62 if (!pq)
65 pq->device = dev;
66 pq->drawable = pqt->drawable;
69 if (!vl_compositor_init_state(&pq->cstate, dev->context)) {
76 *presentation_queue = vlAddDataHTAB(pq);
86 FREE(pq);
96 vlVdpPresentationQueue *pq; local
98 pq = vlGetDataHTAB(presentation_queue)
119 vlVdpPresentationQueue *pq; local
148 vlVdpPresentationQueue *pq; local
177 vlVdpPresentationQueue *pq; local
205 vlVdpPresentationQueue *pq; local
312 vlVdpPresentationQueue *pq; local
346 vlVdpPresentationQueue *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/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_stateobj.h 67 struct pipe_query *pq; member in struct:nv50_so_target
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_stateobj.h 66 struct pipe_query *pq; member in struct:nvc0_so_target
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_stateobj.h 67 struct pipe_query *pq; member in struct:nv50_so_target
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_stateobj.h 66 struct pipe_query *pq; member in struct:nvc0_so_target
  /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 34 * {@code Arrays.sort(pq.toArray())}. Also, method {@code drainTo}
217 PriorityBlockingQueue<? extends E> pq = local
219 this.comparator = (Comparator<? super E>) pq.comparator();
221 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...]

Completed in 659 milliseconds

1 2