Lines Matching full:normtrie
100 *normTrie,
173 normTrie = (UNewTrie *)uprv_malloc(sizeof(UNewTrie));
174 uprv_memset(normTrie, 0, sizeof(UNewTrie));
183 if(NULL==utrie_open(normTrie, NULL, 30000, 0, 0, FALSE)) {
229 i=utrie_get32(normTrie, (UChar32)code, NULL);
235 if(!utrie_set32(normTrie, (UChar32)code, (uint32_t)(p-norms))) {
248 i=utrie_get32(normTrie, (UChar32)code, NULL);
278 i=utrie_get32(normTrie, code, &isInBlockZero);
943 if(!utrie_setRange32(normTrie, 0xac00, 0xd7a4, (uint32_t)(norm-norms), TRUE)) {
1760 if( NULL==utrie_clone(norm32Trie, normTrie, NULL, 0) ||
1761 NULL==utrie_clone(fcdTrie, normTrie, NULL, 0) ||
1762 NULL==utrie_clone(auxTrie, normTrie, NULL, 0)
1797 /* normTrie: 32-bit trie result may contain a special extraData index with the folding offset */
2063 "static const UTrie2 normTrie={\n",
2159 utrie_close(normTrie);
2166 uprv_free(normTrie);