Home
last modified time | relevance | path

Searched refs:hres (Results 1 – 7 of 7) sorted by relevance

/external/mdnsresponder/mDNSWindows/
DVPCDetect.cpp37 HRESULT hres; in IsVPCRunning() local
65 hres = CoInitializeEx(0, COINIT_MULTITHREADED); in IsVPCRunning()
66 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); in IsVPCRunning()
71hres = CoInitializeSecurity(NULL, -1, NULL, NULL, RPC_C_AUTHN_LEVEL_DEFAULT, RPC_C_IMP_LEVEL_IMPE… in IsVPCRunning()
72 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); in IsVPCRunning()
77hres = CoCreateInstance( CLSID_WbemLocator, 0, CLSCTX_INPROC_SERVER, IID_IWbemLocator, (LPVOID *) … in IsVPCRunning()
78 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); in IsVPCRunning()
84hres = pLoc->ConnectServer( _bstr_t(L"ROOT\\CIMV2"), NULL, NULL, 0, WBEM_FLAG_CONNECT_USE_MAX_WAIT… in IsVPCRunning()
85 require_action( SUCCEEDED( hres ), exit, err = kUnknownErr ); in IsVPCRunning()
90hres = CoSetProxyBlanket( pSvc, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE, NULL, RPC_C_AUTHN_LEVEL_CALL,… in IsVPCRunning()
[all …]
/external/adhd/cras/src/common/
Dedid_utils.c234 int hres = base[DTD_HA_LO] + ((base[DTD_HABL_HI] & 0xf0)<<4); in show_edid_dtd() local
252 int refr = (pelclk * 10000)/((hres+hbl)*(vres+vbl)); in show_edid_dtd()
253 int refm = (pelclk * 10000)%((hres+hbl)*(vres+vbl)); in show_edid_dtd()
254 int refd = (refm*100)/((hres+hbl)*(vres+vbl)); in show_edid_dtd()
258 hres, vres, (mdflg & 0x80) ? 'i' : 'p', in show_edid_dtd()
264 hres+hso, hres+hso+hsw, hres+hbl); in show_edid_dtd()
745 int hres, vres; in show_edid() local
752 hres = (hinfo * 8) + 248; in show_edid()
755 vres = (hres * 10)/16; in show_edid()
758 vres = (hres * 3)/4; in show_edid()
[all …]
/external/lzma/CPP/7zip/Compress/
DLzma2Decoder.cpp109 HRESULT hres = S_OK; in Code() local
116 hres = inStream->Read(_inBuf, _inBufSize, &_inSize); in Code()
117 if (hres != S_OK) in Code()
193 if (hres != S_OK) in Code()
194 return hres; in Code()
/external/mesa3d/src/gallium/winsys/virgl/vtest/
Dvirgl_vtest_winsys.c253 struct virgl_hw_res *hres) in virgl_vtest_winsys_resource_unref() argument
256 virgl_vtest_resource_reference(vtws, &hres, NULL); in virgl_vtest_winsys_resource_unref()
/external/mesa3d/src/gallium/winsys/virgl/drm/
Dvirgl_drm_winsys.c501 struct virgl_hw_res *hres) in virgl_drm_winsys_resource_unref() argument
505 virgl_drm_resource_reference(qdws, &hres, NULL); in virgl_drm_winsys_resource_unref()
/external/syslinux/com32/lua/doc/
Dsyslinux.asc238 printf("%04x: %dx%dx%d\n", mode['mode'], mode['hres'], mode['vres'], mode['bpp'])
/external/webrtc/webrtc/modules/audio_device/win/
Daudio_device_core_win.cc43 #define EXIT_ON_ERROR(hres) do { if (FAILED(hres)) goto Exit; } while(0) argument
46 #define CONTINUE_ON_ERROR(hres) do { if (FAILED(hres)) goto Next; } while(0) argument