Searched defs:hr (Results 1 - 5 of 5) sorted by relevance

/hardware/bsp/intel/peripheral/libupm/examples/c++/
H A Dgroveehr.cxx62 int hr = heart->heartRate(); local
66 cout << " Heart Rate: " << hr << endl;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
H A Donyx.h68 static void Scale2Ratio(int mode, int *hr, int *hs) argument
73 *hr = 1;
77 *hr = 4;
81 *hr = 3;
85 *hr = 1;
89 *hr = 1;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Dfirstpass.c3210 int hr, hs, vr, vs; local
3334 Scale2Ratio(cpi->common.horiz_scale, &hr, &hs);
3337 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_onyx_if.c96 static INLINE void Scale2Ratio(VPX_SCALING mode, int *hr, int *hs) { argument
99 *hr = 1;
103 *hr = 4;
107 *hr = 3;
111 *hr = 1;
115 *hr = 1;
3418 int hr = 0, hs = 0, vr = 0, vs = 0; local
3423 Scale2Ratio(horiz_mode, &hr, &hs);
3427 cm->width = (hs - 1 + cpi->oxcf.width * hr) / hs;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2826 long hr) { // NOLINT
2844 hr, // the error
2857 const std::string error_hex("0x" + String::FormatHexInt(hr));
2865 AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT argument
2866 if (SUCCEEDED(hr)) {
2869 return HRESULTFailureHelper(expr, "succeeds", hr);
2872 AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT argument
2873 if (FAILED(hr)) {
2876 return HRESULTFailureHelper(expr, "fails", hr);
2824 HRESULTFailureHelper(const char* expr, const char* expected, long hr) argument

Completed in 121 milliseconds