Searched refs:copy_code (Results 1 – 3 of 3) sorted by relevance
113 int copy_code = (kCopyRangeLut[code >> 6] << 3) + (code & 7); in CopyLengthExtraBits() local114 return kCopyLengthPrefixCode[copy_code].nbits; in CopyLengthExtraBits()118 int copy_code = (kCopyRangeLut[code >> 6] << 3) + (code & 7); in CopyLengthOffset() local119 return kCopyLengthPrefixCode[copy_code].offset; in CopyLengthOffset()
83 std::ostringstream copy_code; in Copy() local84 copy_code << offset << "," << size << ","; in Copy()85 output_.append(copy_code.str()); in Copy()
856 int copy_code; in BrotliDecompress() local888 copy_code = kCopyRangeLut[range_idx] + (cmd_code & 7); in BrotliDecompress()891 copy_length = kCopyLengthPrefixCode[copy_code].offset + in BrotliDecompress()892 (int)BrotliReadBits(&br, kCopyLengthPrefixCode[copy_code].nbits); in BrotliDecompress()