Home
last modified time | relevance | path

Searched refs:trieWord (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/tools/gensprep/
Dstore.c250 uint16_t trieWord =0; in storeMappingData() local
285 trieWord = currentIndex << 2; in storeMappingData()
287 trieWord += 0x02; in storeMappingData()
289 if(trieWord > _SPREP_TYPE_THRESHOLD){ in storeMappingData()
298 trieWord += 0x01; in storeMappingData()
310 if(!utrie_set32(sprepTrie,codepoint,trieWord)){ in storeMappingData()
363 uint16_t trieWord = 0; in storeMapping() local
378 trieWord += 0x01; in storeMapping()
395 trieWord = (uint16_t)(_SPREP_MAX_INDEX_VALUE << 2); in storeMapping()
397 if(trieWord < _SPREP_TYPE_THRESHOLD){ in storeMapping()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DStringPrep.java342 private static final void getValues(char trieWord,Values values){ in getValues() argument
344 if(trieWord == 0){ in getValues()
351 }else if(trieWord >= TYPE_THRESHOLD){ in getValues()
352 values.type = (trieWord - TYPE_THRESHOLD); in getValues()
357 if((trieWord & 0x02)>0){ in getValues()
359 values.value = trieWord >> 2; //mask off the lower 2 bits and shift in getValues()
363 values.value = (trieWord<<16)>>16; in getValues()
368 if((trieWord>>2) == MAX_INDEX_VALUE){ in getValues()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DStringPrep.java355 private static final void getValues(char trieWord,Values values){ in getValues() argument
357 if(trieWord == 0){ in getValues()
364 }else if(trieWord >= TYPE_THRESHOLD){ in getValues()
365 values.type = (trieWord - TYPE_THRESHOLD); in getValues()
370 if((trieWord & 0x02)>0){ in getValues()
372 values.value = trieWord >> 2; //mask off the lower 2 bits and shift in getValues()
376 values.value = (trieWord<<16)>>16; in getValues()
381 if((trieWord>>2) == MAX_INDEX_VALUE){ in getValues()
/external/icu/icu4c/source/common/
Dusprep.cpp467 getValues(uint16_t trieWord, int16_t& value, UBool& isIndex){ in getValues() argument
470 if(trieWord == 0){ in getValues()
479 }else if(trieWord >= _SPREP_TYPE_THRESHOLD){ in getValues()
480 type = (UStringPrepType) (trieWord - _SPREP_TYPE_THRESHOLD); in getValues()
487 if(trieWord & 0x02){ in getValues()
489 value = trieWord >> 2; //mask off the lower 2 bits and shift in getValues()
492 value = (int16_t)trieWord; in getValues()
496 if((trieWord>>2) == _SPREP_MAX_INDEX_VALUE){ in getValues()
/external/cldr/tools/java/libs/
Dicu4j.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ ...