Home
last modified time | relevance | path

Searched refs:smallFCD (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/tools/gennorm2/
Dn2builder.cpp182 memset(smallFCD, 0, sizeof(smallFCD)); in Normalizer2DataBuilder()
706 smallFCD[lead>>8]|=(uint8_t)1<<((lead>>5)&7); in writeMapping()
848 smallFCD[lead>>8]|=(uint8_t)1<<((lead>>5)&7); in writeExtraData()
1167 offset+=sizeof(smallFCD); in processData()
1176 printf("size of small-FCD data: %5ld bytes\n", (long)sizeof(smallFCD)); in processData()
1213 udata_writeBlock(pData, smallFCD, sizeof(smallFCD)); in writeBinaryFile()
1277 smallFCD, 8, sizeof(smallFCD), in writeCSourceFile()
Dn2builder.h118 uint8_t smallFCD[0x100]; variable
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DNormalizer2Impl.java474 smallFCD=new byte[0x100]; in load()
475 bytes.get(smallFCD); in load()
483 bits=smallFCD[c>>8]; // one byte per 0x100 code points in load()
724 byte bits=smallFCD[lead>>8]; in singleLeadMightHaveNonZeroFCD16()
2213 private byte[] smallFCD; // [0x100] one bit per 32 BMP code points, set if any FCD!=0
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DNormalizer2Impl.java470 smallFCD=new byte[0x100]; in load()
471 bytes.get(smallFCD); in load()
479 bits=smallFCD[c>>8]; // one byte per 0x100 code points in load()
720 byte bits=smallFCD[lead>>8]; in singleLeadMightHaveNonZeroFCD16()
2209 private byte[] smallFCD; // [0x100] one bit per 32 BMP code points, set if any FCD!=0
/external/icu/icu4c/source/common/
Dnormalizer2impl.h336 uint8_t bits=smallFCD[lead>>8]; in singleLeadMightHaveNonZeroFCD16()
602 const uint8_t *smallFCD; // [0x100] one bit per 32 BMP code points, set if any FCD!=0 variable
Dnormalizer2impl.cpp278 smallFCD=inSmallFCD; in init()
285 bits=smallFCD[c>>8]; // one byte per 0x100 code points in init()