Home
last modified time | relevance | path

Searched refs:LINEAR_18030 (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java1081 private static int LINEAR_18030(int a, int b, int c, int d) { in LINEAR_18030() method in CharsetMBCS
1085 private static int LINEAR_18030_BASE = LINEAR_18030(0x81, 0x30, 0x81, 0x30);
1088 return LINEAR_18030(x >>> 24, (x >>> 16) & 0xff, (x >>> 8) & 0xff, x & 0xff); in LINEAR()
1892 … linear = LINEAR_18030(toUBytesArray[0], toUBytesArray[1], toUBytesArray[2], toUBytesArray[3]); in toU()
/external/icu/icu4c/source/common/
Ducnvmbcs.cpp524 #define LINEAR_18030(a, b, c, d) ((((a)*10+(b))*126L+(c))*10L+(d)) macro
526 #define LINEAR_18030_BASE LINEAR_18030(0x81, 0x30, 0x81, 0x30)
528 #define LINEAR(x) LINEAR_18030(x>>24, (x>>16)&0xff, (x>>8)&0xff, x&0xff)
1198 linear=LINEAR_18030(cnv->toUBytes[0], cnv->toUBytes[1], cnv->toUBytes[2], cnv->toUBytes[3]); in _extToU()