Home
last modified time | relevance | path

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

/packages/modules/Connectivity/netbpfload/
Dloader.cpp311 vector<char> theBytes; in readSectionUint() local
312 int ret = readSectionByName(name, elfFile, theBytes); in readSectionUint()
316 } else if (theBytes.size() < sizeof(unsigned int)) { in readSectionUint()
321 unsigned int value = static_cast<unsigned char>(theBytes[3]); in readSectionUint()
323 value += static_cast<unsigned char>(theBytes[2]); in readSectionUint()
325 value += static_cast<unsigned char>(theBytes[1]); in readSectionUint()
327 value += static_cast<unsigned char>(theBytes[0]); in readSectionUint()