HomeSort by relevance Sort by last modified time
    Searched refs:table7FF (Results 1 - 8 of 8) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
BMPSet.java 38 * trail=c{5..0} it is set.contains(c)==(table7FF[trail] bit lead)
43 private int[] table7FF;
75 table7FF = new int[64];
98 table7FF = otherBMPSet.table7FF.clone();
107 return ((table7FF[c & 0x3f] & (1 << (c >> 6))) != 0);
156 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) == 0) {
195 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) != 0) {
252 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) == 0) {
292 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) != 0)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
BMPSet.java 36 * trail=c{5..0} it is set.contains(c)==(table7FF[trail] bit lead)
41 private int[] table7FF;
73 table7FF = new int[64];
96 table7FF = otherBMPSet.table7FF.clone();
105 return ((table7FF[c & 0x3f] & (1 << (c >> 6))) != 0);
154 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) == 0) {
193 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) != 0) {
250 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) == 0) {
290 if ((table7FF[c & 0x3f] & (1 << (c >> 6))) != 0)
    [all...]
  /external/icu/icu4c/source/common/
bmpset.cpp 32 uprv_memset(table7FF, 0, sizeof(table7FF));
56 uprv_memcpy(table7FF, otherBMPSet.table7FF, sizeof(table7FF));
139 // Set table7FF[].
141 set32x64Bits(table7FF, start, limit<=0x800 ? limit : 0x800);
207 * (asciiBytes[] trail bytes, table7FF[] 0..7F, bmpBlockBits[] 0..7FF)
222 table7FF[i]|=bits;
283 return (UBool)((table7FF[c&0x3f]&((uint32_t)1<<(c>>6)))!=0)
    [all...]
bmpset.h 113 * it is set.contains(c)==(table7FF[trail] bit lead)
118 uint32_t table7FF[64];