Searched refs:fNodesCapacity (Results 1 – 2 of 2) sorted by relevance
173 : fIgnoreCase(ignoreCase), fNodes(NULL), fNodesCapacity(0), fNodesCount(0), in TextTrieMap()246 fNodesCapacity = 512; in putImpl()247 fNodes = (CharacterNode *)uprv_malloc(fNodesCapacity * sizeof(CharacterNode)); in putImpl()279 if (fNodesCapacity == 0xffff) { in growNodes()282 int32_t newCapacity = fNodesCapacity + 1000; in growNodes()293 fNodesCapacity = newCapacity; in growNodes()318 if (fNodesCount == fNodesCapacity) { in addChildNode()
144 int32_t fNodesCapacity; variable