HomeSort by relevance Sort by last modified time
    Searched refs:nibbles (Results 1 - 10 of 10) 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/chromium_org/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/chromium_org/third_party/tlslite/tlslite/utils/
cryptomath.py 291 nibbles = None
293 nibbles = int(power & mask), nibbles
302 nib, nibbles = nibbles
307 while nibbles:
308 nib, nibbles = nibbles
  /external/chromium_org/third_party/ots/src/
cff.cc 211 uint8_t nibbles[2]; local
212 nibbles[0] = (nibble & 0xf0) >> 8;
213 nibbles[1] = (nibble & 0x0f);
215 if (nibbles[i] == 0xd) { // reserved number
218 if ((nibbles[i] == 0xe) && // minus
222 if (nibbles[i] == 0xa) { // decimal point
229 if ((nibbles[i] == 0xb) || // E+
230 (nibbles[i] == 0xc)) { // E-
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py     [all...]
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFont.cpp 125 int nibbles = 0; local
133 nibbles++;
135 *dataLen = (nibbles + 1) / 2;
    [all...]
  /external/skia/src/pdf/
SkPDFFont.cpp 125 int nibbles = 0; local
133 nibbles++;
135 *dataLen = (nibbles + 1) / 2;
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 709 milliseconds