Lines Matching refs:pos1
4555 long long pos1 = start; in ParseContentEncodingEntry() local
4559 while (pos1 < stop) { in ParseContentEncodingEntry()
4561 const long long id = ReadUInt(pReader, pos1, len); in ParseContentEncodingEntry()
4563 assert((pos1 + len) <= stop); in ParseContentEncodingEntry()
4565 pos1 += len; //consume id in ParseContentEncodingEntry()
4567 const long long size = ReadUInt(pReader, pos1, len); in ParseContentEncodingEntry()
4569 assert((pos1 + len) <= stop); in ParseContentEncodingEntry()
4571 pos1 += len; //consume length of size in ParseContentEncodingEntry()
4580 pos1 += size; //consume payload in ParseContentEncodingEntry()
4581 assert(pos1 <= stop); in ParseContentEncodingEntry()
5049 long long pos1 = start; in ParseContentEncodingsEntry() local
5052 while (pos1 < stop) { in ParseContentEncodingsEntry()
5054 const long long id = ReadUInt(pReader, pos1, len); in ParseContentEncodingsEntry()
5056 assert((pos1 + len) <= stop); in ParseContentEncodingsEntry()
5058 pos1 += len; //consume id in ParseContentEncodingsEntry()
5060 const long long size = ReadUInt(pReader, pos1, len); in ParseContentEncodingsEntry()
5062 assert((pos1 + len) <= stop); in ParseContentEncodingsEntry()
5064 pos1 += len; //consume length of size in ParseContentEncodingsEntry()
5070 pos1 += size; //consume payload in ParseContentEncodingsEntry()
5071 assert(pos1 <= stop); in ParseContentEncodingsEntry()