Home
last modified time | relevance | path

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

/external/libevent/
Devent_tagging.c116 int off = 1, nibbles = 0; \
130 nibbles = off - 2; \
133 data[0] = (data[0] & 0x0f) | ((nibbles & 0x0f) << 4); \
310 int nibbles = 0; \
320 nibbles = ((data[0] & 0xf0) >> 4) + 1; \
321 if (nibbles > maxnibbles || (nibbles >> 1) + 1 > len) \
323 len = (nibbles >> 1) + 1; \
329 while (nibbles > 0) { \
331 if (nibbles & 0x1) \
332 number |= data[nibbles >> 1] & 0x0f; \
[all …]
/external/jetty/src/java/org/eclipse/jetty/util/
DB64Code.java378 byte nibbles[] = new byte[4]; in decode()
395 nibbles[s++]=__rfc1421nibbles[c]; in decode()
402 bout.write(nibbles[0]<<2|nibbles[1]>>>4); in decode()
405 bout.write(nibbles[1]<<4|nibbles[2]>>>2); in decode()
408 bout.write(nibbles[2]<<6|nibbles[3]); in decode()
/external/fonttools/Lib/fontTools/misc/
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/skia/src/pdf/
DSkPDFFont.cpp129 int nibbles = 0; in parsePFA() local
137 nibbles++; in parsePFA()
139 *dataLen = (nibbles + 1) / 2; in parsePFA()
/external/srtp/googlepatches/
Dvidyo-3-srtp-ws.patch399 - /* loop over nibbles */
455 - n = num_hex_chars % 8; /* number of nibbles in last word */
/external/libvncserver/webclients/java-applet/ssl/
Dtightvnc-1.3dev7_javasrc-vncviewer-ssl.patch2133 + // Mapping table from 6-bit nibbles to Base64 characters.
2142 + // Mapping table from Base64 characters to 6-bit nibbles.
Dultravnc-102-JavaViewer-ssl-etc.patch4705 + // Mapping table from 6-bit nibbles to Base64 characters.
4714 + // Mapping table from Base64 characters to 6-bit nibbles.