HomeSort by relevance Sort by last modified time
    Searched refs:pq (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/mesa3d/src/mesa/state_tracker/
st_cb_condrender.c 79 st->render_condition = stq->pq;
82 pipe->render_condition(pipe, stq->pq, m);
  /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);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_query.c 91 nvc0_query_destroy(struct pipe_context *pipe, struct pipe_query *pq)
93 nvc0_query_allocate(nvc0_context(pipe), nvc0_query(pq), 0);
94 FREE(nvc0_query(pq));
181 nvc0_query_begin(struct pipe_context *pipe, struct pipe_query *pq)
185 struct nvc0_query *q = nvc0_query(pq);
253 nvc0_query_end(struct pipe_context *pipe, struct pipe_query *pq)
257 struct nvc0_query *q = nvc0_query(pq);
335 nvc0_query_result(struct pipe_context *pipe, struct pipe_query *pq,
339 struct nvc0_query *q = nvc0_query(pq);
409 nvc0_query_fifo_wait(struct nouveau_pushbuf *push, struct pipe_query *pq)
    [all...]
nvc0_stateobj.h 66 struct pipe_query *pq; member in struct:nvc0_so_target
nvc0_shader_state.c 262 nvc0_query_fifo_wait(push, targ->pq);
269 nvc0_query_pushbuf_submit(push, targ->pq, 0x4);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_query.c 91 nvc0_query_destroy(struct pipe_context *pipe, struct pipe_query *pq)
93 nvc0_query_allocate(nvc0_context(pipe), nvc0_query(pq), 0);
94 FREE(nvc0_query(pq));
181 nvc0_query_begin(struct pipe_context *pipe, struct pipe_query *pq)
185 struct nvc0_query *q = nvc0_query(pq);
253 nvc0_query_end(struct pipe_context *pipe, struct pipe_query *pq)
257 struct nvc0_query *q = nvc0_query(pq);
335 nvc0_query_result(struct pipe_context *pipe, struct pipe_query *pq,
339 struct nvc0_query *q = nvc0_query(pq);
409 nvc0_query_fifo_wait(struct nouveau_pushbuf *push, struct pipe_query *pq)
    [all...]
nvc0_stateobj.h 66 struct pipe_query *pq; member in struct:nvc0_so_target
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup.h 146 struct llvmpipe_query *pq);
150 struct llvmpipe_query *pq);
lp_rast.h 230 lp_rast_arg_query( struct llvmpipe_query *pq )
233 arg.query_obj = pq;
lp_setup.c 1074 struct llvmpipe_query *pq)
1081 setup->active_query = pq;
1086 lp_rast_arg_query(pq))) {
1093 lp_rast_arg_query(pq))) {
1105 lp_setup_end_query(struct lp_setup_context *setup, struct llvmpipe_query *pq)
1111 assert(setup->active_query == pq);
1120 /* pq->fence should be the fence of the *last* scene which
1123 lp_fence_reference(&pq->fence, setup->scene->fence);
1132 lp_fence_reference(&pq->fence, setup->last_fence);
  /external/llvm/include/llvm/CodeGen/
ResourcePriorityQueue.h 32 ResourcePriorityQueue *PQ;
33 explicit resource_sort(ResourcePriorityQueue *pq) : PQ(pq) {}
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup.h 146 struct llvmpipe_query *pq);
150 struct llvmpipe_query *pq);
lp_rast.h 230 lp_rast_arg_query( struct llvmpipe_query *pq )
233 arg.query_obj = pq;
lp_setup.c 1074 struct llvmpipe_query *pq)
1081 setup->active_query = pq;
1086 lp_rast_arg_query(pq))) {
1093 lp_rast_arg_query(pq))) {
1105 lp_setup_end_query(struct lp_setup_context *setup, struct llvmpipe_query *pq)
1111 assert(setup->active_query == pq);
1120 /* pq->fence should be the fence of the *last* scene which
1123 lp_fence_reference(&pq->fence, setup->scene->fence);
1132 lp_fence_reference(&pq->fence, setup->last_fence);
  /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
nv50_push.c 256 if (!targ->pq) {
260 pipe->get_query_result(pipe, targ->pq, TRUE, (void *)&vert_count);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_stateobj.h 67 struct pipe_query *pq; member in struct:nv50_so_target
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9math.inl 1251 static inline D3DXQUATERNION* D3DXQuaternionConjugate(D3DXQUATERNION *pout, CONST D3DXQUATERNION *pq)
1253 if ( !pout || !pq) return NULL;
1254 pout->x = -pq->x;
1255 pout->y = -pq->y;
1256 pout->z = -pq->z;
1257 pout->w = pq->w;
1277 static inline WINBOOL D3DXQuaternionIsIdentity(D3DXQUATERNION *pq)
1279 if ( !pq) return FALSE;
1280 return ( (pq->x == 0.0f) && (pq->y == 0.0f) && (pq->z == 0.0f) && (pq->w == 1.0f) )
    [all...]
  /external/opencv/cv/src/
_cvkdtree.hpp 328 void pq_alternate(int alt_n, bbf_pqueue & pq, scalar_type dist) const {
333 pq.push_back(bbf_node(alt_n, dist));
334 push_heap(pq.begin(), pq.end());
340 int bbf_branch(int i, const __desctype * d, bbf_pqueue & pq) const {
344 pq_alternate(n.right, pq, n.boundary - d[n.dim]);
347 pq_alternate(n.left, pq, d[n.dim] - n.boundary);
  /external/chromium_org/chrome/browser/devtools/device/usb/
android_rsa.cc 141 void BnDiv(uint32* a, uint32* b, uint32** pq, uint32** pr) {
143 if (pq)
144 *pq = BnNew();
171 if (pq)
172 *pq = q;
  /external/e2fsprogs/util/
gen-tarball.in 39 -o -name CVS -o -name \*.rej -o -name Makefile.pq \
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
nacl.scons 57 [['NACL_FAULT_INJECTION=pq=GF2'],
64 [['NACL_FAULT_INJECTION=pq=GF3'],
  /frameworks/support/v7/palette/src/android/support/v7/graphics/
ColorCutQuantizer.java 127 final PriorityQueue<Vbox> pq = new PriorityQueue<Vbox>(maxColors, VBOX_COMPARATOR_VOLUME); local
130 pq.offer(new Vbox(0, maxColorIndex));
134 splitBoxes(pq, maxColors);
137 return generateAverageColors(pq);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 382 Set pq = new HashSet(); local
386 return pq;
400 pq.add(new PolicyQualifierInfo(bOut.toByteArray()));
410 return pq;
465 Set pq)
483 pq,
557 Set pq = null; local
584 pq = getQualifierSet(pinfo.getPolicyQualifiers());
606 p_node, pq, id_p, ci);
    [all...]
  /external/clang/test/SemaCXX/
overload-call.cpp 175 void test_quals_ranking(int * p, int volatile *pq, int * * pp, int * * * ppp) {
177 float* q2 = quals_rank1(pq);
189 quals_rank3(pq);

Completed in 756 milliseconds

12 3 4