Lines Matching refs:result
33 int result = *(ptr++); in readUnsignedLeb128() local
35 if (result > 0x7f) { in readUnsignedLeb128()
37 result = (result & 0x7f) | ((cur & 0x7f) << 7); in readUnsignedLeb128()
40 result |= (cur & 0x7f) << 14; in readUnsignedLeb128()
43 result |= (cur & 0x7f) << 21; in readUnsignedLeb128()
51 result |= cur << 28; in readUnsignedLeb128()
58 return result; in readUnsignedLeb128()
68 int result = *(ptr++); in readSignedLeb128() local
70 if (result <= 0x7f) { in readSignedLeb128()
71 result = (result << 25) >> 25; in readSignedLeb128()
74 result = (result & 0x7f) | ((cur & 0x7f) << 7); in readSignedLeb128()
76 result = (result << 18) >> 18; in readSignedLeb128()
79 result |= (cur & 0x7f) << 14; in readSignedLeb128()
81 result = (result << 11) >> 11; in readSignedLeb128()
84 result |= (cur & 0x7f) << 21; in readSignedLeb128()
86 result = (result << 4) >> 4; in readSignedLeb128()
94 result |= cur << 28; in readSignedLeb128()
101 return result; in readSignedLeb128()