Home | History | Annotate | Download | only in gensprep

Lines Matching refs:currentIndex

155 static int16_t currentIndex = 0; /* the current index into the data trie */
269 indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION+mappingLength] = currentIndex;
274 limitIndex = currentIndex;
282 trieWord = currentIndex << 2;
316 if(currentIndex+value->length+1 > _SPREP_MAX_INDEX_VALUE){
318 currentIndex+value->length, _SPREP_MAX_INDEX_VALUE);
326 mappingData[currentIndex++] = (uint16_t) mappingLength;
329 uprv_memmove(mappingData+currentIndex, value->mapping, value->length*U_SIZEOF_UCHAR);
330 currentIndex += value->length;
331 if (currentIndex > mappingDataCapacity) {
343 indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION+mappingLength] = currentIndex+1;
578 printf("Number of code units in mappingData (currentIndex) are: %i \n", currentIndex);