HomeSort by relevance Sort by last modified time
    Searched refs:pres (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_resource.c 36 struct pipe_resource *pres,
39 if (unlikely(pres->target == PIPE_BUFFER))
40 return nv50_surface_from_buffer(pipe, pres, templ);
41 return nvc0_miptree_surface_new(pipe, pres, templ);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_resource.c 36 struct pipe_resource *pres,
39 if (unlikely(pres->target == PIPE_BUFFER))
40 return nv50_surface_from_buffer(pipe, pres, templ);
41 return nvc0_miptree_surface_new(pipe, pres, templ);
  /external/chromium_org/chrome/common/extensions/docs/static/js/
site.js 27 var pres = document.querySelectorAll('pre');
28 for (var i = 0, pre; pre = pres[i]; ++i) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_resource.c 68 struct pipe_resource *pres,
71 if (unlikely(pres->target == PIPE_BUFFER))
72 return nv50_surface_from_buffer(pipe, pres, templ);
73 return nv50_miptree_surface_new(pipe, pres, templ);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_resource.c 68 struct pipe_resource *pres,
71 if (unlikely(pres->target == PIPE_BUFFER))
72 return nv50_surface_from_buffer(pipe, pres, templ);
73 return nv50_miptree_surface_new(pipe, pres, templ);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 497 int16 res[256], *pres; // residue local
502 pres = res;
517 pres[0] = m0 + m1;
518 pres[2] = m0 - m1;
519 pres[1] = m2 + m3;
520 pres[3] = m3 - m2;
523 pres += 4;
533 pres = res + (j << 6);
537 m0 = pres[0];
538 m3 = pres[3<<4]
1292 int16 res[16], *pres; local
1729 int16 res[128], *pres; \/\/ residue local
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
tr_html_unittest.py 188 pres = msg.GetPresentableContent()
189 self.failUnless(pres ==
194 pres = msg.GetPresentableContent()
195 self.failUnless(pres ==
206 pres = msg.GetPresentableContent()
207 self.failUnless(pres ==
213 pres = msg.GetPresentableContent()
214 self.failUnless(pres == 'BEGIN_LINKBEGIN_BOLDX_NUM_XX_CAT_XEND_BOLDEND_LINK')
220 pres = msg.GetPresentableContent()
221 self.failUnless(pres =
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XString.java     [all...]
XStringForFSB.java 865 boolean pres = false;
873 if (!pres)
889 pres = true;
894 pres = true;
900 pres = true;
906 pres = false;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
xm_st.c 64 struct pipe_resource *pres; local
69 pres = xstfb->display_resource;
71 if (!pres || pres != ptex) {
73 pres = xstfb->display_resource;
76 xstfb->screen->flush_frontbuffer(xstfb->screen, pres, 0, 0, &xstfb->buffer->ws);
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_st.c 64 struct pipe_resource *pres; local
69 pres = xstfb->display_resource;
71 if (!pres || pres != ptex) {
73 pres = xstfb->display_resource;
76 xstfb->screen->flush_frontbuffer(xstfb->screen, pres, 0, 0, &xstfb->buffer->ws);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
native_helper.c 173 struct pipe_resource *pres)
175 pipe_resource_reference(&rsurf->resources[which], pres);
198 struct pipe_resource *pres = NULL; local
199 pipe_resource_reference(&pres, rsurf->resources[which]);
200 return pres;
242 struct pipe_resource *pres = rsurf->resources[which]; local
244 if (!pres)
248 pres, 0, 0, winsys_drawable_handle);
native_helper.h 58 struct pipe_resource *pres);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_helper.c 173 struct pipe_resource *pres)
175 pipe_resource_reference(&rsurf->resources[which], pres);
198 struct pipe_resource *pres = NULL; local
199 pipe_resource_reference(&pres, rsurf->resources[which]);
200 return pres;
242 struct pipe_resource *pres = rsurf->resources[which]; local
244 if (!pres)
248 pres, 0, 0, winsys_drawable_handle);
native_helper.h 58 struct pipe_resource *pres);
  /external/eigen/blas/
level1_cplx_impl.h 40 int EIGEN_BLAS_FUNC(dotcw)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy, RealScalar* pres)
48 Scalar* res = reinterpret_cast<Scalar*>(pres);
59 int EIGEN_BLAS_FUNC(dotuw)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy, RealScalar* pres)
67 Scalar* res = reinterpret_cast<Scalar*>(pres);
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 281 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres)
283 product_coeff_vectorized_unroller<UnrollingIndex-PacketSize, Lhs, Rhs, Packet>::run(row, col, lhs, rhs, pres);
284 pres = padd(pres, pmul( lhs.template packet<Aligned>(row, UnrollingIndex) , rhs.template packet<Aligned>(UnrollingIndex, col) ));
292 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres)
294 pres = pmul(lhs.template packet<Aligned>(row, 0) , rhs.template packet<Aligned>(0, col));
306 Packet pres; local
307 product_coeff_vectorized_unroller<UnrollingIndex+1-PacketSize, Lhs, Rhs, Packet>::run(row, col, lhs, rhs, pres);
309 res = predux(pres);
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
t1.c 1300 opj_tcd_resolution_t* pres = &tilec->resolutions[resno - 1]; local
1304 opj_tcd_resolution_t* pres = &tilec->resolutions[resno - 1]; local
1493 opj_tcd_resolution_t *pres = &tilec->resolutions[resno - 1]; local
1497 opj_tcd_resolution_t *pres = &tilec->resolutions[resno - 1]; local
    [all...]
  /external/chromium_org/third_party/markdown/
treeprocessors.py 389 pres = root.getiterator('pre')
390 for pre in pres:
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 471 milliseconds