Home | History | Annotate | Download | only in common

Lines Matching refs:highValue

899 findHighStart(UNewTrie2 *trie, uint32_t highValue) {
913 if(highValue==initialValue) {
928 /* the index-2 block is the same as the previous one, and filled with highValue */
935 if(highValue!=initialValue) {
944 /* the block is the same as the previous one, and filled with highValue */
951 if(highValue!=initialValue) {
958 if(value!=highValue) {
1177 uint32_t highValue;
1182 highValue=utrie2_get32(trie, 0x10ffff);
1183 highStart=findHighStart(newTrie, highValue);
1186 highValue=trie->errorValue;
1191 * Otherwise utrie2_get32(trie, highStart) would try to read the highValue.
1196 printf("UTrie2: highStart U+%04lx highValue 0x%lx initialValue 0x%lx\n",
1197 (long)highStart, (long)highValue, (long)trie->initialValue);
1220 * Store the highValue in the data array and round up the dataLength.
1224 newTrie->data[newTrie->dataLength++]=highValue;