11cb0ef41Sopenharmony_ci/* Copyright 2015 Google Inc. All Rights Reserved. 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ci Distributed under MIT license. 41cb0ef41Sopenharmony_ci See file LICENSE for detail or copy at https://opensource.org/licenses/MIT 51cb0ef41Sopenharmony_ci*/ 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ci/* Hash table on the 4-byte prefixes of static dictionary words. */ 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci#ifndef BROTLI_ENC_DICTIONARY_HASH_H_ 101cb0ef41Sopenharmony_ci#define BROTLI_ENC_DICTIONARY_HASH_H_ 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_ci#include <brotli/types.h> 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ci#if defined(__cplusplus) || defined(c_plusplus) 151cb0ef41Sopenharmony_ciextern "C" { 161cb0ef41Sopenharmony_ci#endif 171cb0ef41Sopenharmony_ci 181cb0ef41Sopenharmony_ciextern const uint16_t kStaticDictionaryHashWords[32768]; 191cb0ef41Sopenharmony_ciextern const uint8_t kStaticDictionaryHashLengths[32768]; 201cb0ef41Sopenharmony_ci 211cb0ef41Sopenharmony_ci#if defined(__cplusplus) || defined(c_plusplus) 221cb0ef41Sopenharmony_ci} /* extern "C" */ 231cb0ef41Sopenharmony_ci#endif 241cb0ef41Sopenharmony_ci 251cb0ef41Sopenharmony_ci#endif /* BROTLI_ENC_DICTIONARY_HASH_H_ */ 26