Lines Matching refs:cur
31 int cur = *(ptr++); in DecodeUnsignedLeb128() local
32 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeUnsignedLeb128()
33 if (cur > 0x7f) { in DecodeUnsignedLeb128()
34 cur = *(ptr++); in DecodeUnsignedLeb128()
35 result |= (cur & 0x7f) << 14; in DecodeUnsignedLeb128()
36 if (cur > 0x7f) { in DecodeUnsignedLeb128()
37 cur = *(ptr++); in DecodeUnsignedLeb128()
38 result |= (cur & 0x7f) << 21; in DecodeUnsignedLeb128()
39 if (cur > 0x7f) { in DecodeUnsignedLeb128()
42 cur = *(ptr++); in DecodeUnsignedLeb128()
43 result |= cur << 28; in DecodeUnsignedLeb128()
69 int cur = *(ptr++); in DecodeSignedLeb128() local
70 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeSignedLeb128()
71 if (cur <= 0x7f) { in DecodeSignedLeb128()
74 cur = *(ptr++); in DecodeSignedLeb128()
75 result |= (cur & 0x7f) << 14; in DecodeSignedLeb128()
76 if (cur <= 0x7f) { in DecodeSignedLeb128()
79 cur = *(ptr++); in DecodeSignedLeb128()
80 result |= (cur & 0x7f) << 21; in DecodeSignedLeb128()
81 if (cur <= 0x7f) { in DecodeSignedLeb128()
86 cur = *(ptr++); in DecodeSignedLeb128()
87 result |= cur << 28; in DecodeSignedLeb128()