Searched refs:dictionary (Results 26 - 33 of 33) sorted by relevance

12

/freebsd-12-stable/contrib/file/tests/
H A DMakefile.in340 zstd-dictionary-0.result \
341 zstd-dictionary-1.result \
342 zstd-dictionary-2.result \
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c23 * dictionary are very simple and thus fast, and deletions are avoided
179 * Insert string str in the dictionary and set match_head to the previous head
321 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
323 const Bytef *dictionary;
331 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
338 strm->adler = adler32(strm->adler, dictionary, dictLength);
343 dictionary += dictLength - length; /* use the tail of the dictionary */
345 (void) zmemcpy(s->window, dictionary, length);
649 /* Save the adler32 of the preset dictionary
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1159 const StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary(); local
1160 if (!dictionary) {
1161 SetErrorWithJSON(error, "Structured data should have been a dictionary "
1169 if (!dictionary->GetValueForKeyAsString("type", type_name)) {
1186 if (!dictionary->GetValueForKeyAsArray("events", events) || !events) {
1204 SetErrorWithJSON(error, "Log event is not a dictionary", *object_sp);
/freebsd-12-stable/contrib/gdb/gdb/
H A Dcp-support.c30 #include "dictionary.h"
594 const struct dictionary *dict;
/freebsd-12-stable/gnu/usr.bin/gdb/libgdb/
H A DMakefile23 dbxread.c dcache.c demangle.c dictionary.c disasm.c doublest.c \
/freebsd-12-stable/sys/libkern/
H A Dzlib.c136 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
372 * and move to the first half later to keep a dictionary of at least wSize
567 * dictionary are very simple and thus fast, and deletions are avoided
712 * Insert string str in the dictionary and set match_head to the previous head
833 int deflateSetDictionary (strm, dictionary, dictLength)
835 const Bytef *dictionary;
843 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
849 strm->adler = adler32(strm->adler, dictionary, dictLength);
855 dictionary += dictLength - length; /* use the tail of the dictionary */
[all...]
/freebsd-12-stable/sys/contrib/zstd/programs/
H A DMakefile12 # zstd-small : minimal zstd without dictionary builder and benchmark
222 @$(RM) core *.o tmp* result* *.gcda dictionary *.zst \
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp5933 // The contract is this must be a dictionary, so we can look up the routing
5934 // key via the top-level 'type' string value within the dictionary.
5935 StructuredData::Dictionary *dictionary = object_sp->GetAsDictionary();
5936 if (!dictionary)
5941 if (!dictionary->GetValueForKeyAsString("type", type_name))

Completed in 215 milliseconds

12