Lines Matching defs:bits
21 FcChar32 bits[2];
59 ctx->bits[0] = 0;
60 ctx->bits[1] = 0;
73 t = ctx->bits[0];
74 if ((ctx->bits[0] = t + ((FcChar32) len << 3)) < t)
75 ctx->bits[1]++; /* Carry from low to high */
76 ctx->bits[1] += len >> 29;
113 * 1 0* (64-bit count of bits processed, MSB-first)
121 count = (ctx->bits[0] >> 3) & 0x3F;
146 /* Append length in bits and transform */
147 ((FcChar32 *) ctx->in)[14] = ctx->bits[0];
148 ((FcChar32 *) ctx->in)[15] = ctx->bits[1];