Home
last modified time | relevance | path

Searched refs:dictionary (Results 1 – 2 of 2) sorted by relevance

/trusted-firmware-a-latest/lib/zlib/
Dzlib.h612 const Bytef *dictionary,
656 Bytef *dictionary,
889 const Bytef *dictionary,
912 Bytef *dictionary,
Dinflate.c1278 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary, in inflateGetDictionary() argument
1287 if (state->whave && dictionary != Z_NULL) { in inflateGetDictionary()
1288 zmemcpy(dictionary, state->window + state->wnext, in inflateGetDictionary()
1290 zmemcpy(dictionary + state->whave - state->wnext, in inflateGetDictionary()
1298 int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary, in inflateSetDictionary() argument
1313 dictid = adler32(dictid, dictionary, dictLength); in inflateSetDictionary()
1320 ret = updatewindow(strm, dictionary + dictLength, dictLength); in inflateSetDictionary()