Home
last modified time | relevance | path

Searched refs:ConvertBytesToValue (Results 1 – 5 of 5) sorted by relevance

/system/extras/simpleperf/
Dutils_test.cpp67 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()
Dtracing.h40 return ConvertBytesToValue(raw_data + offset, size); in ReadFromData()
Dutils.h160 uint64_t ConvertBytesToValue(const char* bytes, uint32_t size);
Dutils.cpp387 uint64_t ConvertBytesToValue(const char* bytes, uint32_t size) { in ConvertBytesToValue() function
Dtracing.cpp75 uint64_t file_size = ConvertBytesToValue(p, file_size_bytes); in DetachFile()