Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Dutils_test.cpp26 TEST(utils, ConvertBytesToValue) { in TEST() argument
31 ASSERT_EQ(0x1ULL, ConvertBytesToValue(buf + 1, 1)); in TEST()
32 ASSERT_EQ(0x201ULL, ConvertBytesToValue(buf + 1, 2)); in TEST()
33 ASSERT_EQ(0x05040302ULL, ConvertBytesToValue(buf + 2, 4)); in TEST()
34 ASSERT_EQ(0x0706050403020100ULL, ConvertBytesToValue(buf, 8)); in TEST()
Dtracing.h51 return ConvertBytesToValue(raw_data + offset, size); in ReadFromData()
Dutils.h172 uint64_t ConvertBytesToValue(const char* bytes, uint32_t size);
Dutils.cpp350 uint64_t ConvertBytesToValue(const char* bytes, uint32_t size) { in ConvertBytesToValue() function
Dtracing.cpp82 uint64_t file_size = ConvertBytesToValue(p, file_size_bytes); in DetachFile()