Searched defs:hex (Results 1 - 5 of 5) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
H A D | md5_helper.h | 44 static const char hex[16] = { local 53 res_[i * 2 + 0] = hex[tmp[i] >> 4]; 54 res_[i * 2 + 1] = hex[tmp[i] & 0xf];
|
/hardware/invensense/6515/libsensors_iio/ |
H A D | MPLSupport.cpp | 176 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement) argument 181 hex[bytePosition] = (int) ((quat[index] >> (4-1-i) * 8) & 0xFF); 182 //LOGI("e%d quat[%d]: %x", index, bytePosition, hex[bytePosition]);
|
/hardware/invensense/65xx/libsensors_iio/ |
H A D | MPLSupport.cpp | 176 void convert_long_to_hex_char(long* quat, unsigned char* hex, int numElement) argument 181 hex[bytePosition] = (int) ((quat[index] >> (4-1-i) * 8) & 0xFF); 182 //LOGI("e%d quat[%d]: %x", index, bytePosition, hex[bytePosition]);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
H A D | mcomp.c | 864 MV hex[6] = { { -1, -2}, {1, -2}, {2, 0}, {1, 2}, { -1, 2}, { -2, 0} } ; local 917 /* hex search */ 924 this_mv.as_mv.row = br + hex[i].row; 925 this_mv.as_mv.col = bc + hex[i].col; 934 this_mv.as_mv.row = br + hex[i].row; 935 this_mv.as_mv.col = bc + hex[i].col; 947 br += hex[best_site].row; 948 bc += hex[best_site].col;
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
H A D | bcmutils.c | 1058 static const char hex[] = local 1068 *p++ = hex[(*octet >> 4) & 0xf]; 1069 *p++ = hex[*octet & 0xf]; 1103 /* pretty hex print a pkt buffer chain */ 1718 /* print bytes formatted as hex to a string. return the resulting string length */ 1734 /* pretty hex print a contiguous buffer */
|
Completed in 119 milliseconds