OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMinThreeByteDeltaLead
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/common/unicode/
bytestrie.h
390
if(delta<
kMinThreeByteDeltaLead
) {
497
static const int32_t
kMinThreeByteDeltaLead
=0xf0;
501
static const int32_t kMaxTwoByteDelta=((
kMinThreeByteDeltaLead
-kMinTwoByteDeltaLead)<<8)-1; // 0x2fff
502
static const int32_t kMaxThreeByteDelta=((kFourByteDeltaLead-
kMinThreeByteDeltaLead
)<<16)-1; // 0xdffff
/external/icu4c/common/
bytestrie.cpp
51
} else if(delta<
kMinThreeByteDeltaLead
) {
54
delta=((delta-
kMinThreeByteDeltaLead
)<<16)|(pos[0]<<8)|pos[1];
bytestriebuilder.cpp
480
intBytes[0]=(char)(BytesTrie::
kMinThreeByteDeltaLead
+(i>>16));
Completed in 37 milliseconds