Searched refs:ConvertBytesToValue (Results 1 – 5 of 5) sorted by relevance
/system/extras/simpleperf/ |
D | utils_test.cpp | 67 TEST(utils, ConvertBytesToValue) { in TEST() argument 72 ASSERT_EQ(0x1ULL, ConvertBytesToValue(buf + 1, 1)); in TEST() 73 ASSERT_EQ(0x201ULL, ConvertBytesToValue(buf + 1, 2)); in TEST() 74 ASSERT_EQ(0x05040302ULL, ConvertBytesToValue(buf + 2, 4)); in TEST() 75 ASSERT_EQ(0x0706050403020100ULL, ConvertBytesToValue(buf, 8)); in TEST()
|
D | tracing.h | 40 return ConvertBytesToValue(raw_data + offset, size); in ReadFromData()
|
D | utils.h | 160 uint64_t ConvertBytesToValue(const char* bytes, uint32_t size);
|
D | utils.cpp | 387 uint64_t ConvertBytesToValue(const char* bytes, uint32_t size) { in ConvertBytesToValue() function
|
D | tracing.cpp | 75 uint64_t file_size = ConvertBytesToValue(p, file_size_bytes); in DetachFile()
|