Lines Matching refs:start
112 * is compared with start indexes of sequence length start to figure out the length according to
269 /* store the start of indexes */
470 storeRange(uint32_t start, uint32_t end, UStringPrepType type, UErrorCode* status){
479 if(start == end){
480 uint32_t savedTrieWord = utrie_get32(sprepTrie, start, NULL);
499 if(!utrie_set32(sprepTrie,start,trieWord)){
511 fprintf(stderr,"Value for codepoint \\U%08X already set!.\n", (int)start);
516 if(!utrie_set32(sprepTrie,start,trieWord)){
517 fprintf(stderr,"Could not set the value for code point \\U%08X.\n", (int)start);
521 if(!utrie_setRange32(sprepTrie, start, end+1, trieWord, false)){
531 getFoldedValue(UNewTrie *trie, UChar32 start, int32_t offset) {
536 limit=start+0x400;
537 while(start<limit) {
538 value=utrie_get32(trie, start, &inBlockZero);
540 start+=UTRIE_DATA_BLOCK_LENGTH;
544 ++start;