HomeSort by relevance Sort by last modified time
    Searched defs:nibble (Results 1 - 15 of 15) 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));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_plip.h 21 unsigned long nibble; member in struct:plipconf
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_plip.h 21 unsigned long nibble; member in struct:plipconf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 926 char nibble = key[i] >> 4; local
927 if (nibble <= 9) {
928 nibble += '0';
930 nibble += 'a' - 10;
932 out->append(&nibble, 1);
934 nibble = key[i] & 0x0f;
935 if (nibble <= 9) {
936 nibble += '0';
938 nibble += 'a' - 10;
940 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/IR/
AsmWriter.cpp 858 // Bit position, in the current word, of the next nibble to print.
870 unsigned int nibble = (word>>shiftcount) & 15; local
871 if (nibble < 10)
872 Out << (unsigned char)(nibble + '0');
874 Out << (unsigned char)(nibble - 10 + 'A');
900 unsigned int nibble = (word>>shiftcount) & 15; local
901 if (nibble < 10)
902 Out << (unsigned char)(nibble + '0');
904 Out << (unsigned char)(nibble - 10 + 'A');
    [all...]
  /system/vold/
cryptfs.c 351 unsigned char nibble; local
355 nibble = (master_key[i] >> 4) & 0xf;
356 master_key_ascii[a] = nibble + (nibble > 9 ? 0x37 : 0x30);
358 nibble = master_key[i] & 0xf;
359 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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 

Completed in 967 milliseconds