Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:ac

34 	int i = 0, bits = 0, ac = 0;
38 ac += (((unsigned char) src[i]) << bits);
41 *cp++ = lookup_table[ac & 0x3f];
42 ac >>= 6;
48 *cp++ = lookup_table[ac & 0x3f];
54 int i = 0, bits = 0, ac = 0;
62 ac += (p - lookup_table) << bits;
65 *cp++ = ac & 0xff;
66 ac >>= 8;
71 if (ac)