Searched defs:dict (Results 1 - 25 of 28) sorted by relevance

12

/vbox/src/VBox/RDP/client-1.8.3/
H A Dmppc.c76 uint8 *dict = g_mppc_dict.hist; local
92 memset(dict, 0, RDP_MPPC_DICT_SIZE);
132 dict[next_offset++] = (((uint32) walker) >> ((uint32) 24));
158 dict[next_offset++] = (uint8) (walker >> 24 | 0x80);
375 dict[next_offset++] = dict[k++];
/vbox/src/VBox/Additions/x11/VBoxClient/
H A Dhostversion.cpp77 DBusMessageIter dict; local
/vbox/src/libs/libxml2-2.6.31/
H A Dentities.c23 #include <libxml/dict.h>
96 xmlDictPtr dict = NULL; local
102 dict = entity->doc->dict;
108 if (dict != NULL) {
109 if ((entity->name != NULL) && (!xmlDictOwns(dict, entity->name)))
112 (!xmlDictOwns(dict, entity->ExternalID)))
115 (!xmlDictOwns(dict, entity->SystemID)))
117 if ((entity->URI != NULL) && (!xmlDictOwns(dict, entity->URI)))
120 && (!xmlDictOwns(dict, entit
148 xmlDictPtr dict = NULL; local
[all...]
H A Ddict.c2 * dict.c: dictionary of reusable strings, just used to avoid allocation
24 #include <libxml/dict.h>
65 struct _xmlDictEntry *dict; member in struct:_xmlDict
119 * @dict: the dictionnary
128 xmlDictAddString(xmlDictPtr dict, const xmlChar *name, int namelen) { argument
133 pool = dict->strings;
155 pool->next = dict->strings;
156 dict->strings = pool;
168 * @dict: the dictionnary
178 xmlDictAddQString(xmlDictPtr dict, cons argument
324 xmlDictPtr dict; local
364 xmlDictPtr dict = xmlDictCreate(); local
382 xmlDictReference(xmlDictPtr dict) argument
404 xmlDictGrow(xmlDictPtr dict, int size) argument
496 xmlDictFree(xmlDictPtr dict) argument
563 xmlDictLookup(xmlDictPtr dict, const xmlChar *name, int len) argument
682 xmlDictExists(xmlDictPtr dict, const xmlChar *name, int len) argument
774 xmlDictQLookup(xmlDictPtr dict, const xmlChar *prefix, const xmlChar *name) argument
865 xmlDictOwns(xmlDictPtr dict, const xmlChar *str) argument
891 xmlDictSize(xmlDictPtr dict) argument
[all...]
H A Dhash.c55 xmlDictPtr dict; member in struct:_xmlHashTable
153 table->dict = NULL;
169 * @dict: a dictionary to use for the hash
171 * Create a new xmlHashTablePtr which will use @dict as the internal dictionary
176 xmlHashCreateDict(int size, xmlDictPtr dict) { argument
181 table->dict = dict;
182 xmlDictReference(dict);
308 if (table->dict == NULL) {
327 if (table->dict)
[all...]
H A DdebugXML.c47 xmlDictPtr dict; /* the doc dictionnary */ member in struct:_xmlDebugCtxt
67 ctxt->dict = NULL;
261 if ((ctxt->dict != NULL) &&
262 (!xmlDictOwns(ctxt->dict, name))) {
273 xmlDictPtr dict; local
283 dict = NULL;
285 dict = doc->dict;
286 if ((dict == NULL) && (ctxt->nodict == 0)) {
298 if (ctxt->dict
[all...]
H A Dschematron.c136 xmlDictPtr dict; /* the dictionnary used internally */ member in struct:_xmlSchematron
159 xmlDictPtr dict; member in struct:_xmlSchematronValidCtxt
181 xmlDictPtr dict; /* dictionnary for interned string names */ member in struct:_xmlSchematronParserCtxt
398 pattern = xmlPatterncompile(context, ctxt->dict, XML_PATTERN_XPATH,
543 ret->dict = ctxt->dict;
544 xmlDictReference(ret->dict);
569 xmlDictFree(schema->dict);
600 ret->dict = xmlDictCreate();
601 ret->URL = xmlDictLookup(ret->dict, (cons
[all...]
H A Dpattern.c33 #include <libxml/dict.h>
80 if ((c)->comp->dict) \
81 r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \
84 #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
98 xmlDict *dict; /* the dictionary if any */ member in struct:_xmlStreamComp
163 xmlDictPtr dict; /* the optional dictionary */ member in struct:_xmlPattern
179 xmlDictPtr dict; /* the dictionary if any */ member in struct:_xmlPatParserContext
241 if (comp->dict == NULL) {
252 if (comp->dict != NULL)
253 xmlDictFree(comp->dict);
289 xmlNewPatParserContext(const xmlChar *pattern, xmlDictPtr dict, const xmlChar **namespaces) argument
2350 xmlPatterncompile(const xmlChar *pattern, xmlDict *dict, int flags, const xmlChar **namespaces) argument
[all...]
H A Dvalid.c921 xmlDictPtr dict = NULL; local
924 dict = doc->dict;
963 if (dict == NULL)
966 ret->name = xmlDictLookup(dict, name, -1);
968 if (dict == NULL) {
972 ret->prefix = xmlDictLookup(dict, name, l);
973 ret->name = xmlDictLookup(dict, tmp, -1);
1007 xmlDictPtr dict = NULL; local
1012 dict
1100 xmlDictPtr dict = NULL; local
1446 xmlDictPtr dict = NULL; local
1917 xmlDictPtr dict; local
1977 xmlDictPtr dict = NULL; local
2407 xmlDictPtr dict = NULL; local
2590 xmlDictPtr dict = NULL; local
3222 xmlDictPtr dict = NULL; local
[all...]
H A Dxmlreader.c118 xmlDictPtr dict; /* the context dictionnary */ member in struct:_xmlTextReader
146 const xmlChar * xinclude_name; /* the xinclude name from dict */
170 #define CONSTSTR(str) xmlDictLookup(reader->dict, (str), -1)
171 #define CONSTQSTR(p, str) xmlDictQLookup(reader->dict, (p), (str))
185 * Free a string if it is not owned by the "dict" dictionnary in the
189 if ((str) && ((!dict) || \
190 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
204 xmlDictPtr dict = NULL; local
209 dict = id->doc->dict;
261 xmlDictPtr dict; local
319 xmlDictPtr dict; local
396 xmlDictPtr dict; local
[all...]
H A DHTMLparser.c2215 return(xmlDictLookup(ctxt->dict, loc, i));
2246 return(xmlDictLookup(ctxt->dict, loc, i));
2283 ret = xmlDictLookup(ctxt->dict, ctxt->input->cur, count);
2324 return(xmlDictLookup(ctxt->dict, ctxt->input->cur - len, len));
4222 ctxt->dict = xmlDictCreate();
4223 if (ctxt->dict == NULL) {
5786 * Free a string if it is not owned by the "dict" dictionnary in the
5790 if ((str) && ((!dict) || \
5791 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
5804 xmlDictPtr dict; local
[all...]
H A Dparser.c951 ctxt->str_xml = xmlDictLookup(ctxt->dict, BAD_CAST "xml", 3);
952 ctxt->str_xmlns = xmlDictLookup(ctxt->dict, BAD_CAST "xmlns", 5);
953 ctxt->str_xml_ns = xmlDictLookup(ctxt->dict, XML_XML_NAMESPACE, 36);
988 ctxt->attsDefault = xmlHashCreateDict(10, ctxt->dict);
999 name = xmlDictLookup(ctxt->dict, fullname, -1);
1002 name = xmlDictLookup(ctxt->dict, name, -1);
1003 prefix = xmlDictLookup(ctxt->dict, fullname, len);
1036 name = xmlDictLookup(ctxt->dict, fullattr, -1);
1039 name = xmlDictLookup(ctxt->dict, name, -1);
1040 prefix = xmlDictLookup(ctxt->dict, fullatt
13272 xmlDictPtr dict; local
[all...]
H A Dtree.c1018 * Free a string if it is not owned by the "dict" dictionnary in the
1022 if ((str) && ((!dict) || \
1023 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
1031 * Copy a string using a "dict" dictionnary in the current scope,
1036 if (dict) { \
1037 if (xmlDictOwns(dict, (const xmlChar *)(str))) \
1040 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1048 * Copy a string using a "dict" dictionnary in the current scope,
1053 if (dict) { \
1054 if (xmlDictOwns(dict, (cons
1070 xmlDictPtr dict = NULL; local
1174 xmlDictPtr dict = NULL; local
2015 xmlDictPtr dict = NULL; local
3361 xmlDictPtr dict = NULL; local
3430 xmlDictPtr dict = NULL; local
4745 xmlDictPtr dict; local
8827 xmlDictPtr dict; /* The destination dict */ local
[all...]
H A Dxmlregexp.c6294 xmlDictPtr dict; member in struct:_xmlExpCtxt
6308 * @dict: optional dictionnary to use internally
6315 xmlExpNewCtxt(int maxNodes, xmlDictPtr dict) { argument
6334 if (dict == NULL) {
6335 ret->dict = xmlDictCreate();
6336 if (ret->dict == NULL) {
6342 ret->dict = dict;
6343 xmlDictReference(ret->dict);
6358 xmlDictFree(ctxt->dict);
[all...]
/vbox/src/libs/zlib-1.2.6/test/
H A Dinfcover.c392 unsigned char dict[257]; local
425 memset(dict, 0, 257);
426 ret = inflateSetDictionary(&strm, dict, 257);
/vbox/src/libs/xpcom18a4/python/src/module/
H A D_xpcom.cpp709 PyDict_SetItemString(dict, "IID_"#t, iid_ob); \
715 PyDict_SetItemString(dict, #val, ob); \
738 PyObject *dict = PyModule_GetDict(oModule); local
740 if (pycom_Error == NULL || PyDict_SetItemString(dict, "error", pycom_Error) != 0)
745 PyDict_SetItemString(dict, "IIDType", (PyObject *)&Py_nsIID::type);
784 PyDict_SetItemString(dict, "NS_DEBUG", ob);
/vbox/src/libs/zlib-1.2.6/contrib/blast/
H A Dblast.c279 int dict; /* log2(dictionary size) - 6 */ local
320 dict = bits(s, 8);
321 if (dict < 4 || dict > 6) return -2;
332 symbol = len == 2 ? 2 : dict;
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgzlog.c33 foo.dict -- dictionary of the last 32K of data for next compression
191 - Compress the data with the dictionary in foo.dict, and write to the
193 compressed block. If there is no foo.dict, proceed anyway with the
194 compression at slightly reduced efficiency. (For the foo.dict file to be
207 - Replace foo.dict with foo.temp.
564 /* Replace the foo.dict file with the foo.temp file. Also delete the foo.add
581 /* rename foo.name to foo.dict, replacing foo.dict if it exists */
582 strcpy(log->end, ".dict");
612 ssize_t dict; local
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dxpath.h345 xmlDictPtr dict; /* dictionary if any */ member in struct:_xmlXPathContext
H A Dtree.h62 * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
522 struct _xmlDict *dict; /* dict used to allocate names or NULL */ member in struct:_xmlDoc
H A Dparser.h17 #include <libxml/dict.h>
260 xmlDictPtr dict; /* dictionnary for the parser */ member in struct:_xmlParserCtxt
263 int docdict; /* use strings from dict to build tree */
H A DschemasInternals.h23 #include <libxml/dict.h>
942 xmlDictPtr dict; member in struct:_xmlSchema
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dnrv2b.c252 const uint8_t *dict; member in struct:ucl_swd
294 assert(swd->dict != NULL);
325 void swd_initdict(struct ucl_swd *s, const uint8_t *dict, unsigned int dict_len) argument
328 s->dict = s->dict_end = NULL;
331 if (!dict || dict_len <= 0)
335 dict += dict_len - s->n;
339 s->dict = dict;
341 s->dict_end = dict + dict_len;
342 memcpy(s->b,dict,dict_le
377 swd_init(struct ucl_swd *s, const uint8_t *dict, unsigned int dict_len) argument
715 init_match( struct ucl_compress *c, struct ucl_swd *s, const uint8_t *dict, unsigned int dict_len, uint32_t flags ) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/linking/
H A Dprlink.c730 static void* TV2FP(CFMutableDictionaryRef dict, const char* name, void *tvp) argument
738 CFMutableDataRef glueData = (CFMutableDataRef) CFDictionaryGetValue(dict, nameRef);
747 CFDictionaryAddValue(dict, nameRef, glueData);
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml.c740 PyObject *dict; local
761 dict = Py_None;
763 dict = PyDict_New();
765 dict = PyDict_New();
775 PyDict_SetItem(dict, attrname, attrvalue);
783 (char *) "sO", name, dict);
786 (char *) "sO", name, dict);
789 Py_XDECREF(dict);

Completed in 223 milliseconds

12