|
ReactOS 0.4.16-dev-2132-g3885311
|
#include <libxml/dict.h>

Go to the source code of this file.
Classes | |
| struct | xmlHashedString |
Macros | |
| #define | HASH_ROL(x, n) ((x) << (n) | ((x) & 0xFFFFFFFF) >> (32 - (n))) |
| #define | HASH_ROR(x, n) (((x) & 0xFFFFFFFF) >> (n) | (x) << (32 - (n))) |
| #define | HASH_INIT(h1, h2, seed) |
| #define | HASH_UPDATE(h1, h2, ch) |
| #define | HASH_FINISH(h1, h2) |
| #define HASH_FINISH | ( | h1, | |
| h2 | |||
| ) |
| #define HASH_INIT | ( | h1, | |
| h2, | |||
| seed | |||
| ) |
| XML_HIDDEN void xmlCleanupDictInternal | ( | void | ) |
xmlCleanupDictInternal:
Free the dictionary mutex.
Definition at line 121 of file dict.c.
Referenced by xmlCleanupParser().
| XML_HIDDEN void xmlCleanupRandom | ( | void | ) |
| XML_HIDDEN unsigned xmlDictCombineHash | ( | unsigned | v1, |
| unsigned | v2 | ||
| ) |
Definition at line 521 of file dict.c.
Referenced by xmlParseStartTag2().
Definition at line 512 of file dict.c.
Referenced by xmlParserNsLookupSax(), and xmlParserNsUpdateSax().
| XML_HIDDEN xmlHashedString xmlDictLookupHashed | ( | xmlDictPtr | dict, |
| const xmlChar * | name, | ||
| int | len | ||
| ) |
Definition at line 845 of file dict.c.
Referenced by xmlAddDefAttrs(), xmlParseInNodeContext(), xmlParseNCName(), xmlParseNCNameComplex(), xmlParseQNameHashed(), and xmlParseStartTag2().
| XML_HIDDEN void xmlInitDictInternal | ( | void | ) |
xmlInitDictInternal:
Initialize mutex.
Definition at line 99 of file dict.c.
Referenced by xmlInitParser().
| XML_HIDDEN void xmlInitRandom | ( | void | ) |
Definition at line 918 of file dict.c.
Referenced by xmlInitParser(), and xmlInitRandom().
| XML_HIDDEN unsigned xmlRandom | ( | void | ) |
Definition at line 951 of file dict.c.
Referenced by xmlDictCreate(), and xmlHashCreate().