Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 11 of 11) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dmd5_helper.h44 static const char hex[16] = { in Get() local
53 res_[i * 2 + 0] = hex[tmp[i] >> 4]; in Get()
54 res_[i * 2 + 1] = hex[tmp[i] & 0xf]; in Get()
/hardware/invensense/65xx/libsensors_iio/
DMPLSupport.h28 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement);
DMPLSupport.cpp176 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement) in convert_long_to_hex_char() argument
181hex[bytePosition] = (int) ((quat[index] >> (4-1-i) * 8) & 0xFF); in convert_long_to_hex_char()
/hardware/invensense/6515/libsensors_iio/
DMPLSupport.h36 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement);
DMPLSupport.cpp176 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement) in convert_long_to_hex_char() argument
181 hex[bytePosition] = (int) ((quat[index] >> (4-1-i) * 8) & 0xFF); in convert_long_to_hex_char()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dmcomp.c864 MV hex[6] = { { -1, -2}, {1, -2}, {2, 0}, {1, 2}, { -1, 2}, { -2, 0} } ; in vp8_hex_search() local
924 this_mv.as_mv.row = br + hex[i].row; in vp8_hex_search()
925 this_mv.as_mv.col = bc + hex[i].col; in vp8_hex_search()
934 this_mv.as_mv.row = br + hex[i].row; in vp8_hex_search()
935 this_mv.as_mv.col = bc + hex[i].col; in vp8_hex_search()
947 br += hex[best_site].row; in vp8_hex_search()
948 bc += hex[best_site].col; in vp8_hex_search()
/hardware/libhardware/tests/camera2/
DCameraStreamFixture.h64 *os << "Format: 0x" << std::hex << p.mFormat << ", "; in PrintTo()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
Dgen_msvs_proj.sh58 local hex="0123456789ABCDEF"
Dgen_msvs_vcxproj.sh59 local hex="0123456789ABCDEF"
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c1058 static const char hex[] = in bcm_ether_ntoa() local
1068 *p++ = hex[(*octet >> 4) & 0xf]; in bcm_ether_ntoa()
1069 *p++ = hex[*octet & 0xf]; in bcm_ether_ntoa()
/hardware/libhardware/tests/keymaster/
Dkeymaster_test.cpp85 stream << std::hex << std::setw(2) << std::setfill('0') in operator <<()