/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | ASCIICType.h | 148 char nibble = c & 0xF; in lowerNibbleToASCIIHexDigit() local 149 return nibble < 10 ? '0' + nibble : 'A' + nibble - 10; in lowerNibbleToASCIIHexDigit() 154 char nibble = (c >> 4) & 0xF; in upperNibbleToASCIIHexDigit() local 155 return nibble < 10 ? '0' + nibble : 'A' + nibble - 10; in upperNibbleToASCIIHexDigit()
|
/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-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-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/lldb/source/Utility/ |
D | StringExtractor.cpp | 234 uint8_t nibble = xdigit_to_sint (m_packet[m_index]); in GetHexMaxU32() local 237 result |= nibble; in GetHexMaxU32() 296 uint8_t nibble = xdigit_to_sint (m_packet[m_index]); in GetHexMaxU64() local 299 result |= nibble; in GetHexMaxU64()
|
/external/icu/icu4c/source/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/chromium_org/third_party/ots/src/ |
D | cff.cc | 188 uint8_t nibble = 0; in ParseDictDataBcd() local 191 if (!table->ReadU8(&nibble)) { in ParseDictDataBcd() 194 if ((nibble & 0xf0) == 0xf0) { in ParseDictDataBcd() 195 if ((nibble & 0xf) == 0xf) { in ParseDictDataBcd() 204 if ((nibble & 0x0f) == 0x0f) { in ParseDictDataBcd() 212 nibbles[0] = (nibble & 0xf0) >> 8; in ParseDictDataBcd() 213 nibbles[1] = (nibble & 0x0f); in ParseDictDataBcd()
|
/external/kernel-headers/original/uapi/linux/ |
D | if_plip.h | 20 unsigned long nibble; member
|
/external/clang/test/CodeGenObjC/ |
D | block-var-layout.m | 36 // many sizeof(void*) chunks to skip (high nibble) and then how many 37 // to scan (low nibble). A zero byte says that we've reached the end
|
D | arc-captured-32bit-block-var-layout.m | 26 // many sizeof(void*) chunks to skip (high nibble) and then how many 27 // to scan (low nibble). A zero byte says that we've reached the end
|
D | arc-captured-block-var-layout.m | 26 // many sizeof(void*) chunks to skip (high nibble) and then how many 27 // 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/chromium_org/third_party/libsrtp/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/lldb/scripts/ |
D | disasm-gdb-remote.pl | 1062 my $nibble; 1065 foreach $nibble (@_) 1073 print $nibble; 1213 my $nibble; 1216 foreach $nibble (@_) 1219 print $nibble;
|
/external/chromium_org/v8/src/ |
D | utils.h | 70 int nibble = 0; in MostSignificantBit() local 72 nibble += 16; in MostSignificantBit() 76 nibble += 8; in MostSignificantBit() 80 nibble += 4; in MostSignificantBit() 83 return nibble + msb4[x]; in MostSignificantBit()
|
/external/llvm/lib/IR/ |
D | AsmWriter.cpp | 845 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal() local 846 if (nibble < 10) in WriteConstantInternal() 847 Out << (unsigned char)(nibble + '0'); in WriteConstantInternal() 849 Out << (unsigned char)(nibble - 10 + 'A'); in WriteConstantInternal() 875 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal() local 876 if (nibble < 10) in WriteConstantInternal() 877 Out << (unsigned char)(nibble + '0'); in WriteConstantInternal() 879 Out << (unsigned char)(nibble - 10 + 'A'); in WriteConstantInternal()
|
/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/chromium_org/third_party/libsrtp/srtp/crypto/include/ |
D | datatypes.h | 134 nibble_to_hex_char(uint8_t nibble);
|
/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/libexif/m4m/ |
D | stdint.m4 | 479 /* (btw, those nibble-addressable systems are way off, or so we assume) */
|
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/ |
D | ax_create_stdint_h.m4 | 420 /* (btw, those nibble-addressable systems are way off, or so we assume) */
|