Home | History | Annotate | Download | only in i18n

Lines Matching refs:bits

31     for (uint32_t i=0; i<LENGTHOF(bits); i++) {
32 bits[i] = 0;
45 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
46 bits[i] = other.bits[i];
53 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
54 if (bits[i] != other.bits[i]) {
65 if (script < 0 || script >= (int32_t)sizeof(bits) * 8) {
71 return ((bits[index] & bit) != 0);
79 if (script < 0 || script >= (int32_t)sizeof(bits) * 8) {
85 bits[index] |= bit;
93 if (script < 0 || script >= (int32_t)sizeof(bits) * 8) {
99 bits[index] &= ~bit;
106 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
107 bits[i] |= other.bits[i];
113 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
114 bits[i] &= other.bits[i];
129 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
130 if ((bits[i] & other.bits[i]) != 0) {
145 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
146 bits[i] = 0xffffffffu;
153 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
154 bits[i] = 0;
163 for (uint32_t i=0; i<LENGTHOF(bits); i++) {
164 uint32_t x = bits[i];
175 for (int32_t i=0; i<LENGTHOF(bits); i++) {
176 hash ^= bits[i];
187 for (int32_t scriptIndex = fromIndex; scriptIndex < (int32_t)sizeof(bits)*8; scriptIndex++) {