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

/art/runtime/
H A Ddex_file.cc1067 // Read a signed integer. "zwidth" is the zero-based byte count.
1068 static int32_t ReadSignedInt(const byte* ptr, int zwidth) { argument
1070 for (int i = zwidth; i >= 0; --i) {
1073 val >>= (3 - zwidth) * 8;
1077 // Read an unsigned integer. "zwidth" is the zero-based byte count,
1079 static uint32_t ReadUnsignedInt(const byte* ptr, int zwidth, bool fill_on_right) { argument
1082 for (int i = zwidth; i >= 0; --i) {
1085 val >>= (3 - zwidth) * 8;
1087 for (int i = zwidth; i >= 0; --i) {
1094 // Read a signed long. "zwidth" i
1095 ReadSignedLong(const byte* ptr, int zwidth) argument
1106 ReadUnsignedLong(const byte* ptr, int zwidth, bool fill_on_right) argument
[all...]

Completed in 334 milliseconds