Searched refs:leadUnit (Results 1 – 2 of 2) sorted by relevance
222 int32_t leadUnit=*pos++; in getValue() local224 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() argument384 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() argument394 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue()[all …]