Lines Matching defs:used
6232 unsigned short used = summary->used;
6234 if (used & ((unsigned short) 1 << i)) {
6236 /* Keep in `used' only the bits 0..i-1. */
6237 used &= ((unsigned short) 1 << i) - 1;
6238 /* Add `summary->indx' and the number of bits set in `used'. */
6239 used = (used & 0x5555) + ((used & 0xaaaa) >> 1);
6240 used = (used & 0x3333) + ((used & 0xcccc) >> 2);
6241 used = (used & 0x0f0f) + ((used & 0xf0f0) >> 4);
6242 used = (used & 0x00ff) + (used >> 8);
6243 c = big5hkscs_2charset[summary->indx + used];