OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_HASH_LEN
(Results
1 - 2
of
2
) sorted by null
/external/libxml2/
dict.c
64
#define
MAX_HASH_LEN
3
948
if ((nbi >
MAX_HASH_LEN
) &&
949
(dict->size <= ((MAX_DICT_HASH / 2) /
MAX_HASH_LEN
))) {
950
if (xmlDictGrow(dict,
MAX_HASH_LEN
* 2 * dict->size) != 0)
1163
if ((nbi >
MAX_HASH_LEN
) &&
1164
(dict->size <= ((MAX_DICT_HASH / 2) /
MAX_HASH_LEN
)))
1165
xmlDictGrow(dict,
MAX_HASH_LEN
* 2 * dict->size);
hash.c
46
#define
MAX_HASH_LEN
8
611
if (len >
MAX_HASH_LEN
)
612
xmlHashGrow(table,
MAX_HASH_LEN
* table->size);
Completed in 105 milliseconds