OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kMinTwoByteDeltaLead
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/common/unicode/
bytestrie.h
389
if(delta>=
kMinTwoByteDeltaLead
) {
496
static const int32_t
kMinTwoByteDeltaLead
=kMaxOneByteDelta+1; // 0xc0
501
static const int32_t kMaxTwoByteDelta=((kMinThreeByteDeltaLead-
kMinTwoByteDeltaLead
)<<8)-1; // 0x2fff
/external/icu4c/common/
bytestrie.cpp
49
if(delta<
kMinTwoByteDeltaLead
) {
52
delta=((delta-
kMinTwoByteDeltaLead
)<<8)|*pos++;
bytestriebuilder.cpp
476
intBytes[0]=(char)(BytesTrie::
kMinTwoByteDeltaLead
+(i>>8));
Completed in 901 milliseconds