/external/sonivox/arm-hybrid-22k/lib_src/ |
D | eas_imaadpcm.c | 51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble); 225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble) in IMADecoderADPCM() argument 235 if (nibble & 4) in IMADecoderADPCM() 238 if (nibble & 2) in IMADecoderADPCM() 242 if (nibble & 1) in IMADecoderADPCM() 250 if (nibble & 8) in IMADecoderADPCM() 263 pState->step += imaIndexTable[nibble]; in IMADecoderADPCM()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_imaadpcm.c | 51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble); 225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble) in IMADecoderADPCM() argument 235 if (nibble & 4) in IMADecoderADPCM() 238 if (nibble & 2) in IMADecoderADPCM() 242 if (nibble & 1) in IMADecoderADPCM() 250 if (nibble & 8) in IMADecoderADPCM() 263 pState->step += imaIndexTable[nibble]; in IMADecoderADPCM()
|
/external/sonivox/arm-fm-22k/lib_src/ |
D | eas_imaadpcm.c | 51 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble); 225 static void IMADecoderADPCM (S_DECODER_STATE *pState, EAS_U8 nibble) in IMADecoderADPCM() argument 235 if (nibble & 4) in IMADecoderADPCM() 238 if (nibble & 2) in IMADecoderADPCM() 242 if (nibble & 1) in IMADecoderADPCM() 250 if (nibble & 8) in IMADecoderADPCM() 263 pState->step += imaIndexTable[nibble]; in IMADecoderADPCM()
|
/external/dropbear/libtomcrypt/src/pk/ecc/ |
D | ltc_ecc_mul2add.c | 43 unsigned bitbufA, bitbufB, lenA, lenB, len, x, y, nA, nB, nibble; in ltc_ecc_mul2add() local 131 nibble = 3; in ltc_ecc_mul2add() 139 if (++nibble == 4) { in ltc_ecc_mul2add() 143 nibble = 0; in ltc_ecc_mul2add()
|
/external/icu4c/layout/ |
D | ValueRecords.cpp | 17 #define Nibble(value, nibble) ((value >> (nibble * 4)) & 0xF) argument 18 #define NibbleBits(value, nibble) (bitsInNibble[Nibble(value, nibble)]) argument
|
/external/clang/test/CodeGenObjC/ |
D | arc-block-ivar-layout.m | 25 // many sizeof(void*) chunks to skip (high nibble) and then how many 26 // to scan (low nibble). A zero byte says that we've reached the end
|
D | block-var-layout.m | 35 // many sizeof(void*) chunks to skip (high nibble) and then how many 36 // to scan (low nibble). A zero byte says that we've reached the end
|
/external/srtp/crypto/math/ |
D | datatypes.c | 101 nibble_to_hex_char(uint8_t nibble) { in nibble_to_hex_char() argument 104 return buf[nibble & 0xF]; in nibble_to_hex_char()
|
D | math.c | 276 nibble_to_hex_char(uint8_t nibble) { in nibble_to_hex_char() argument 279 return buf[nibble & 0xF]; in nibble_to_hex_char()
|
/external/llvm/lib/VMCore/ |
D | AsmWriter.cpp | 750 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal() local 751 if (nibble < 10) in WriteConstantInternal() 752 Out << (unsigned char)(nibble + '0'); in WriteConstantInternal() 754 Out << (unsigned char)(nibble - 10 + 'A'); in WriteConstantInternal() 776 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal() local 777 if (nibble < 10) in WriteConstantInternal() 778 Out << (unsigned char)(nibble + '0'); in WriteConstantInternal() 780 Out << (unsigned char)(nibble - 10 + 'A'); in WriteConstantInternal()
|
/external/icu4c/tools/gennames/ |
D | gennames.c | 334 appendLineLengthNibble(uint8_t nibble); 1536 appendLineLengthNibble(uint8_t nibble) { in appendLineLengthNibble() argument 1538 lineLengths[lineLengthsTop/2]=(uint8_t)(nibble<<4); in appendLineLengthNibble() 1540 lineLengths[lineLengthsTop/2]|=nibble&0xf; in appendLineLengthNibble()
|
/external/openssl/crypto/des/asm/ |
D | des_enc.m4 | 1963 ! nibble 0 1980 ! nibble 1 1997 ! nibble 2 2014 ! nibble 3 2031 ! nibble 4 2048 ! nibble 5 2065 ! nibble 6 2082 ! nibble 7
|
/external/srtp/crypto/include/ |
D | datatypes.h | 127 nibble_to_hex_char(uint8_t nibble);
|
/external/qemu-pc-bios/vgabios/ |
D | vgabios.c | 3789 Bit16u arg_seg, arg, digit, nibble, shift_count; 3814 nibble = (arg >> (4 * digit)) & 0x000f; 3815 if (nibble <= 9) 3816 outb(0x0500, nibble + '0'); 3818 outb(0x0500, (nibble - 10) + 'A');
|
/external/qemu-pc-bios/bochs/bios/ |
D | rombios.c | 1631 Bit16u arg_seg, arg, nibble, hibyte, shift_count, format_width, hexadd; 1666 nibble = (arg >> (4 * i)) & 0x000f; 1667 send (action, (nibble<=9)? (nibble+'0') : (nibble-10+hexadd)); 1696 nibble = ((((Bit32u) hibyte <<16) | arg) >> (4 * i)) & 0x000f; 1697 send (action, (nibble<=9)? (nibble+'0') : (nibble-10+hexadd));
|
/external/libvpx/nestegg/m4/ |
D | ax_create_stdint_h.m4 | 440 /* (btw, those nibble-addressable systems are way off, or so we assume) */
|
/external/dnsmasq/ |
D | CHANGELOG.archive | 593 nibble and bitstring formats so it should work with any
|
/external/grub/ |
D | ChangeLog | 8910 * shared_src/asm.S (biosdisk): Use LBA mode if high nibble of 8912 (get_diskinfo): Set high nibble of GEOMETRY (0xf0000000) to 1 if
|