Searched refs:leadUnit (Results 1 – 1 of 1) sorted by relevance
234 int32_t leadUnit=*pos++; in getValue() local236 return leadUnit&kValueIsFinal ? in getValue()237 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue()394 static inline int32_t readValue(const UChar *pos, int32_t leadUnit) { in readValue() argument396 if(leadUnit<kMinTwoUnitValueLead) { in readValue()397 value=leadUnit; in readValue()398 } else if(leadUnit<kThreeUnitValueLead) { in readValue()399 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue()405 static inline const UChar *skipValue(const UChar *pos, int32_t leadUnit) { in skipValue() argument406 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue()[all …]