Lines Matching refs:data
7 /* A (forgetful) hash table to the data seen by the compressor, to
8 help create backward references to previous data. */
69 static BROTLI_INLINE uint32_t Hash14(const uint8_t* data) {
70 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32;
138 const uint8_t* data, size_t max_length, size_t max_backward,
150 FindMatchLengthWithLimit(data, &dictionary->words->data[offset], len);
177 HasherCommon* common, const uint8_t* data, size_t max_length,
185 key = Hash14(data) << 1;
191 dictionary->hash_table_words[key], data,
421 BrotliEncoderParams* params, const uint8_t* data, size_t position,
451 one_shot, input_size, data); \
466 MemoryManager* m, Hasher* hasher, const uint8_t* data, size_t mask,
469 HasherSetup(m, hasher, params, data, position, input_size, is_last);
476 input_size, position, data, mask); \