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

  /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/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-
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFont.cpp 125 int nibbles = 0; local
133 nibbles++;
135 *dataLen = (nibbles + 1) / 2;
    [all...]

Completed in 291 milliseconds