Searched refs:bmpBlockBits (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/common/ |
D | bmpset.cpp | 33 uprv_memset(bmpBlockBits, 0, sizeof(bmpBlockBits)); in BMPSet() 59 uprv_memcpy(bmpBlockBits, otherBMPSet.bmpBlockBits, sizeof(bmpBlockBits)); in BMPSet() 188 bmpBlockBits[start&0x3f]|=0x10001<<(start>>6); in initBits() 195 set32x64Bits(bmpBlockBits, start>>6, limit>>6); in initBits() 201 bmpBlockBits[limit&0x3f]|=0x10001<<(limit>>6); in initBits() 241 bmpBlockBits[i]|=bits; in overrideIllegal() 247 bmpBlockBits[i]=(bmpBlockBits[i]&mask)|bits; in overrideIllegal() 252 bmpBlockBits[i]&=mask; in overrideIllegal() 299 uint32_t twoBits=(bmpBlockBits[(c>>6)&0x3f]>>lead)&0x10001; in contains() 340 uint32_t twoBits=(bmpBlockBits[(c>>6)&0x3f]>>lead)&0x10001; in span() [all …]
|
D | bmpset.h | 137 uint32_t bmpBlockBits[64]; variable
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | BMPSet.java | 54 private int[] bmpBlockBits; field in BMPSet 75 bmpBlockBits = new int[64]; in BMPSet() 98 bmpBlockBits = otherBMPSet.bmpBlockBits.clone(); in BMPSet() 109 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in contains() 161 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 200 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 257 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 297 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 429 bmpBlockBits[start & 0x3f] |= 0x10001 << (start >> 6); in initBits() 436 set32x64Bits(bmpBlockBits, start >> 6, limit >> 6); in initBits() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | BMPSet.java | 52 private int[] bmpBlockBits; field in BMPSet 73 bmpBlockBits = new int[64]; in BMPSet() 96 bmpBlockBits = otherBMPSet.bmpBlockBits.clone(); in BMPSet() 107 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in contains() 159 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 198 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 255 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 295 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 427 bmpBlockBits[start & 0x3f] |= 0x10001 << (start >> 6); in initBits() 434 set32x64Bits(bmpBlockBits, start >> 6, limit >> 6); in initBits() [all …]
|