Home | History | Annotate | Download | only in util

Lines Matching refs:kEncoding

2249   static const char kEncoding[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
2256 ret.push_back(kEncoding[(bytes[0] & 0xf8) >> 3]);
2257 ret.push_back(kEncoding[(bytes[0] & 0x07) << 2]);
2280 ret.push_back(kEncoding[(bit_stream & 0xf800) >> 11]);