Searched refs:fNodesCapacity (Results 1 – 2 of 2) sorted by relevance
175 : fIgnoreCase(ignoreCase), fNodes(NULL), fNodesCapacity(0), fNodesCount(0), in TextTrieMap()248 fNodesCapacity = 512; in putImpl()249 fNodes = (CharacterNode *)uprv_malloc(fNodesCapacity * sizeof(CharacterNode)); in putImpl()281 if (fNodesCapacity == 0xffff) { in growNodes()284 int32_t newCapacity = fNodesCapacity + 1000; in growNodes()295 fNodesCapacity = newCapacity; in growNodes()320 if (fNodesCount == fNodesCapacity) { in addChildNode()
147 int32_t fNodesCapacity; variable