Home
last modified time | relevance | path

Searched refs:msc (Results 1 - 25 of 77) sorted by relevance

1234

/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLSyncControlTest.cpp200 EGLuint64KHR ust = 0, msc = 0, sbc = 0; in TEST_F() local
204 eglGetSyncValuesCHROMIUM(mDisplay, mSurface, &ust, &msc, &sbc); in TEST_F()
206 ASSERT_EGL_TRUE(eglGetSyncValuesCHROMIUM(mDisplay, mSurface, &ust, &msc, &sbc)); in TEST_F()
207 // Initial msc and sbc value should be true. Initial ust value is unspecified. in TEST_F()
208 ASSERT_EQ(0ull, msc); in TEST_F()
222 ASSERT_EGL_TRUE(eglGetSyncValuesCHROMIUM(mDisplay, mSurface, &ust, &msc, &sbc)); in TEST_F()
227 // sbc should change to 1. msc and ust to some non-zero values. in TEST_F()
230 ASSERT_GT(msc, 0ull); in TEST_F()
249 // sbc2 should be 2. msc2 and ust2 should be greater than previous msc and ust values. in TEST_F()
252 ASSERT_GT(msc2, msc); in TEST_F()
[all...]
/third_party/mesa3d/src/glx/apple/
H A Dglx_empty.c57 int64_t * ust, int64_t * msc, int64_t * sbc) in glXGetSyncValuesOML()
62 (void) msc; in glXGetSyncValuesOML()
84 int64_t * msc, int64_t * sbc) in glXWaitForMscOML()
92 (void) msc; in glXWaitForMscOML()
101 int64_t * msc, int64_t * sbc) in glXWaitForSbcOML()
107 (void) msc; in glXWaitForSbcOML()
56 glXGetSyncValuesOML(Display * dpy, GLXDrawable drawable, int64_t * ust, int64_t * msc, int64_t * sbc) glXGetSyncValuesOML() argument
81 glXWaitForMscOML(Display * dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t * ust, int64_t * msc, int64_t * sbc) glXWaitForMscOML() argument
99 glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, int64_t target_sbc, int64_t * ust, int64_t * msc, int64_t * sbc) glXWaitForSbcOML() argument
/third_party/libwebsockets/lib/tls/mbedtls/
H A Dmbedtls-session.c77 mbedtls_ssl_context *msc; in lws_tls_reuse_session() local
100 msc = SSL_mbedtls_ssl_context_from_SSL(wsi->tls.ssl); in lws_tls_reuse_session()
101 mbedtls_ssl_set_session(msc, &ts->session); in lws_tls_reuse_session()
167 mbedtls_ssl_context *msc; in lws_tls_session_new_mbedtls() local
184 msc = SSL_mbedtls_ssl_context_from_SSL(wsi->tls.ssl); in lws_tls_session_new_mbedtls()
222 if (mbedtls_ssl_get_session(msc, &ts->session)) { in lws_tls_session_new_mbedtls()
242 if (mbedtls_ssl_get_session(msc, &ts->session)) in lws_tls_session_new_mbedtls()
/third_party/ffmpeg/libavformat/
H A Drtpdec_qt.c141 MOVStreamContext *msc; in qt_rtp_parse_packet() local
148 st->priv_data = msc = av_mallocz(sizeof(MOVStreamContext)); in qt_rtp_parse_packet()
149 if (!msc) { in qt_rtp_parse_packet()
158 qt->bytes_per_frame = msc->bytes_per_frame; in qt_rtp_parse_packet()
159 av_free(msc); in qt_rtp_parse_packet()
H A Dmov.c3473 const MOVStreamContext *msc,
3479 if (edit_list_index == msc->elst_count) {
3482 *edit_list_media_time = msc->elst_data[edit_list_index].time;
3483 *edit_list_duration = msc->elst_data[edit_list_index].duration;
3485 /* duration is in global timescale units;convert to msc timescale */
3490 *edit_list_duration = av_rescale(*edit_list_duration, msc->time_scale,
3529 MOVStreamContext *msc = st->priv_data;
3541 if (msc->dts_shift > 0) {
3542 timestamp_pts -= msc->dts_shift;
3702 MOVStreamContext *msc
[all...]
/third_party/mesa3d/include/EGL/
H A Deglextchromium.h48 EGLuint64CHROMIUM *msc, EGLuint64CHROMIUM *sbc);
52 EGLuint64CHROMIUM *msc, EGLuint64CHROMIUM *sbc);
/third_party/backends/backend/
H A Dhs2p-scsi.c862 } msc; /* Mode Select Command */ in mode_select() local
868 memset (&msc, 0, sizeof (msc)); /* Fill struct with zeros */ in mode_select()
869 msc.cmd.opcode = HS2P_SCSI_MODE_SELECT; /* choose Mode Select Command */ in mode_select()
870 msc.cmd.byte1 &= ~SMS_SP; /* unset bit0 SavePage to 0 */ in mode_select()
871 msc.cmd.byte1 |= SMS_PF; /* set bit4 PageFormat to 1 */ in mode_select()
873 msc.cmd.len = sizeof (msc.mp.hdr) + npages; /* either 4+8 or 4+20 */ in mode_select()
875 memcpy (&msc.mp, settings, msc in mode_select()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterUtility.java41 * @param msc most significant char
45 static int toInt(char msc, char lsc) in toInt() argument
47 return ((msc << 16) | lsc); in toInt()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUCharacterUtility.java42 * @param msc most significant char
46 static int toInt(char msc, char lsc) in toInt() argument
48 return ((msc << 16) | lsc); in toInt()
/third_party/mesa3d/src/loader/
H A Dloader_dri3_helper.h156 uint64_t ust, msc; member
158 /* Last received UST/MSC values from present notify msc event */
189 * recv_sbc, ust, msc, recv_msc_serial,
221 int64_t *ust, int64_t *msc, int64_t *sbc);
233 int64_t *msc, int64_t *sbc);
H A Dloader_dri3_helper.c541 draw->msc = ce->msc; in dri3_handle_present_event()
544 draw->notify_msc = ce->msc; in dri3_handle_present_event()
601 * Get the X server to send an event when the target msc/divisor/remainder is
608 int64_t *ust, int64_t *msc, int64_t *sbc) in loader_dri3_wait_for_msc()
629 *msc = draw->notify_msc; in loader_dri3_wait_for_msc()
645 int64_t *msc, int64_t *sbc) in loader_dri3_wait_for_sbc()
665 *msc = draw->msc; in loader_dri3_wait_for_sbc()
1063 target_msc = draw->msc in loader_dri3_swap_buffers_msc()
605 loader_dri3_wait_for_msc(struct loader_dri3_drawable *draw, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) loader_dri3_wait_for_msc() argument
643 loader_dri3_wait_for_sbc(struct loader_dri3_drawable *draw, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) loader_dri3_wait_for_sbc() argument
2319 int64_t ust, msc, sbc; loader_dri3_swapbuffer_barrier() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_dri.c87 int64_t msc = (((uint64_t)msc_hi) << 32) | msc_lo; in vl_dri2_handle_stamps() local
90 scrn->last_msc && (msc > scrn->last_msc)) in vl_dri2_handle_stamps()
91 scrn->ns_frame = (ust - scrn->last_ust) / (msc - scrn->last_msc); in vl_dri2_handle_stamps()
94 scrn->last_msc = msc; in vl_dri2_handle_stamps()
H A Dvl_winsys_dri3.c124 dri3_handle_stamps(struct vl_dri3_screen *scrn, uint64_t ust, uint64_t msc) in dri3_handle_stamps() argument
129 scrn->last_msc && (msc > scrn->last_msc)) in dri3_handle_stamps()
130 scrn->ns_frame = (ust_ns - scrn->last_ust) / (msc - scrn->last_msc); in dri3_handle_stamps()
133 scrn->last_msc = msc; in dri3_handle_stamps()
153 dri3_handle_stamps(scrn, ce->ust, ce->msc); in dri3_handle_present_event()
156 dri3_handle_stamps(scrn, ce->ust, ce->msc); in dri3_handle_present_event()
/third_party/mesa3d/src/glx/
H A Dg_glxglvnddispatchfuncs.c712 int64_t *ust, int64_t *msc, int64_t *sbc) in dispatch_GetSyncValuesOML()
725 return pGetSyncValuesOML(dpy, drawable, ust, msc, sbc); in dispatch_GetSyncValuesOML()
930 int64_t *msc, int64_t *sbc) in dispatch_WaitForMscOML()
943 return pWaitForMscOML(dpy, drawable, target_msc, divisor, remainder, ust, msc, sbc); in dispatch_WaitForMscOML()
950 int64_t *msc, int64_t *sbc) in dispatch_WaitForSbcOML()
963 return pWaitForSbcOML(dpy, drawable, target_sbc, ust, msc, sbc); in dispatch_WaitForSbcOML()
711 dispatch_GetSyncValuesOML(Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc) dispatch_GetSyncValuesOML() argument
927 dispatch_WaitForMscOML(Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) dispatch_WaitForMscOML() argument
948 dispatch_WaitForSbcOML(Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) dispatch_WaitForSbcOML() argument
H A Dglxcmds.c1885 int64_t ust, msc, sbc; in glXGetVideoSyncSGI() local
1907 ret = psc->driScreen->getDrawableMSC(psc, pdraw, &ust, &msc, &sbc); in glXGetVideoSyncSGI()
1908 *count = (unsigned) msc; in glXGetVideoSyncSGI()
1923 int64_t ust, msc, sbc; in glXWaitVideoSyncSGI() local
1943 ret = psc->driScreen->waitForMSC(pdraw, 0, divisor, remainder, &ust, &msc, in glXWaitVideoSyncSGI()
1945 *count = (unsigned) msc; in glXWaitVideoSyncSGI()
2076 int64_t *ust, int64_t *msc, int64_t *sbc) in glXGetSyncValuesOML()
2092 ret = psc->driScreen->getDrawableMSC(psc, pdraw, ust, msc, sbc); in glXGetSyncValuesOML()
2239 int64_t *msc, int64_t *sbc) in glXWaitForMscOML()
2259 ust, msc, sb in glXWaitForMscOML()
2075 glXGetSyncValuesOML(Display *dpy, GLXDrawable drawable, int64_t *ust, int64_t *msc, int64_t *sbc) glXGetSyncValuesOML() argument
2237 glXWaitForMscOML(Display *dpy, GLXDrawable drawable, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc) glXWaitForMscOML() argument
2269 glXWaitForSbcOML(Display *dpy, GLXDrawable drawable, int64_t target_sbc, int64_t *ust, int64_t *msc, int64_t *sbc) glXWaitForSbcOML() argument
[all...]
H A Dglxclient.h129 int64_t *ust, int64_t *msc, int64_t *sbc);
132 int64_t *msc, int64_t *sbc);
134 int64_t *msc, int64_t *sbc);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DSurfaceGL.h25 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
H A DSurfaceGL.cpp31 egl::Error SurfaceGL::getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) in getSyncValues() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A DWindowSurfaceGLX.cpp294 egl::Error WindowSurfaceGLX::getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) in getSyncValues() argument
297 reinterpret_cast<int64_t *>(msc), reinterpret_cast<int64_t *>(sbc))) in getSyncValues()
H A DWindowSurfaceGLX.h59 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DSwapChainD3D.h72 virtual egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) = 0;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DSwapChain9.h57 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/null/
H A DSurfaceNULL.cpp66 egl::Error SurfaceNULL::getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) in getSyncValues() argument
H A DSurfaceNULL.h38 egl::Error getSyncValues(EGLuint64KHR *ust, EGLuint64KHR *msc, EGLuint64KHR *sbc) override;
/third_party/libevdev/libevdev/
H A Dlibevdev-int.h296 max_mask(MSC, msc); in type_to_mask_const()
319 max_mask(MSC, msc); in type_to_mask()

Completed in 24 milliseconds

1234