Home
last modified time | relevance | path

Searched refs:ust (Results 1 – 19 of 19) sorted by relevance

/external/mesa3d/src/glx/apple/
Dglx_empty.c90 int64_t * ust, int64_t * msc, int64_t * sbc) in glXGetSyncValuesOML() argument
94 (void) ust; in glXGetSyncValuesOML()
116 int64_t remainder, int64_t * ust, in glXWaitForMscOML() argument
124 (void) ust; in glXWaitForMscOML()
133 int64_t target_sbc, int64_t * ust, in glXWaitForSbcOML() argument
139 (void) ust; in glXWaitForSbcOML()
/external/mesa3d/src/glx/
Ddri2.h93 DRI2GetMSC(Display *dpy, XID drawable, CARD64 *ust, CARD64 *msc, CARD64 *sbc);
97 CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc);
100 DRI2WaitSBC(Display *dpy, XID drawable, CARD64 target_sbc, CARD64 *ust,
Ddri2.c129 aevent->ust = ((CARD64)awire->ust_hi << 32) | awire->ust_lo; in DRI2WireToEvent()
587 Bool DRI2GetMSC(Display *dpy, XID drawable, CARD64 *ust, CARD64 *msc, in DRI2GetMSC() argument
608 *ust = vals_to_card64(rep.ust_lo, rep.ust_hi); in DRI2GetMSC()
633 CARD64 remainder, CARD64 *ust, CARD64 *msc, CARD64 *sbc) in DRI2WaitMSC() argument
654 *ust = ((CARD64)rep.ust_hi << 32) | (CARD64)rep.ust_lo; in DRI2WaitMSC()
673 Bool DRI2WaitSBC(Display *dpy, XID drawable, CARD64 target_sbc, CARD64 *ust, in DRI2WaitSBC() argument
695 *ust = ((CARD64)rep.ust_hi << 32) | rep.ust_lo; in DRI2WaitSBC()
Ddri_glx.c729 int64_t *ust, int64_t *msc, int64_t *sbc) in driDrawableGetMSC() argument
737 __glXGetUST(ust) == 0 ); in driDrawableGetMSC()
742 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) in driWaitForMSC() argument
754 return ret == 0 && __glXGetUST(ust) == 0; in driWaitForMSC()
759 driWaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, in driWaitForSBC() argument
771 return ((ret == 0) && (__glXGetUST(ust) == 0)); in driWaitForSBC()
775 pdp->base.xDrawable, target_sbc, ust, msc, sbc); in driWaitForSBC()
Dglxclient.h120 int64_t *ust, int64_t *msc, int64_t *sbc);
122 int64_t divisor, int64_t remainder, int64_t *ust,
124 int (*waitForSBC)(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust,
769 extern int __glXGetUST(int64_t * ust);
Dglxcmds.c1841 int64_t ust, msc, sbc; in __glXGetVideoSyncSGI() local
1868 ret = psc->driScreen->getDrawableMSC(psc, pdraw, &ust, &msc, &sbc); in __glXGetVideoSyncSGI()
1885 int64_t ust, msc, sbc; in __glXWaitVideoSyncSGI() local
1906 ret = psc->driScreen->waitForMSC(pdraw, 0, divisor, remainder, &ust, &msc, in __glXWaitVideoSyncSGI()
2074 int64_t * ust, int64_t * msc, int64_t * sbc) in __glXGetSyncValuesOML() argument
2090 ret = psc->driScreen->getDrawableMSC(psc, pdraw, ust, msc, sbc); in __glXGetSyncValuesOML()
2240 int64_t remainder, int64_t * ust, in __glXWaitForMscOML() argument
2261 ust, msc, sbc); in __glXWaitForMscOML()
2272 int64_t target_sbc, int64_t * ust, in __glXWaitForSbcOML() argument
2289 ret = psc->driScreen->waitForSBC(pdraw, target_sbc, ust, msc, sbc); in __glXWaitForSbcOML()
[all …]
Ddri2_glx.c425 int64_t *ust, int64_t *msc, int64_t *sbc) in dri2DrawableGetMSC() argument
432 *ust = dri2_ust; in dri2DrawableGetMSC()
446 int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) in dri2WaitForMSC() argument
453 *ust = dri2_ust; in dri2WaitForMSC()
461 dri2WaitForSBC(__GLXDRIdrawable *pdraw, int64_t target_sbc, int64_t *ust, in dri2WaitForSBC() argument
469 *ust = dri2_ust; in dri2WaitForSBC()
Dglxext.c141 aevent->ust = ((CARD64)awire->ust_hi << 32) | awire->ust_lo; in XEXT_GENERATE_ERROR_STRING()
/external/srtp/
DMakefile87 ust = crypto/ust/ust.o macro
DMakefile.in89 ust = crypto/ust/ust.o
DChanges77 test/srtp-driver, test/kernel-driver, and test/ust-driver.
127 Added argument processing to ust-driver.c, and added that app to
/external/mesa3d/src/gallium/auxiliary/vl/
Dvl_winsys_dri.c78 int64_t ust = ((((uint64_t)ust_hi) << 32) | ust_lo) * 1000; in vl_dri2_handle_stamps() local
81 if (scrn->last_ust && scrn->last_msc && (ust > scrn->last_ust) && (msc > scrn->last_msc)) in vl_dri2_handle_stamps()
82 scrn->ns_frame = (ust - scrn->last_ust) / (msc - scrn->last_msc); in vl_dri2_handle_stamps()
87 scrn->last_ust = ust; in vl_dri2_handle_stamps()
/external/mesa3d/include/GL/
Dglxext.h816 extern Bool glXGetSyncValuesOML (Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, in…
819 …drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int6…
820 extern Bool glXWaitForSbcOML (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust,…
822 typedef Bool ( * PFNGLXGETSYNCVALUESOMLPROC) (Display *dpy, GLXDrawable drawable, int64_t *ust, int…
825 …drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int6…
826 …OMLPROC) (Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int6…
Dwglext.h645 extern BOOL WINAPI wglGetSyncValuesOML (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
649 …rMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 …
650 extern BOOL WINAPI wglWaitForSbcOML (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
652 typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
656 …MLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 …
657 typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc,…
Dglx.h511 int64_t ust; member
/external/icu/icu4c/source/data/unit/
Duz.txt1331 dnam{"dyum sim. ust."}
1332 one{"{0} dyum sim. ust."}
1333 other{"{0} dyum sim. ust."}
1341 dnam{"mm sim. ust."}
1342 one{"{0} mm sim. ust."}
1343 other{"{0} mm sim. ust."}
/external/openssh/
DCREDITS96 Udo Schweigert <ust@cert.siemens.de> - ReliantUNIX support
/external/mesa3d/include/GL/internal/
Ddri_interface.h365 int (*getUST)(int64_t * ust);
/external/icu/icu4c/source/data/zone/
Dis.txt1630 lg{"Máritíustími"}