Lines Matching defs:used
4122 unsigned short used = summary->used;
4124 if (used & ((unsigned short) 1 << i)) {
4126 /* Keep in `used' only the bits 0..i-1. */
4127 used &= ((unsigned short) 1 << i) - 1;
4128 /* Add `summary->indx' and the number of bits set in `used'. */
4129 used = (used & 0x5555) + ((used & 0xaaaa) >> 1);
4130 used = (used & 0x3333) + ((used & 0xcccc) >> 2);
4131 used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);
4132 used = (used & 0x00ff) + (used >> 8);
4133 c = big5_2charset[summary->indx + used];