Searched refs:leadUnit (Results 1 – 6 of 6) sorted by relevance
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | ucharstrie.h | 224 int32_t leadUnit=*pos++; in getValue() local 226 return leadUnit&kValueIsFinal ? in getValue() 227 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue() 384 static inline int32_t readValue(const char16_t *pos, int32_t leadUnit) { in readValue() argument 386 if(leadUnit<kMinTwoUnitValueLead) { in readValue() 387 value=leadUnit; in readValue() 388 } else if(leadUnit<kThreeUnitValueLead) { in readValue() 389 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue() 395 static inline const char16_t *skipValue(const char16_t *pos, int32_t leadUnit) { in skipValue() argument 396 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue() [all …]
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | ucharstrie.h | 260 int32_t leadUnit=*pos++; in getValue() local 262 return leadUnit&kValueIsFinal ? in getValue() 263 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue() 420 static inline int32_t readValue(const char16_t *pos, int32_t leadUnit) { in readValue() argument 422 if(leadUnit<kMinTwoUnitValueLead) { in readValue() 423 value=leadUnit; in readValue() 424 } else if(leadUnit<kThreeUnitValueLead) { in readValue() 425 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue() 431 static inline const char16_t *skipValue(const char16_t *pos, int32_t leadUnit) { in skipValue() argument 432 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue() [all …]
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | ucharstrie.h | 260 int32_t leadUnit=*pos++; in getValue() local 262 return leadUnit&kValueIsFinal ? in getValue() 263 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue() 420 static inline int32_t readValue(const char16_t *pos, int32_t leadUnit) { in readValue() argument 422 if(leadUnit<kMinTwoUnitValueLead) { in readValue() 423 value=leadUnit; in readValue() 424 } else if(leadUnit<kThreeUnitValueLead) { in readValue() 425 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue() 431 static inline const char16_t *skipValue(const char16_t *pos, int32_t leadUnit) { in skipValue() argument 432 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue() [all …]
|
/third_party/icu/icu4c/source/common/unicode/ |
D | ucharstrie.h | 260 int32_t leadUnit=*pos++; in getValue() local 262 return leadUnit&kValueIsFinal ? in getValue() 263 readValue(pos, leadUnit&0x7fff) : readNodeValue(pos, leadUnit); in getValue() 420 static inline int32_t readValue(const char16_t *pos, int32_t leadUnit) { in readValue() argument 422 if(leadUnit<kMinTwoUnitValueLead) { in readValue() 423 value=leadUnit; in readValue() 424 } else if(leadUnit<kThreeUnitValueLead) { in readValue() 425 value=((leadUnit-kMinTwoUnitValueLead)<<16)|*pos; in readValue() 431 static inline const char16_t *skipValue(const char16_t *pos, int32_t leadUnit) { in skipValue() argument 432 if(leadUnit>=kMinTwoUnitValueLead) { in skipValue() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | CharsTrie.java | 352 int leadUnit=chars_.charAt(pos++); in getValue() local 353 assert(leadUnit>=kMinValueLead); in getValue() 354 return (leadUnit&kValueIsFinal)!=0 ? in getValue() 355 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit); in getValue() 675 private static int readValue(CharSequence chars, int pos, int leadUnit) { in readValue() argument 677 if(leadUnit<kMinTwoUnitValueLead) { in readValue() 678 value=leadUnit; in readValue() 679 } else if(leadUnit<kThreeUnitValueLead) { in readValue() 680 value=((leadUnit-kMinTwoUnitValueLead)<<16)|chars.charAt(pos); in readValue() 686 private static int skipValue(int pos, int leadUnit) { in skipValue() argument [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | CharsTrie.java | 368 int leadUnit=chars_.charAt(pos++); in getValue() local 369 assert(leadUnit>=kMinValueLead); in getValue() 370 return (leadUnit&kValueIsFinal)!=0 ? in getValue() 371 readValue(chars_, pos, leadUnit&0x7fff) : readNodeValue(chars_, pos, leadUnit); in getValue() 702 private static int readValue(CharSequence chars, int pos, int leadUnit) { in readValue() argument 704 if(leadUnit<kMinTwoUnitValueLead) { in readValue() 705 value=leadUnit; in readValue() 706 } else if(leadUnit<kThreeUnitValueLead) { in readValue() 707 value=((leadUnit-kMinTwoUnitValueLead)<<16)|chars.charAt(pos); in readValue() 713 private static int skipValue(int pos, int leadUnit) { in skipValue() argument [all …]
|