Searched refs:bmpBlockBits (Results 1 - 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DBMPSet.java48 * t1=c{11..6} test bits (lead+16) and lead in bmpBlockBits[t1]. If the upper bit is 0, then the lower bit
55 private int[] bmpBlockBits; field in class:BMPSet
76 bmpBlockBits = new int[64];
99 bmpBlockBits = otherBMPSet.bmpBlockBits.clone();
110 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
162 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
201 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
258 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
298 int twoBits = (bmpBlockBits[(
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DBMPSet.java46 * t1=c{11..6} test bits (lead+16) and lead in bmpBlockBits[t1]. If the upper bit is 0, then the lower bit
53 private int[] bmpBlockBits; field in class:BMPSet
74 bmpBlockBits = new int[64];
97 bmpBlockBits = otherBMPSet.bmpBlockBits.clone();
108 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
160 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
199 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
256 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001;
296 int twoBits = (bmpBlockBits[(
[all...]
/external/icu/icu4c/source/common/
H A Dbmpset.cpp33 uprv_memset(bmpBlockBits, 0, sizeof(bmpBlockBits));
57 uprv_memcpy(bmpBlockBits, otherBMPSet.bmpBlockBits, sizeof(bmpBlockBits));
155 // Set bmpBlockBits[].
169 bmpBlockBits[start&0x3f]|=0x10001<<(start>>6);
176 set32x64Bits(bmpBlockBits, start>>6, limit>>6);
182 bmpBlockBits[limit&0x3f]|=0x10001<<(limit>>6);
207 * (asciiBytes[] trail bytes, table7FF[] 0..7F, bmpBlockBits[]
[all...]
H A Dbmpset.h127 * test bits (lead+16) and lead in bmpBlockBits[t1].
136 uint32_t bmpBlockBits[64]; member in class:BMPSet

Completed in 183 milliseconds