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

  /build/libs/host/
list.java 4 private static char nibble(int c) { method in class:list
30 System.out.print("\\x" + nibble((b >> 4) & 0x0f) + nibble(b & 0xf));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_plip.h 21 unsigned long nibble; member in struct:plipconf
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_mul2add.c 43 unsigned bitbufA, bitbufB, lenA, lenB, len, x, y, nA, nB, nibble; local
131 nibble = 3;
138 /* grab a nibble */
139 if (++nibble == 4) {
143 nibble = 0;
  /frameworks/base/media/libstagefright/rtsp/
ARTSPConnection.cpp 899 char nibble = key[i] >> 4; local
900 if (nibble <= 9) {
901 nibble += '0';
903 nibble += 'a' - 10;
905 out->append(&nibble, 1);
907 nibble = key[i] & 0x0f;
908 if (nibble <= 9) {
909 nibble += '0';
911 nibble += 'a' - 10;
913 out->append(&nibble, 1)
    [all...]
MyTransmitter.h 247 char nibble = key[i] >> 4; local
248 if (nibble <= 9) {
249 nibble += '0';
251 nibble += 'a' - 10;
253 out->append(&nibble, 1);
255 nibble = key[i] & 0x0f;
256 if (nibble <= 9) {
257 nibble += '0';
259 nibble += 'a' - 10;
261 out->append(&nibble, 1)
    [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp 750 unsigned int nibble = (word>>shiftcount) & 15; local
751 if (nibble < 10)
752 Out << (unsigned char)(nibble + '0');
754 Out << (unsigned char)(nibble - 10 + 'A');
776 unsigned int nibble = (word>>shiftcount) & 15; local
777 if (nibble < 10)
778 Out << (unsigned char)(nibble + '0');
780 Out << (unsigned char)(nibble - 10 + 'A');
    [all...]
  /system/vold/
cryptfs.c 346 unsigned char nibble; local
350 nibble = (master_key[i] >> 4) & 0xf;
351 master_key_ascii[a] = nibble + (nibble > 9 ? 0x37 : 0x30);
353 nibble = master_key[i] & 0xf;
354 master_key_ascii[a+1] = nibble + (nibble > 9 ? 0x37 : 0x30);
    [all...]
  /external/qemu-pc-bios/vgabios/
vgabios.c 3789 Bit16u arg_seg, arg, digit, nibble, shift_count; local
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios.c 1631 Bit16u arg_seg, arg, nibble, hibyte, shift_count, format_width, hexadd; local
    [all...]

Completed in 217 milliseconds