Searched refs:bmpBlockBits (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/common/ |
D | bmpset.cpp | 31 uprv_memset(bmpBlockBits, 0, sizeof(bmpBlockBits)); in BMPSet() 55 uprv_memcpy(bmpBlockBits, otherBMPSet.bmpBlockBits, sizeof(bmpBlockBits)); in BMPSet() 167 bmpBlockBits[start&0x3f]|=0x10001<<(start>>6); in initBits() 174 set32x64Bits(bmpBlockBits, start>>6, limit>>6); in initBits() 180 bmpBlockBits[limit&0x3f]|=0x10001<<(limit>>6); in initBits() 225 bmpBlockBits[i]|=bits; in overrideIllegal() 231 bmpBlockBits[i]=(bmpBlockBits[i]&mask)|bits; in overrideIllegal() 237 bmpBlockBits[i]&=mask; in overrideIllegal() 284 uint32_t twoBits=(bmpBlockBits[(c>>6)&0x3f]>>lead)&0x10001; in contains() 325 uint32_t twoBits=(bmpBlockBits[(c>>6)&0x3f]>>lead)&0x10001; in span() [all …]
|
D | bmpset.h | 134 uint32_t bmpBlockBits[64]; variable
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | BMPSet.java | 53 private int[] bmpBlockBits; field in BMPSet 74 bmpBlockBits = new int[64]; in BMPSet() 97 bmpBlockBits = otherBMPSet.bmpBlockBits.clone(); in BMPSet() 108 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in contains() 160 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 199 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 256 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 296 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 428 bmpBlockBits[start & 0x3f] |= 0x10001 << (start >> 6); in initBits() 435 set32x64Bits(bmpBlockBits, start >> 6, limit >> 6); in initBits() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | BMPSet.java | 51 private int[] bmpBlockBits; field in BMPSet 72 bmpBlockBits = new int[64]; in BMPSet() 95 bmpBlockBits = otherBMPSet.bmpBlockBits.clone(); in BMPSet() 106 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in contains() 158 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 197 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in span() 254 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 294 int twoBits = (bmpBlockBits[(c >> 6) & 0x3f] >> lead) & 0x10001; in spanBack() 426 bmpBlockBits[start & 0x3f] |= 0x10001 << (start >> 6); in initBits() 433 set32x64Bits(bmpBlockBits, start >> 6, limit >> 6); in initBits() [all …]
|