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

  /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
  /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));
  /frameworks/base/core/java/android/content/pm/
Signature.java 49 private static final int parseHexDigit(int nibble) {
50 if ('0' <= nibble && nibble <= '9') {
51 return nibble - '0';
52 } else if ('a' <= nibble && nibble <= 'f') {
53 return nibble - 'a' + 10;
54 } else if ('A' <= nibble && nibble <= 'F') {
55 return nibble - 'A' + 10
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_imaadpcm.c 51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble);
110 /* if high nibble, decode */
117 /* low nibble, need to fetch another byte */
186 /* decode the low nibble */
225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble)
235 if (nibble & 4)
238 if (nibble & 2)
242 if (nibble & 1)
250 if (nibble & 8)
263 pState->step += imaIndexTable[nibble];
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imaadpcm.c 51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble);
110 /* if high nibble, decode */
117 /* low nibble, need to fetch another byte */
186 /* decode the low nibble */
225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble)
235 if (nibble & 4)
238 if (nibble & 2)
242 if (nibble & 1)
250 if (nibble & 8)
263 pState->step += imaIndexTable[nibble];
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_imaadpcm.c 51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble);
110 /* if high nibble, decode */
117 /* low nibble, need to fetch another byte */
186 /* decode the low nibble */
225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble)
235 if (nibble & 4)
238 if (nibble & 2)
242 if (nibble & 1)
250 if (nibble & 8)
263 pState->step += imaIndexTable[nibble];
    [all...]
  /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;
  /external/icu4c/layout/
ValueRecords.cpp 17 #define Nibble(value, nibble) ((value >> (nibble * 4)) & 0xF)
18 #define NibbleBits(value, nibble) (bitsInNibble[Nibble(value, nibble)])
  /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...]
  /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/srtp/crypto/math/
datatypes.c 101 nibble_to_hex_char(uint8_t nibble) {
104 return buf[nibble & 0xF];
math.c 276 nibble_to_hex_char(uint8_t nibble) {
279 return buf[nibble & 0xF];
  /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...]
  /external/srtp/crypto/include/
datatypes.h 127 nibble_to_hex_char(uint8_t nibble);
  /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 937 milliseconds