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

  /external/libevent/
event_tagging.c 88 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 = ((data[0] & 0xf0) >> 4) + 1;
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
B64Code.java 378 byte nibbles[] = new byte[4];
395 nibbles[s++]=__rfc1421nibbles[c];
402 bout.write(nibbles[0]<<2|nibbles[1]>>>4);
405 bout.write(nibbles[1]<<4|nibbles[2]>>>2);
408 bout.write(nibbles[2]<<6|nibbles[3]);
  /toolchain/binutils/binutils-2.25/opcodes/
sh-dis.c 108 nibbles of the insn, i.e. field a and the bit that indicates if
139 for (first_movx = sh_table; first_movx->nibbles[1] != MOVX_NOPY;)
141 for (first_movy = first_movx; first_movy->nibbles[1] != MOVY_NOPX;)
152 while (op->nibbles[2] != (unsigned) ((insn >> 4) & 3)
153 || op->nibbles[3] != (unsigned) (insn & 0xf))
173 for (first_movx = sh_table; first_movx->nibbles[1] != MOVX;)
175 for (first_movy = first_movx; first_movy->nibbles[1] != MOVY;)
181 for (opx = first_movx; opx->nibbles[2] != insn_x;)
191 for (opy = first_movy; opy->nibbles[2] != insn_y;)
318 if ((op->nibbles[1] == nib1 || op->nibbles[1] == altnib1
    [all...]
z8k-dis.c 33 unsigned char nibbles[24]; member in struct:__anon75986
91 priv->nibbles[i++] = *p >> 4;
92 priv->nibbles[i++] = *p & 0xf;
96 priv->nibbles[i++] = *p >> 4;
97 priv->nibbles[i++] = *p & 0xf;
160 instr_data.tabl_index = z8k_lookup_instr (instr_data.nibbles, info);
190 z8k_lookup_instr (unsigned char *nibbles, disassemble_info *info)
218 instr_nibl = nibbles[nibl_index];
313 instr_nibl = instr_data->nibbles[nibl_count];
sh64-opc.h 114 shmedia_nibble_type nibbles[4]; member in struct:__anon75979
sh64-dis.c 82 int offset = shmedia_table[n].nibbles[i];
235 unsigned long temp = instruction >> op->nibbles[i];
sh-opc.h 376 sh_nibble_type nibbles[9]; member in struct:__anon75976
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapUtils.java 179 byte[] nibbles;
180 nibbles = valueStr.getBytes("US-ASCII");
181 if(V) Log.i(TAG, " byte values: " + Arrays.toString(nibbles));
184 int length = nibbles.length;
187 c = nibbles[i];
  /toolchain/binutils/binutils-2.25/gas/config/
tc-sh.c     [all...]
tc-sh64.c     [all...]
  /external/fonttools/Lib/fontTools/misc/
psCharStrings.py 211 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])
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pickle.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pickle.py     [all...]
  /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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/bdf/
bdflib.c 1536 unsigned long i, slen, nibbles; local
    [all...]
  /external/skia/src/pdf/
SkPDFFont.cpp 129 int nibbles = 0; local
137 nibbles++;
139 *dataLen = (nibbles + 1) / 2;
    [all...]
  /external/ImageMagick/coders/
png.c 1728 nibbles; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-util/8.1.14.v20131031/
jetty-util-8.1.14.v20131031.jar 

Completed in 1590 milliseconds