Home
last modified time | relevance | path

Searched refs:leadUnit (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/unicode/
Ducharstrie.h222 int32_t leadUnit=*pos++; in getValue() local
224 return leadUnit&kValueIsFinal ? in getValue()
225 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue()
382 static inline int32_t readValue(const UChar *pos, int32_t leadUnit) { in readValue() argument
384 if(leadUnit<kMinTwoUnitValueLead) { in readValue()
385 value=leadUnit; in readValue()
386 } else if(leadUnit<kThreeUnitValueLead) { in readValue()
387 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue()
393 static inline const UChar *skipValue(const UChar *pos, int32_t leadUnit) { in skipValue() argument
394 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue()
[all …]
/external/chromium_org/third_party/icu/source/common/unicode/
Ducharstrie.h222 int32_t leadUnit=*pos++; in getValue() local
224 return leadUnit&kValueIsFinal ? in getValue()
225 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue()
382 static inline int32_t readValue(const UChar *pos, int32_t leadUnit) { in readValue() argument
384 if(leadUnit<kMinTwoUnitValueLead) { in readValue()
385 value=leadUnit; in readValue()
386 } else if(leadUnit<kThreeUnitValueLead) { in readValue()
387 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue()
393 static inline const UChar *skipValue(const UChar *pos, int32_t leadUnit) { in skipValue() argument
394 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue()
[all …]