Lines Matching refs:cur
35 int cur = *(ptr++); in DecodeUnsignedLeb128() local
36 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeUnsignedLeb128()
37 if (cur > 0x7f) { in DecodeUnsignedLeb128()
38 cur = *(ptr++); in DecodeUnsignedLeb128()
39 result |= (cur & 0x7f) << 14; in DecodeUnsignedLeb128()
40 if (cur > 0x7f) { in DecodeUnsignedLeb128()
41 cur = *(ptr++); in DecodeUnsignedLeb128()
42 result |= (cur & 0x7f) << 21; in DecodeUnsignedLeb128()
43 if (cur > 0x7f) { in DecodeUnsignedLeb128()
46 cur = *(ptr++); in DecodeUnsignedLeb128()
47 result |= cur << 28; in DecodeUnsignedLeb128()
73 int cur = *(ptr++); in DecodeSignedLeb128() local
74 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeSignedLeb128()
75 if (cur <= 0x7f) { in DecodeSignedLeb128()
78 cur = *(ptr++); in DecodeSignedLeb128()
79 result |= (cur & 0x7f) << 14; in DecodeSignedLeb128()
80 if (cur <= 0x7f) { in DecodeSignedLeb128()
83 cur = *(ptr++); in DecodeSignedLeb128()
84 result |= (cur & 0x7f) << 21; in DecodeSignedLeb128()
85 if (cur <= 0x7f) { in DecodeSignedLeb128()
90 cur = *(ptr++); in DecodeSignedLeb128()
91 result |= cur << 28; in DecodeSignedLeb128()
197 void InsertBackUnsigned(It cur, It end) { in InsertBackUnsigned() argument
198 for (; cur != end; ++cur) { in InsertBackUnsigned()
199 PushBackUnsigned(*cur); in InsertBackUnsigned()
208 void InsertBackSigned(It cur, It end) { in InsertBackSigned() argument
209 for (; cur != end; ++cur) { in InsertBackSigned()
210 PushBackSigned(*cur); in InsertBackSigned()