Home
last modified time | relevance | path

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

/external/libxml2/
Ddict.c65 #define MAX_HASH_LEN 3 macro
984 if ((nbi > MAX_HASH_LEN) && in xmlDictLookup()
985 (dict->size <= ((MAX_DICT_HASH / 2) / MAX_HASH_LEN))) { in xmlDictLookup()
986 if (xmlDictGrow(dict, MAX_HASH_LEN * 2 * dict->size) != 0) in xmlDictLookup()
1199 if ((nbi > MAX_HASH_LEN) && in xmlDictQLookup()
1200 (dict->size <= ((MAX_DICT_HASH / 2) / MAX_HASH_LEN))) in xmlDictQLookup()
1201 xmlDictGrow(dict, MAX_HASH_LEN * 2 * dict->size); in xmlDictQLookup()
Dhash.c47 #define MAX_HASH_LEN 8 macro
630 if (len > MAX_HASH_LEN) in xmlHashAddEntry3()
631 xmlHashGrow(table, MAX_HASH_LEN * table->size); in xmlHashAddEntry3()