OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HALF_MASK
(Results
1 - 4
of
4
) sorted by null
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterConstants.java
161
static final int
HALF_MASK
= 0x3FF;
CharsetUTF8.java
146
charErrorBufferArray[charErrorBufferLength++] = (char) ((char32 & UConverterConstants.
HALF_MASK
) + UConverterConstants.SURROGATE_LOW_START);
150
targetArray[targetIndex++] = (char) ((char32 & UConverterConstants.
HALF_MASK
) + UConverterConstants.SURROGATE_LOW_START);
281
charErrorBufferArray[charErrorBufferLength++] = (char) ((char32 & UConverterConstants.
HALF_MASK
) + UConverterConstants.SURROGATE_LOW_START);
287
(char) ((char32 & UConverterConstants.
HALF_MASK
) + UConverterConstants.SURROGATE_LOW_START));
/external/icu/icu4c/source/common/
ucnv_u8.c
54
#define
HALF_MASK
0x3FF
192
ch = (ch &
HALF_MASK
) + SURROGATE_LOW_START;
322
ch = (ch &
HALF_MASK
) + SURROGATE_LOW_START;
[
all
...]
ucnv_u32.c
31
#define
HALF_MASK
0x3FF
[
all
...]
Completed in 853 milliseconds