Home
last modified time | relevance | path

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

/system/bpf/libbpf_android/
DLoader.cpp214 vector<char> theBytes; in readSectionUint() local
215 int ret = readSectionByName(name, elfFile, theBytes); in readSectionUint()
219 } else if (theBytes.size() < sizeof(unsigned int)) { in readSectionUint()
224 unsigned int value = static_cast<unsigned char>(theBytes[3]); in readSectionUint()
226 value += static_cast<unsigned char>(theBytes[2]); in readSectionUint()
228 value += static_cast<unsigned char>(theBytes[1]); in readSectionUint()
230 value += static_cast<unsigned char>(theBytes[0]); in readSectionUint()