Home
last modified time | relevance | path

Searched refs:rm0 (Results 1 - 8 of 8) sorted by relevance

/third_party/icu/icu4c/source/tools/gennorm2/
H A Dextradata.cpp56 UChar rm0=rm.charAt(0); in writeMapping() local
60 rm0>Normalizer2Impl::MAPPING_LENGTH_MASK in writeMapping()
63 // rawMapping=rm0+mapping.substring(2) -> store only rm0 in writeMapping()
67 // In this case, we store only that first unit, rm0. in writeMapping()
69 dataString.append(rm0); in writeMapping()
/third_party/skia/third_party/externals/icu/source/tools/gennorm2/
H A Dextradata.cpp56 UChar rm0=rm.charAt(0); in writeMapping() local
60 rm0>Normalizer2Impl::MAPPING_LENGTH_MASK in writeMapping()
63 // rawMapping=rm0+mapping.substring(2) -> store only rm0 in writeMapping()
67 // In this case, we store only that first unit, rm0. in writeMapping()
69 dataString.append(rm0); in writeMapping()
/third_party/cups-filters/cupsfilters/
H A Drgb.c176 int r, ri, rm0, rm1, rs, in cupsRGBDoRGB() local
262 rm0 = rgbptr->cube_mult[r]; in cupsRGBDoRGB()
263 rm1 = 256 - rm0; in cupsRGBDoRGB()
282 tempr = tempg * rm0; in cupsRGBDoRGB()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNormalizer2Impl.java846 char rm0=extraData.charAt(rawMapping); in getRawDecomposition()
847 if(rm0<=MAPPING_LENGTH_MASK) { in getRawDecomposition()
848 return extraData.substring(rawMapping-rm0, rawMapping); in getRawDecomposition()
850 // Copy the normal mapping and replace its first two code units with rm0. in getRawDecomposition()
851 StringBuilder buffer=new StringBuilder(mLength-1).append(rm0); in getRawDecomposition()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DNormalizer2Impl.java855 char rm0=extraData.charAt(rawMapping); in getRawDecomposition()
856 if(rm0<=MAPPING_LENGTH_MASK) { in getRawDecomposition()
857 return extraData.substring(rawMapping-rm0, rawMapping); in getRawDecomposition()
859 // Copy the normal mapping and replace its first two code units with rm0. in getRawDecomposition()
860 StringBuilder buffer=new StringBuilder(mLength-1).append(rm0); in getRawDecomposition()
/third_party/icu/icu4c/source/common/
H A Dnormalizer2impl.cpp977 // so that a raw mapping fits that consists of one unit ("rm0")
1005 uint16_t rm0=*rawMapping;
1006 if(rm0<=MAPPING_LENGTH_MASK) {
1007 length=rm0;
1008 return (const UChar *)rawMapping-rm0;
1010 // Copy the normal mapping and replace its first two code units with rm0.
1011 buffer[0]=(UChar)rm0;
/third_party/node/deps/icu-small/source/common/
H A Dnormalizer2impl.cpp977 // so that a raw mapping fits that consists of one unit ("rm0")
1005 uint16_t rm0=*rawMapping;
1006 if(rm0<=MAPPING_LENGTH_MASK) {
1007 length=rm0;
1008 return (const char16_t *)rawMapping-rm0;
1010 // Copy the normal mapping and replace its first two code units with rm0.
1011 buffer[0]=(char16_t)rm0;
/third_party/skia/third_party/externals/icu/source/common/
H A Dnormalizer2impl.cpp977 // so that a raw mapping fits that consists of one unit ("rm0")
1005 uint16_t rm0=*rawMapping;
1006 if(rm0<=MAPPING_LENGTH_MASK) {
1007 length=rm0;
1008 return (const UChar *)rawMapping-rm0;
1010 // Copy the normal mapping and replace its first two code units with rm0.
1011 buffer[0]=(UChar)rm0;

Completed in 17 milliseconds