Searched refs:nibbles (Results 1 - 7 of 7) sorted by relevance

/external/libevent/
H A Devent_tagging.c88 where NNibbles is a 4-bit value encoding the number of nibbles-1,
90 order. If the total encoded integer size is an odd number of nibbles,
105 * We encode integers by nibbles; the first nibble contains the number
106 * of significant nibbles - 1; this allows us to encode up to 64-bit
116 int off = 1, nibbles = 0; \
130 nibbles = off - 2; \
132 /* Off - 1 is the number of encoded nibbles */ \
133 data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); \
310 int nibbles = 0; \
320 nibbles
[all...]
/external/skia/src/pdf/
H A DSkPDFConvertType1FontStream.cpp95 int nibbles = 0; local
103 nibbles++;
105 *dataLen = (nibbles + 1) / 2;
/external/fonttools/Lib/fontTools/misc/
H A DpsCharStrings.py211 nibbles = []
218 nibbles.append(realNibblesDict[c])
219 nibbles.append(0xf)
220 if len(nibbles) % 2:
221 nibbles.append(0xf)
223 for i in range(0, len(nibbles), 2):
224 d = d + bytechr(nibbles[i] << 4 | nibbles[i+1])
/external/fonttools/Tools/fontTools/misc/
H A DpsCharStrings.py211 nibbles = []
218 nibbles.append(realNibblesDict[c])
219 nibbles.append(0xf)
220 if len(nibbles) % 2:
221 nibbles.append(0xf)
223 for i in range(0, len(nibbles), 2):
224 d = d + bytechr(nibbles[i] << 4 | nibbles[i+1])
/external/flatbuffers/src/
H A Didl_parser.cpp221 // Parses exactly nibbles worth of hex digits into a number, or error.
222 CheckedError Parser::ParseHexNum(int nibbles, uint64_t *val) { argument
223 for (int i = 0; i < nibbles; i++)
225 return Error("escape code must be followed by " + NumToString(nibbles) +
227 std::string target(cursor_, cursor_ + nibbles);
229 cursor_ += nibbles;
/external/flatbuffers/include/flatbuffers/
H A Didl.h528 FLATBUFFERS_CHECKED_ERROR ParseHexNum(int nibbles, uint64_t *val);
/external/ImageMagick/coders/
H A Dpng.c1735 nibbles;
1782 nibbles=length*2;
1784 for (i=0; i < (ssize_t) nibbles; i++)
1728 nibbles; local

Completed in 298 milliseconds