Searched refs:nibble (Results 1 - 22 of 22) sorted by relevance

/external/kernel-headers/original/uapi/linux/
H A Dif_plip.h20 unsigned long nibble; member in struct:plipconf
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DASCIICType.h148 char nibble = c & 0xF; local
149 return nibble < 10 ? '0' + nibble : 'A' + nibble - 10;
154 char nibble = (c >> 4) & 0xF; local
155 return nibble < 10 ? '0' + nibble : 'A' + nibble - 10;
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imaadpcm.c51 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) argument
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/
H A Deas_imaadpcm.c51 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) argument
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/
H A Deas_imaadpcm.c51 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) argument
235 if (nibble & 4)
238 if (nibble & 2)
242 if (nibble & 1)
250 if (nibble & 8)
263 pState->step += imaIndexTable[nibble];
[all...]
/external/lldb/source/Utility/
H A DStringExtractor.cpp234 uint8_t nibble = xdigit_to_sint (m_packet[m_index]); local
237 result |= nibble;
296 uint8_t nibble = xdigit_to_sint (m_packet[m_index]); local
299 result |= nibble;
329 // Consume ASCII hex nibble character pairs until we have decoded byte_size
/external/icu/icu4c/source/layout/
H A DValueRecords.cpp17 #define Nibble(value, nibble) ((value >> (nibble * 4)) & 0xF)
18 #define NibbleBits(value, nibble) (bitsInNibble[Nibble(value, nibble)])
/external/chromium_org/third_party/ots/src/
H A Dcff.cc188 uint8_t nibble = 0; local
191 if (!table->ReadU8(&nibble)) {
194 if ((nibble & 0xf0) == 0xf0) {
195 if ((nibble & 0xf) == 0xf) {
204 if ((nibble & 0x0f) == 0x0f) {
212 nibbles[0] = (nibble & 0xf0) >> 8;
213 nibbles[1] = (nibble & 0x0f);
/external/lldb/scripts/
H A Ddisasm-gdb-remote.pl1062 my $nibble;
1065 foreach $nibble (@_)
1073 print $nibble;
1213 my $nibble;
1216 foreach $nibble (@_)
1219 print $nibble;
1407 # Get a byte from the ascii string assuming that the 2 nibble ascii
/external/chromium_org/third_party/libsrtp/srtp/crypto/math/
H A Ddatatypes.c101 nibble_to_hex_char(uint8_t nibble) { argument
104 return buf[nibble & 0xF];
H A Dmath.c276 nibble_to_hex_char(uint8_t nibble) { argument
279 return buf[nibble & 0xF];
/external/srtp/crypto/math/
H A Ddatatypes.c101 nibble_to_hex_char(uint8_t nibble) { argument
104 return buf[nibble & 0xF];
H A Dmath.c276 nibble_to_hex_char(uint8_t nibble) { argument
279 return buf[nibble & 0xF];
/external/chromium_org/v8/src/
H A Dutils.h70 int nibble = 0; local
72 nibble += 16;
76 nibble += 8;
80 nibble += 4;
83 return nibble + msb4[x];
/external/llvm/lib/IR/
H A DAsmWriter.cpp833 // Bit position, in the current word, of the next nibble to print.
845 unsigned int nibble = (word>>shiftcount) & 15; local
846 if (nibble < 10)
847 Out << (unsigned char)(nibble + '0');
849 Out << (unsigned char)(nibble - 10 + 'A');
875 unsigned int nibble = (word>>shiftcount) & 15; local
876 if (nibble < 10)
877 Out << (unsigned char)(nibble + '0');
879 Out << (unsigned char)(nibble - 10 + 'A');
/external/chromium_org/third_party/libsrtp/srtp/crypto/include/
H A Ddatatypes.h134 nibble_to_hex_char(uint8_t nibble);
/external/srtp/crypto/include/
H A Ddatatypes.h127 nibble_to_hex_char(uint8_t nibble);
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c3789 Bit16u arg_seg, arg, digit, nibble, shift_count; local
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/
H A Drombios.c1631 Bit16u arg_seg, arg, nibble, hibyte, shift_count, format_width, hexadd; local
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dconfigure9835 /* (btw, those nibble-addressable systems are way off, or so we assume) */
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 3470 milliseconds