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

  /external/smack/src/org/xbill/DNS/
ReverseMap.java 44 int [] nibbles = new int[2]; local
46 nibbles[0] = (addr[i] & 0xFF) >> 4;
47 nibbles[1] = (addr[i] & 0xFF) & 0xF;
48 for (int j = nibbles.length - 1; j >= 0; j--) {
49 sb.append(Integer.toHexString(nibbles[j]));
  /external/chromium/third_party/libevent/
event_tagging.c 85 * We encode integer's by nibbles; the first nibble contains the number
86 * of significant nibbles - 1; this allows us to encode up to 64-bit
93 int off = 1, nibbles = 0; local
108 nibbles = off - 2;
110 /* Off - 1 is the number of encoded nibbles */
111 data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4);
232 int nibbles = 0; local
237 nibbles = ((data[0] & 0xf0) >> 4) + 1;
238 if (nibbles > 8 || (nibbles >> 1) + 1 > len
    [all...]
  /external/skia/src/pdf/
SkPDFFont.cpp 122 int nibbles = 0; local
130 nibbles++;
132 *dataLen = (nibbles + 1) / 2;
    [all...]

Completed in 183 milliseconds