Home
last modified time | relevance | path

Searched refs:octect (Results 1 – 2 of 2) sorted by relevance

/external/perfetto/tools/proto_filter/
Dproto_filter.cc231 uint8_t octect = static_cast<uint8_t>(c); in Main() local
234 buf[3 - i] = static_cast<char>('0' + static_cast<uint8_t>(octect) % 8); in Main()
235 octect /= 8; in Main()
/external/apache-http/src/org/apache/commons/codec/binary/
DBase64.java139 private static boolean isBase64(byte octect) { in isBase64() argument
140 if (octect == PAD) { in isBase64()
142 } else if (base64Alphabet[octect] == -1) { in isBase64()