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

1 2

  /external/mesa3d/src/mesa/state_tracker/
st_cb_queryobj.h 41 struct pipe_query *pq; member in struct:st_query_object
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/scripts/
rebuild_endpoints.py 2 from pyquery import PyQuery as pq namespace
24 return pq(raw_xml, parser='xml')
32 region = pq(region_elem, parser='xml')
  /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 151 const double pq = p.dot(q); local
152 if ((pq <= 0) || IsInfinite(pq)) {
154 summary.message = StringPrintf("Numerical failure. p'q = %e.", pq);
158 const double alpha = rho / pq;
162 StringPrintf("Numerical failure. alpha = rho / pq = %e", alpha);
  /libcore/benchmarks/src/benchmarks/regression/
PriorityQueueBenchmark.java 31 private PriorityQueue<Integer> pq; field in class:PriorityQueueBenchmark
38 pq = new PriorityQueue<Integer>();
52 pq.add(allElements.get(i));
57 pq.add(allElements.get(i));
63 usepq = new PriorityQueue<Integer>(pq);
79 usepq = new PriorityQueue<Integer>(pq);
  /prebuilts/go/darwin-x86/test/bench/shootout/
reverse-complement.c 52 char *pj, *pq, *pr; // buffer pointers: inp,out,/out local
69 for (pq=qqq+1, pr=pqstop; ; pq++) { // LOOP: fill output buffer
72 if (pr <= (pq+61)) { // need to resize buffer
79 pq+=x; pr+=x; qqq+=x;
92 for (pq = qqq; pr<pqstop; ) { // LOOP: format output
94 __builtin_memmove(pq,pr,x); // move line to free space
95 pr+=x; pq+=x; *(pq++) = 0xA; // adjust pointers, add LF
97 fwrite(qqq, 1, pq-qqq, stdout); // output converted dat
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
reverse-complement.c 52 char *pj, *pq, *pr; // buffer pointers: inp,out,/out local
69 for (pq=qqq+1, pr=pqstop; ; pq++) { // LOOP: fill output buffer
72 if (pr <= (pq+61)) { // need to resize buffer
79 pq+=x; pr+=x; qqq+=x;
92 for (pq = qqq; pr<pqstop; ) { // LOOP: format output
94 __builtin_memmove(pq,pr,x); // move line to free space
95 pr+=x; pq+=x; *(pq++) = 0xA; // adjust pointers, add LF
97 fwrite(qqq, 1, pq-qqq, stdout); // output converted dat
    [all...]
  /external/boringssl/src/ssl/pqueue/
pqueue.c 94 pqueue_s *pq = (pqueue_s *)OPENSSL_malloc(sizeof(pqueue_s)); local
95 if (pq == NULL) {
99 memset(pq, 0, sizeof(pqueue_s));
100 return pq;
103 void pqueue_free(pqueue_s *pq) {
104 if (pq == NULL) {
109 assert(pq->items == NULL);
110 OPENSSL_free(pq);
113 pitem *pqueue_peek(pqueue_s *pq) { return pq->items;
    [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/skia/tests/
TDPQueueTest.cpp 102 SkTDPQueue<Dummy*, Dummy::LessP, Dummy::PQIndex> pq; local
104 pq.insert(&array[j]);
106 REPORTER_ASSERT(reporter, pq.count() == array.count());
113 while (pq.count()) {
115 Dummy* top = pq.peek();
124 Dummy* top = pq.peek();
126 pq.pop();
135 pq.remove(&array[item]);
145 pq.priorityDidChange(&array[item]);
  /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
  /libcore/ojluni/src/main/java/sun/security/x509/
PolicyInformation.java 276 for (PolicyQualifierInfo pq : policyQualifiers) {
277 tmp2.write(pq.getEncoded());
  /frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/
ColorCutQuantizer.java 150 final PriorityQueue<Vbox> pq = new PriorityQueue<>(maxColors, VBOX_COMPARATOR_VOLUME); local
153 pq.offer(new Vbox(0, mColors.length - 1));
157 splitBoxes(pq, maxColors);
160 return generateAverageColors(pq);
  /libcore/luni/src/main/java/java/util/concurrent/
PriorityBlockingQueue.java 44 * {@code Arrays.sort(pq.toArray())}. Also, method {@code drainTo}
227 PriorityBlockingQueue<? extends E> pq = local
229 this.comparator = (Comparator<? super E>) pq.comparator();
231 if (pq.getClass() == PriorityBlockingQueue.class) // exact match
    [all...]
  /libcore/ojluni/src/main/java/java/util/
PriorityQueue.java 59 * traversal, consider using {@code Arrays.sort(pq.toArray())}.
196 PriorityQueue<? extends E> pq = (PriorityQueue<? extends E>) c; local
197 this.comparator = (Comparator<? super E>) pq.comparator();
198 initFromPriorityQueue(pq);
824 private final PriorityQueue<E> pq; field in class:PriorityQueue.PriorityQueueSpliterator
830 PriorityQueueSpliterator(PriorityQueue<E> pq, int origin, int fence,
832 this.pq = pq;
841 expectedModCount = pq.modCount;
842 hi = fence = pq.size
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 362 Set pq = new HashSet(); local
366 return pq;
380 pq.add(new PolicyQualifierInfo(bOut.toByteArray()));
390 return pq;
445 Set pq)
463 pq,
537 Set pq = null; local
564 pq = getQualifierSet(pinfo.getPolicyQualifiers());
586 p_node, pq, id_p, ci);
    [all...]
RFC3280CertPathUtilities.java 973 Set pq = null; local
1323 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/opencv3/modules/objdetect/src/
cascadedetect.cpp 737 const int* pq = (const int*)(pwin + sqofs); local
739 unsigned valsqsum = (unsigned)(CALC_SUM_OFS(nofs, pq));
    [all...]
haar.cpp 1483 const int** pq; member in class:cv::HaarDetectObjects_ScaleCascade_Invoker
1665 int *pq[4] = {0,0,0,0}; local
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 1843 def pq(ui, repo, *pats, **opts): function
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
dlltool.c 1188 iheadtype **pq; local
    [all...]
  /prebuilts/sdk/current/support/v7/palette/libs/
android-support-v7-palette.jar 

Completed in 979 milliseconds

1 2