HomeSort by relevance Sort by last modified time
    Searched defs:nibble (Results 1 - 3 of 3) sorted by null

  /build/libs/host/
list.java 4 private static char nibble(int c) { method in class:list
30 System.out.print("\\x" + nibble((b >> 4) & 0x0f) + nibble(b & 0xf));
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_mul2add.c 43 unsigned bitbufA, bitbufB, lenA, lenB, len, x, y, nA, nB, nibble; local
131 nibble = 3;
138 /* grab a nibble */
139 if (++nibble == 4) {
143 nibble = 0;
  /frameworks/base/media/libstagefright/rtsp/
MyTransmitter.h 247 char nibble = key[i] >> 4; local
248 if (nibble <= 9) {
249 nibble += '0';
251 nibble += 'a' - 10;
253 out->append(&nibble, 1);
255 nibble = key[i] & 0x0f;
256 if (nibble <= 9) {
257 nibble += '0';
259 nibble += 'a' - 10;
261 out->append(&nibble, 1)
    [all...]

Completed in 75 milliseconds