Searched defs:msc (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dglx_empty.c90 int64_t * ust, int64_t * msc, int64_t * sbc)
95 (void) msc;
117 int64_t * msc, int64_t * sbc)
125 (void) msc;
134 int64_t * msc, int64_t * sbc)
140 (void) msc;
89 glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, int64_t * ust, int64_t * msc, int64_t * sbc) argument
114 glXWaitForMscOML(Display * dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t * ust, int64_t * msc, int64_t * sbc) argument
132 glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, int64_t target_sbc, int64_t * ust, int64_t * msc, int64_t * sbc) argument
/external/mesa3d/src/glx/apple/
H A Dglx_empty.c90 int64_t * ust, int64_t * msc, int64_t * sbc)
95 (void) msc;
117 int64_t * msc, int64_t * sbc)
125 (void) msc;
134 int64_t * msc, int64_t * sbc)
140 (void) msc;
89 glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, int64_t * ust, int64_t * msc, int64_t * sbc) argument
114 glXWaitForMscOML(Display * dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t * ust, int64_t * msc, int64_t * sbc) argument
132 glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, int64_t target_sbc, int64_t * ust, int64_t * msc, int64_t * sbc) argument
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c79 int64_t msc = (((uint64_t)msc_hi) << 32) | msc_lo; local
81 if (scrn->last_ust && scrn->last_msc && (ust > scrn->last_ust) && (msc > scrn->last_msc))
82 scrn->ns_frame = (ust - scrn->last_ust) / (msc - scrn->last_msc);
84 if (scrn->next_msc && (scrn->next_msc < msc))
88 scrn->last_msc = msc;
/external/chromium_org/third_party/mesa/src/src/glx/
H A Ddri2.c130 aevent->msc = ((CARD64)awire->msc_hi << 32) | awire->msc_lo;
587 Bool DRI2GetMSC(Display *dpy, XID drawable, CARD64 *ust, CARD64 *msc, argument
609 *msc = vals_to_card64(rep.msc_lo, rep.msc_hi);
633 CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc)
655 *msc = ((CARD64)rep.msc_hi << 32) | (CARD64)rep.msc_lo;
674 CARD64 *msc, CARD64 *sbc)
696 *msc = ((CARD64)rep.msc_hi << 32) | rep.msc_lo;
632 DRI2WaitMSC(Display *dpy, XID drawable, CARD64 target_msc, CARD64 divisor, CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc) argument
673 DRI2WaitSBC(Display *dpy, XID drawable, CARD64 target_sbc, CARD64 *ust, CARD64 *msc, CARD64 *sbc) argument
H A Ddri2_glx.c425 int64_t *ust, int64_t *msc, int64_t *sbc)
433 *msc = dri2_msc;
446 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc)
454 *msc = dri2_msc;
462 int64_t *msc, int64_t *sbc)
470 *msc = dri2_msc;
424 dri2DrawableGetMSC(struct glx_screen *psc, __GLXDRIdrawable *pdraw, int64_t *ust, int64_t *msc, int64_t *sbc) argument
445 dri2WaitForMSC(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) argument
461 dri2WaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) argument
H A Ddri_glx.c71 const __DRImediaStreamCounterExtension *msc; member in struct:dri_screen
729 int64_t *ust, int64_t *msc, int64_t *sbc)
734 if (pdp && psc->sbc && psc->msc)
735 return ( (*psc->msc->getMSC)(psc->driScreen, msc) == 0 &&
742 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc)
747 if (pdp != NULL && psc->msc != NULL) {
748 ret = (*psc->msc->waitForMSC) (pdp->driDrawable, target_msc,
749 divisor, remainder, msc, sbc);
760 int64_t *msc, int64_
728 driDrawableGetMSC(struct glx_screen *base, __GLXDRIdrawable *pdraw, int64_t *ust, int64_t *msc, int64_t *sbc) argument
741 driWaitForMSC(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) argument
759 driWaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) argument
[all...]
H A Dglxcmds.c1841 int64_t ust, msc, sbc; local
1868 ret = psc->driScreen->getDrawableMSC(psc, pdraw, &ust, &msc, &sbc);
1869 *count = (unsigned) msc;
1885 int64_t ust, msc, sbc; local
1906 ret = psc->driScreen->waitForMSC(pdraw, 0, divisor, remainder, &ust, &msc,
1908 *count = (unsigned) msc;
2074 int64_t * ust, int64_t * msc, int64_t * sbc)
2090 ret = psc->driScreen->getDrawableMSC(psc, pdraw, ust, msc, sbc);
2241 int64_t * msc, int64_t * sbc)
2261 ust, msc, sb
2073 __glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, int64_t * ust, int64_t * msc, int64_t * sbc) argument
2238 __glXWaitForMscOML(Display * dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t * ust, int64_t * msc, int64_t * sbc) argument
2271 __glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, int64_t target_sbc, int64_t * ust, int64_t * msc, int64_t * sbc) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c79 int64_t msc = (((uint64_t)msc_hi) << 32) | msc_lo; local
81 if (scrn->last_ust && scrn->last_msc && (ust > scrn->last_ust) && (msc > scrn->last_msc))
82 scrn->ns_frame = (ust - scrn->last_ust) / (msc - scrn->last_msc);
84 if (scrn->next_msc && (scrn->next_msc < msc))
88 scrn->last_msc = msc;
/external/mesa3d/src/glx/
H A Ddri2.c130 aevent->msc = ((CARD64)awire->msc_hi << 32) | awire->msc_lo;
587 Bool DRI2GetMSC(Display *dpy, XID drawable, CARD64 *ust, CARD64 *msc, argument
609 *msc = vals_to_card64(rep.msc_lo, rep.msc_hi);
633 CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc)
655 *msc = ((CARD64)rep.msc_hi << 32) | (CARD64)rep.msc_lo;
674 CARD64 *msc, CARD64 *sbc)
696 *msc = ((CARD64)rep.msc_hi << 32) | rep.msc_lo;
632 DRI2WaitMSC(Display *dpy, XID drawable, CARD64 target_msc, CARD64 divisor, CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc) argument
673 DRI2WaitSBC(Display *dpy, XID drawable, CARD64 target_sbc, CARD64 *ust, CARD64 *msc, CARD64 *sbc) argument
H A Ddri2_glx.c425 int64_t *ust, int64_t *msc, int64_t *sbc)
433 *msc = dri2_msc;
446 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc)
454 *msc = dri2_msc;
462 int64_t *msc, int64_t *sbc)
470 *msc = dri2_msc;
424 dri2DrawableGetMSC(struct glx_screen *psc, __GLXDRIdrawable *pdraw, int64_t *ust, int64_t *msc, int64_t *sbc) argument
445 dri2WaitForMSC(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) argument
461 dri2WaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) argument
H A Ddri_glx.c71 const __DRImediaStreamCounterExtension *msc; member in struct:dri_screen
729 int64_t *ust, int64_t *msc, int64_t *sbc)
734 if (pdp && psc->sbc && psc->msc)
735 return ( (*psc->msc->getMSC)(psc->driScreen, msc) == 0 &&
742 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc)
747 if (pdp != NULL && psc->msc != NULL) {
748 ret = (*psc->msc->waitForMSC) (pdp->driDrawable, target_msc,
749 divisor, remainder, msc, sbc);
760 int64_t *msc, int64_
728 driDrawableGetMSC(struct glx_screen *base, __GLXDRIdrawable *pdraw, int64_t *ust, int64_t *msc, int64_t *sbc) argument
741 driWaitForMSC(__GLXDRIdrawable *pdraw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) argument
759 driWaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) argument
[all...]
H A Dglxcmds.c1841 int64_t ust, msc, sbc; local
1868 ret = psc->driScreen->getDrawableMSC(psc, pdraw, &ust, &msc, &sbc);
1869 *count = (unsigned) msc;
1885 int64_t ust, msc, sbc; local
1906 ret = psc->driScreen->waitForMSC(pdraw, 0, divisor, remainder, &ust, &msc,
1908 *count = (unsigned) msc;
2074 int64_t * ust, int64_t * msc, int64_t * sbc)
2090 ret = psc->driScreen->getDrawableMSC(psc, pdraw, ust, msc, sbc);
2241 int64_t * msc, int64_t * sbc)
2261 ust, msc, sb
2073 __glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, int64_t * ust, int64_t * msc, int64_t * sbc) argument
2238 __glXWaitForMscOML(Display * dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t * ust, int64_t * msc, int64_t * sbc) argument
2271 __glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, int64_t target_sbc, int64_t * ust, int64_t * msc, int64_t * sbc) argument
[all...]
/external/bluetooth/bluedroid/stack/rfcomm/
H A Drfc_int.h111 } msc; member in union:__anon1692::__anon1693
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Dplatform_x11.c698 int64_t msc, int64_t divisor, int64_t remainder)
703 uint32_t msc_hi = msc >> 32;
704 uint32_t msc_lo = msc & 0xffffffff;
697 dri2_swap_buffers_msc(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw, int64_t msc, int64_t divisor, int64_t remainder) argument
/external/mesa3d/src/egl/drivers/dri2/
H A Dplatform_x11.c698 int64_t msc, int64_t divisor, int64_t remainder)
703 uint32_t msc_hi = msc >> 32;
704 uint32_t msc_lo = msc & 0xffffffff;
697 dri2_swap_buffers_msc(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *draw, int64_t msc, int64_t divisor, int64_t remainder) argument
/external/chromium_org/third_party/mesa/src/include/GL/
H A Dglx.h512 int64_t msc; member in struct:__anon13633
/external/mesa3d/include/GL/
H A Dglx.h512 int64_t msc; member in struct:__anon27044
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_context.h315 struct radeon_state_atom msc; member in struct:r100_hw_state
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_context.h315 struct radeon_state_atom msc; member in struct:r100_hw_state
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_context.h495 struct radeon_state_atom msc; member in struct:r200_hw_state
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_context.h495 struct radeon_state_atom msc; member in struct:r200_hw_state
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 7167 milliseconds