Lines Matching refs:cur
32 int cur = *(ptr++); in DecodeUnsignedLeb128() local
33 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeUnsignedLeb128()
34 if (cur > 0x7f) { in DecodeUnsignedLeb128()
35 cur = *(ptr++); in DecodeUnsignedLeb128()
36 result |= (cur & 0x7f) << 14; in DecodeUnsignedLeb128()
37 if (cur > 0x7f) { in DecodeUnsignedLeb128()
38 cur = *(ptr++); in DecodeUnsignedLeb128()
39 result |= (cur & 0x7f) << 21; in DecodeUnsignedLeb128()
40 if (cur > 0x7f) { in DecodeUnsignedLeb128()
43 cur = *(ptr++); in DecodeUnsignedLeb128()
44 result |= cur << 28; in DecodeUnsignedLeb128()
70 int cur = *(ptr++); in DecodeSignedLeb128() local
71 result = (result & 0x7f) | ((cur & 0x7f) << 7); in DecodeSignedLeb128()
72 if (cur <= 0x7f) { in DecodeSignedLeb128()
75 cur = *(ptr++); in DecodeSignedLeb128()
76 result |= (cur & 0x7f) << 14; in DecodeSignedLeb128()
77 if (cur <= 0x7f) { in DecodeSignedLeb128()
80 cur = *(ptr++); in DecodeSignedLeb128()
81 result |= (cur & 0x7f) << 21; in DecodeSignedLeb128()
82 if (cur <= 0x7f) { in DecodeSignedLeb128()
87 cur = *(ptr++); in DecodeSignedLeb128()
88 result |= cur << 28; in DecodeSignedLeb128()
162 void InsertBackUnsigned(It cur, It end) { in InsertBackUnsigned() argument
163 for (; cur != end; ++cur) { in InsertBackUnsigned()
164 PushBackUnsigned(*cur); in InsertBackUnsigned()
181 void InsertBackSigned(It cur, It end) { in InsertBackSigned() argument
182 for (; cur != end; ++cur) { in InsertBackSigned()
183 PushBackSigned(*cur); in InsertBackSigned()