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 923 char nibble = key[i] >> 4; local
924 if (nibble <= 9) {
925 nibble += '0';
927 nibble += 'a' - 10;
929 out->append(&nibble, 1);
931 nibble = key[i] & 0x0f;
932 if (nibble <= 9) {
933 nibble += '0';
935 nibble += 'a' - 10;
937 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 768 unsigned int nibble = (word>>shiftcount) & 15; local
769 if (nibble < 10)
770 Out << (unsigned char)(nibble + '0');
772 Out << (unsigned char)(nibble - 10 + 'A');
794 unsigned int nibble = (word>>shiftcount) & 15; local
795 if (nibble < 10)
796 Out << (unsigned char)(nibble + '0');
798 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 4042 milliseconds