Home
last modified time | relevance | path

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

1234

/OK3568_Linux_fs/external/mpp/utils/
H A Diniparser.h65 int iniparser_getnsec(const dictionary * d);
83 const char * iniparser_getsecname(const dictionary * d, int n);
98 void iniparser_dump_ini(const dictionary * d, FILE * f);
113 void iniparser_dumpsection_ini(const dictionary * d, const char * s, FILE * f);
128 void iniparser_dump(const dictionary * d, FILE * f);
138 int iniparser_getsecnkeys(const dictionary * d, const char * s);
156 const char ** iniparser_getseckeys(const dictionary * d, const char * s, const char ** keys);
174 const char * iniparser_getstring(const dictionary * d, const char * key, const char * def);
203 int iniparser_getint(const dictionary * d, const char * key, int notfound);
230 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound);
[all …]
H A Ddictionary.h51 } dictionary ; typedef
83 dictionary * dictionary_new(size_t size);
94 void dictionary_del(dictionary * vd);
110 const char * dictionary_get(const dictionary * d, const char * key, const char * def);
139 int dictionary_set(dictionary * vd, const char * key, const char * val);
152 void dictionary_unset(dictionary * d, const char * key);
167 void dictionary_dump(const dictionary * d, FILE * out);
H A Diniparser.c164 int iniparser_getnsec(const dictionary * d) in iniparser_getnsec()
195 const char * iniparser_getsecname(const dictionary * d, int n) in iniparser_getsecname()
230 void iniparser_dump(const dictionary * d, FILE * f) in iniparser_dump()
258 void iniparser_dump_ini(const dictionary * d, FILE * f) in iniparser_dump_ini()
296 void iniparser_dumpsection_ini(const dictionary * d, const char * s, FILE * f) in iniparser_dumpsection_ini()
330 int iniparser_getsecnkeys(const dictionary * d, const char * s) in iniparser_getsecnkeys()
372 const char ** iniparser_getseckeys(const dictionary * d, const char * s, const char ** keys) in iniparser_getseckeys()
413 const char * iniparser_getstring(const dictionary * d, const char * key, const char * def) in iniparser_getstring()
454 long int iniparser_getlongint(const dictionary * d, const char * key, long int notfound) in iniparser_getlongint()
491 int iniparser_getint(const dictionary * d, const char * key, int notfound) in iniparser_getint()
[all …]
H A Ddictionary.c68 static int dictionary_grow(dictionary * d) in dictionary_grow()
150 dictionary * dictionary_new(size_t size) in dictionary_new()
152 dictionary * d ; in dictionary_new()
157 d = (dictionary*) calloc(1, sizeof * d) ; in dictionary_new()
177 void dictionary_del(dictionary * d) in dictionary_del()
209 const char * dictionary_get(const dictionary * d, const char * key, const char * def) in dictionary_get()
255 int dictionary_set(dictionary * d, const char * key, const char * val) in dictionary_set()
314 void dictionary_unset(dictionary * d, const char * key) in dictionary_unset()
363 void dictionary_dump(const dictionary * d, FILE * out) in dictionary_dump()
H A DCMakeLists.txt14 dictionary.c
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/radiusclient-ng/radiusclient-ng/
H A DModify-configure.in-and-etc-Makefile.am.patch51 - dictionary dictionary.ascend dictionary.compat dictionary.merit \
52 - dictionary.sip
56 +pkgdata_DATA = dictionary dictionary.ascend dictionary.compat \
57 + dictionary.merit dictionary.sip
59 EXTRA_DIST = issue port-id-map dictionary dictionary.ascend \
60 dictionary.compat dictionary.merit servers radiusclient.conf.in \
61 @@ -25,6 +27,7 @@ EXTRA_DIST = issue port-id-map dictionary dictionary.ascend \
75 # dictionary of allowed attributes and values
77 -dictionary @pkgsysconfdir@/dictionary
78 +dictionary @pkgdatadir@/dictionary
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dhcom.c54 dictent *dictionary; member
153 p->dictionary = lsx_malloc(511 * sizeof(dictent)); in startread()
157 lsx_readsw(ft, &(p->dictionary[i].dict_leftson)); in startread()
158 lsx_readsw(ft, &(p->dictionary[i].dict_rightson)); in startread()
160 p->dictionary[i].dict_leftson, in startread()
161 p->dictionary[i].dict_rightson); in startread()
162 if (!dictvalid(i, dictsize, p->dictionary[i].dict_leftson, in startread()
163 p->dictionary[i].dict_rightson)) { in startread()
222 p->dictionary[p->dictentry].dict_rightson; in read_samples()
225 p->dictionary[p->dictentry].dict_leftson; in read_samples()
[all …]
/OK3568_Linux_fs/kernel/lib/lz4/
H A Dlz4_compress.c192 const BYTE * const dictionary = dictPtr->dictionary; in LZ4_compress_generic() local
193 const BYTE * const dictEnd = dictionary + dictPtr->dictSize; in LZ4_compress_generic()
272 lowLimit = dictionary; in LZ4_compress_generic()
339 && (lowLimit == dictionary)) { in LZ4_compress_generic()
407 lowLimit = dictionary; in LZ4_compress_generic()
776 const char *dictionary, int dictSize) in LZ4_loadDict() argument
779 const BYTE *p = (const BYTE *)dictionary; in LZ4_loadDict()
790 dict->dictionary = NULL; in LZ4_loadDict()
799 dict->dictionary = p; in LZ4_loadDict()
820 const BYTE *dictEnd = LZ4_dict->dictionary + LZ4_dict->dictSize; in LZ4_renormDictT()
[all …]
H A Dlz4hc_compress.c626 const char *dictionary, in LZ4_loadDictHC() argument
632 dictionary += dictSize - 64 * KB; in LZ4_loadDictHC()
635 LZ4HC_init(ctxPtr, (const BYTE *)dictionary); in LZ4_loadDictHC()
637 LZ4HC_Insert(ctxPtr, (const BYTE *)dictionary + (dictSize - 3)); in LZ4_loadDictHC()
638 ctxPtr->end = (const BYTE *)dictionary + dictSize; in LZ4_loadDictHC()
/OK3568_Linux_fs/kernel/include/linux/
H A Dlz4.h102 const uint8_t *dictionary; member
376 int LZ4_loadDictHC(LZ4_streamHC_t *streamHCPtr, const char *dictionary,
465 int LZ4_loadDict(LZ4_stream_t *streamPtr, const char *dictionary,
522 const char *dictionary, int dictSize);
/OK3568_Linux_fs/kernel/Documentation/staging/
H A Dxz.rst51 dictionary. It will also append a four-byte trailer containing the
54 which will use no BCJ filter and 1 MiB LZMA2 dictionary.
73 In userspace, LZMA2 is typically used with dictionary sizes of several
74 megabytes. The decoder needs to have the dictionary in RAM, thus big
76 by the kernel. 1 MiB is probably the maximum reasonable dictionary
83 An exception to above dictionary size limitation is when the decoder
86 doesn't depend on the dictionary size, and it is perfectly fine to
87 use a big dictionary: for maximum compression, the dictionary should
H A Dlzo.rst26 - a distance when copying data from the dictionary (past output buffer)
27 - a length (number of bytes to copy from dictionary)
36 seems to be optimized for literal use only, since there is no dictionary yet
53 For references to the dictionary, distances are relative to the output
102 dictionary which is empty, and that it will always be
134 2-byte block from the dictionary within a 1kB distance. It is worth
147 dictionary from a 2..3kB distance, and must be interpreted like this :
/OK3568_Linux_fs/buildroot/package/pppd/
H A Dpppd.mk30 dictionary dictionary.ascend dictionary.compat \
31 dictionary.merit dictionary.microsoft \
/OK3568_Linux_fs/kernel/lib/xz/
H A Dxz_dec_lzma2.c44 struct dictionary { struct
264 struct dictionary dict;
286 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset()
300 static void dict_limit(struct dictionary *dict, size_t out_max) in dict_limit()
309 static inline bool dict_has_space(const struct dictionary *dict) in dict_has_space()
320 static inline uint32_t dict_get(const struct dictionary *dict, uint32_t dist) in dict_get()
333 static inline void dict_put(struct dictionary *dict, uint8_t byte) in dict_put()
346 static bool dict_repeat(struct dictionary *dict, uint32_t *len, uint32_t dist) in dict_repeat()
374 static void dict_uncompressed(struct dictionary *dict, struct xz_buf *b, in dict_uncompressed()
427 static uint32_t dict_flush(struct dictionary *dict, struct xz_buf *b) in dict_flush()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/iniparser/iniparser/
H A DAdd-CMake-support.patch21 +set(INIPARSER_SRCS src/dictionary.c src/iniparser.c)
22 +set(INIPARSER_HDRS src/dictionary.h src/iniparser.h)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/anthy/anthy/
H A Dnative-helpers.patch26 # Generate the dictionary
39 # Generate the dictionary
/OK3568_Linux_fs/yocto/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0/
H A D0003-tests-use-a-dictionaries-for-environment.patch7 use a dictionary as this is simplest solution to install the environment.
34 + # use a dictionary as this is the simplest solution
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dmetadata.py108 def dict_to_XML(tag, dictionary, **kwargs): argument
112 for key, val in dictionary.items():
/OK3568_Linux_fs/u-boot/lib/lzma/
H A Dlzma.txt140 - Variable dictionary size (up to 1 GB)
191 The maximum value for dictionary size is 1 GB = 2^30 bytes.
193 For decompressing file compressed by LZMA method with dictionary
218 Memory requirements depend from dictionary size
240 compresses file.bin to file.lzma with 64 KB dictionary (2^16=64K)
328 LZMA Decoder uses dictionary buffer and internal state structure.
413 - LZMA dictionary (dictionary size is encoded in LZMA properties header)
419 2) Allocate CLzmaDec structures (state + dictionary) using LZMA properties
/OK3568_Linux_fs/buildroot/package/python-bunch/
H A DConfig.in4 A dot-accessible dictionary (a la JavaScript objects).
/OK3568_Linux_fs/buildroot/package/python-nested-dict/
H A DConfig.in4 Python dictionary with automatic and arbitrary levels of
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-pydicti_1.1.6.bb1 SUMMARY = "Case insensitive derivable dictionary"
H A Dpython3-nocasedict_1.0.3.bb1 SUMMARY = "A case-insensitive ordered dictionary for Python"
/OK3568_Linux_fs/buildroot/package/python-dicttoxml/
H A DConfig.in6 Converts a Python dictionary or other native data type into
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/templatetags/
H A Dprojecttags.py252 def get_dict_value(dictionary, key): argument
256 return dictionary[key]

1234