Home
last modified time | relevance | path

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

/external/lldb/scripts/
Ddisasm-gdb-remote.pl1486 my @nibbles;
1489 push @nibbles, splice(@$arrayref, 14, 2);
1490 push @nibbles, splice(@$arrayref, 12, 2);
1491 push @nibbles, splice(@$arrayref, 10, 2);
1492 push @nibbles, splice(@$arrayref, 8, 2);
1493 push @nibbles, splice(@$arrayref, 6, 2);
1494 push @nibbles, splice(@$arrayref, 4, 2);
1495 push @nibbles, splice(@$arrayref, 2, 2);
1496 push @nibbles, splice(@$arrayref, 0, 2);
1500 (@nibbles) = splice(@$arrayref, 0, ((64/8) * 2));
[all …]
/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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
Dbdflib.c1536 unsigned long i, slen, nibbles; in _bdf_parse_glyphs() local
1841 nibbles = glyph->bpr << 1; in _bdf_parse_glyphs()
1844 for ( i = 0; i < nibbles; i++ ) in _bdf_parse_glyphs()
1850 if ( i + 1 < nibbles && ( i & 1 ) ) in _bdf_parse_glyphs()
1856 if ( i < nibbles && in _bdf_parse_glyphs()
1870 if ( i == nibbles && in _bdf_parse_glyphs()
1871 sbitset( hdigits, line[nibbles] ) && in _bdf_parse_glyphs()
/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.
/external/ImageMagick/coders/
Dpng.c1728 nibbles; in Magick_png_read_raw_profile() local
1775 nibbles=length*2; in Magick_png_read_raw_profile()
1777 for (i=0; i < (ssize_t) nibbles; i++) in Magick_png_read_raw_profile()