Home
last modified time | relevance | path

Searched refs:bRet (Results 1 – 8 of 8) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
Dpoll-win32.c161 BOOL bRet; in windows_compute_revents() local
216 bRet = GetNumberOfConsoleInputEvents (h, &nbuffer); in windows_compute_revents()
217 if (bRet) in windows_compute_revents()
227 bRet = PeekConsoleInput (h, irbuffer, nbuffer, &avail); in windows_compute_revents()
228 if (!bRet || avail == 0) in windows_compute_revents()
569 BOOL bRet; in pa_poll() local
570 while ((bRet = PeekMessage (&msg, NULL, 0, 0, PM_REMOVE)) != 0) in pa_poll()
/third_party/mesa3d/src/c11/impl/
Dthreads_win32.c337 BOOL bRet;
357 bRet = DuplicateHandle(GetCurrentProcess(), // source process (pseudo) handle
364 assert(bRet);
365 if (!bRet) {
/third_party/mesa3d/src/gallium/frontends/wgl/
Dstw_ext_pbuffer.c87 BOOL bRet; in wglCreatePbufferARB() local
264 bRet = SetPixelFormat(GetDC(hWnd), iDisplayablePixelFormat, &pfd); in wglCreatePbufferARB()
265 assert(bRet); in wglCreatePbufferARB()
Dstw_framebuffer.c509 BOOL bRet = SetPixelFormat(hdc, iPixelFormat, NULL); in DrvSetPixelFormat() local
510 if (!bRet) { in DrvSetPixelFormat()
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
DD3DKMT.cpp287 BOOL bRet; in D3DKMTQueryAdapterInfo() local
289 bRet = GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, in D3DKMTQueryAdapterInfo()
292 assert(bRet); in D3DKMTQueryAdapterInfo()
/third_party/skia/third_party/externals/angle2/util/windows/third_party/StackWalker/src/
DStackWalker.cpp1010 BOOL bRet = this->m_sw->Init(szSymPath); in LoadModules() local
1014 if (bRet == FALSE) in LoadModules()
1021 bRet = this->m_sw->LoadModules(this->m_hProcess, this->m_dwProcessId); in LoadModules()
1022 if (bRet != FALSE) in LoadModules()
1024 return bRet; in LoadModules()
1341 BOOL bRet = ReadProcessMemory(hProcess, (LPVOID)qwBaseAddress, lpBuffer, nSize, &st); in myReadProcMem() local
1344 return bRet; in myReadProcMem()
/third_party/openh264/codec/encoder/core/src/
Dsvc_base_layer_md.cpp1908 bool bRet = true; in WelsMdInterJudgePskip() local
1914 bRet = WelsMdPSkipEnc (pEncCtx, pWelsMd, pCurMb, pMbCache) ? true : false; in WelsMdInterJudgePskip()
1915 return bRet; in WelsMdInterJudgePskip()
/third_party/sqlite/src/
Dshell.c10826 int bRet; in idxSampleFunc() local
10831 bRet = 1; in idxSampleFunc()
10833 bRet = (p->nRet / p->nRow) <= p->target; in idxSampleFunc()
10834 if( bRet==0 ){ in idxSampleFunc()
10837 bRet = ((int)rnd % 100) <= p->iTarget; in idxSampleFunc()
10841 sqlite3_result_int(pCtx, bRet); in idxSampleFunc()
10843 p->nRet += (double)bRet; in idxSampleFunc()