Searched defs:zwidth (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Ddex_file.cc1233 // Read a signed integer. "zwidth" is the zero-based byte count.
1234 int32_t DexFile::ReadSignedInt(const uint8_t* ptr, int zwidth) { argument
1236 for (int i = zwidth; i >= 0; --i) {
1239 val >>= (3 - zwidth) * 8;
1243 // Read an unsigned integer. "zwidth" is the zero-based byte count,
1245 uint32_t DexFile::ReadUnsignedInt(const uint8_t* ptr, int zwidth, bool fill_on_right) { argument
1247 for (int i = zwidth; i >= 0; --i) {
1251 val >>= (3 - zwidth) * 8;
1256 // Read a signed long. "zwidth" is the zero-based byte count.
1257 int64_t DexFile::ReadSignedLong(const uint8_t* ptr, int zwidth) { argument
1268 ReadUnsignedLong(const uint8_t* ptr, int zwidth, bool fill_on_right) argument
[all...]

Completed in 35 milliseconds