/third_party/node/deps/icu-small/source/i18n/ |
D | collation.cpp | 115 Collation::getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE) { in getThreeBytePrimaryForOffsetData() argument 116 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00 in getThreeBytePrimaryForOffsetData() 117 …int32_t lower32 = (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible) in getThreeBytePrimaryForOffsetData()
|
D | collationdata.h | 112 int64_t dataCE = ces[Collation::indexFromCE32(ce32)]; in getCEFromOffsetCE32() local 113 return Collation::makeCE(Collation::getThreeBytePrimaryForOffsetData(c, dataCE)); in getCEFromOffsetCE32()
|
D | collationdatabuilder.cpp | 384 int64_t dataCE = ((int64_t)primary << 32) | (start << 8) | step; in maybeSetPrimaryRange() local 385 if(isCompressiblePrimary(primary)) { dataCE |= 0x80; } in maybeSetPrimaryRange() 386 int32_t index = addCE(dataCE, errorCode); in maybeSetPrimaryRange() 425 int64_t dataCE = fromBase ? base->ces[i] : ce64s.elementAti(i); in getCE32FromOffsetCE32() local 426 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE); in getCE32FromOffsetCE32()
|
D | collation.h | 485 static uint32_t getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE);
|
D | collationsets.cpp | 157 int64_t dataCE = baseData->ces[Collation::indexFromCE32(baseCE32)]; in compare() local 158 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE); in compare()
|
/third_party/icu/icu4c/source/i18n/ |
D | collation.cpp | 115 Collation::getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE) { in getThreeBytePrimaryForOffsetData() argument 116 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00 in getThreeBytePrimaryForOffsetData() 117 …int32_t lower32 = (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible) in getThreeBytePrimaryForOffsetData()
|
D | collationdata.h | 112 int64_t dataCE = ces[Collation::indexFromCE32(ce32)]; in getCEFromOffsetCE32() local 113 return Collation::makeCE(Collation::getThreeBytePrimaryForOffsetData(c, dataCE)); in getCEFromOffsetCE32()
|
D | collationdatabuilder.cpp | 384 int64_t dataCE = ((int64_t)primary << 32) | (start << 8) | step; in maybeSetPrimaryRange() local 385 if(isCompressiblePrimary(primary)) { dataCE |= 0x80; } in maybeSetPrimaryRange() 386 int32_t index = addCE(dataCE, errorCode); in maybeSetPrimaryRange() 425 int64_t dataCE = fromBase ? base->ces[i] : ce64s.elementAti(i); in getCE32FromOffsetCE32() local 426 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE); in getCE32FromOffsetCE32()
|
D | collation.h | 485 static uint32_t getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE);
|
D | collationsets.cpp | 157 int64_t dataCE = baseData->ces[Collation::indexFromCE32(baseCE32)]; in compare() local 158 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE); in compare()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | collation.cpp | 124 Collation::getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE) { in getThreeBytePrimaryForOffsetData() argument 125 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00 in getThreeBytePrimaryForOffsetData() 126 …int32_t lower32 = (int32_t)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible) in getThreeBytePrimaryForOffsetData()
|
D | collationdata.h | 116 int64_t dataCE = ces[Collation::indexFromCE32(ce32)]; in getCEFromOffsetCE32() local 117 return Collation::makeCE(Collation::getThreeBytePrimaryForOffsetData(c, dataCE)); in getCEFromOffsetCE32()
|
D | collationdatabuilder.cpp | 364 int64_t dataCE = ((int64_t)primary << 32) | (start << 8) | step; in maybeSetPrimaryRange() local 365 if(isCompressiblePrimary(primary)) { dataCE |= 0x80; } in maybeSetPrimaryRange() 366 int32_t index = addCE(dataCE, errorCode); in maybeSetPrimaryRange() 405 int64_t dataCE = fromBase ? base->ces[i] : ce64s.elementAti(i); in getCE32FromOffsetCE32() local 406 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE); in getCE32FromOffsetCE32()
|
D | collation.h | 482 static uint32_t getThreeBytePrimaryForOffsetData(UChar32 c, int64_t dataCE);
|
D | collationsets.cpp | 157 int64_t dataCE = baseData->ces[Collation::indexFromCE32(baseCE32)]; in compare() local 158 uint32_t p = Collation::getThreeBytePrimaryForOffsetData(c, dataCE); in compare()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
D | Collation.java | 564 static long getThreeBytePrimaryForOffsetData(int c, long dataCE) { 565 long p = dataCE >>> 32; // three-byte primary pppppp00 566 int lower32 = (int)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible)
|
D | CollationData.java | 112 long dataCE = ces[Collation.indexFromCE32(ce32)]; in getCEFromOffsetCE32() local 113 return Collation.makeCE(Collation.getThreeBytePrimaryForOffsetData(c, dataCE)); in getCEFromOffsetCE32()
|
D | TailoredSet.java | 174 long dataCE = baseData.ces[Collation.indexFromCE32(baseCE32)]; in compare() local 175 long p = Collation.getThreeBytePrimaryForOffsetData(c, dataCE); in compare()
|
D | CollationDataBuilder.java | 400 long dataCE = fromBase ? base.ces[i] : ce64s.elementAti(i); in getCE32FromOffsetCE32() local 401 long p = Collation.getThreeBytePrimaryForOffsetData(c, dataCE); in getCE32FromOffsetCE32()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | Collation.java | 562 static long getThreeBytePrimaryForOffsetData(int c, long dataCE) { 563 long p = dataCE >>> 32; // three-byte primary pppppp00 564 int lower32 = (int)dataCE; // base code point b & step s: bbbbbbss (bit 7: isCompressible)
|
D | CollationData.java | 110 long dataCE = ces[Collation.indexFromCE32(ce32)]; in getCEFromOffsetCE32() local 111 return Collation.makeCE(Collation.getThreeBytePrimaryForOffsetData(c, dataCE)); in getCEFromOffsetCE32()
|
D | TailoredSet.java | 172 long dataCE = baseData.ces[Collation.indexFromCE32(baseCE32)]; in compare() local 173 long p = Collation.getThreeBytePrimaryForOffsetData(c, dataCE); in compare()
|
D | CollationDataBuilder.java | 411 long dataCE = fromBase ? base.ces[i] : ce64s.elementAti(i); in getCE32FromOffsetCE32() local 412 long p = Collation.getThreeBytePrimaryForOffsetData(c, dataCE); in getCE32FromOffsetCE32()
|