/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/perfetto/src/base/ |
D | debug_crash_stack_trace.cc | 74 char nibble = static_cast<char>(n >> (sizeof(n) * 8 - i - 4)) & 0x0F; in PrintHex() local 75 char c = (nibble < 10) ? '0' + nibble : 'A' + nibble - 10; in PrintHex()
|
/external/valgrind/VEX/priv/ |
D | guest_ppc_helpers.c | 393 ULong tmp = 0, nibble; in convert_from_zoned_helper() local 398 nibble = ( src_hi >> 56 ) & 0xF; in convert_from_zoned_helper() 399 tmp = tmp | ( nibble << 60 ); in convert_from_zoned_helper() 403 nibble = ( src_hi >> ( ( 7 - i ) * 8 ) ) & 0xF; in convert_from_zoned_helper() 404 tmp = tmp | ( nibble << ( ( 15 - i ) * 4 ) ); in convert_from_zoned_helper() 407 nibble = ( src_low >> ( ( 8 - i ) * 8 ) ) & 0xF; in convert_from_zoned_helper() 408 tmp = tmp | ( nibble << ( ( 8 - i ) * 4 ) ); in convert_from_zoned_helper()
|
/external/kernel-headers/original/uapi/linux/ |
D | if_plip.h | 21 unsigned long nibble; member
|
/external/ImageMagick/MagickCore/ |
D | xwindow.c | 5997 nibble; in XMakeImageLSBFirst() local 6008 nibble=0; in XMakeImageLSBFirst() 6012 switch (nibble) in XMakeImageLSBFirst() 6017 nibble++; in XMakeImageLSBFirst() 6023 nibble++; in XMakeImageLSBFirst() 6029 nibble++; in XMakeImageLSBFirst() 6036 nibble=0; in XMakeImageLSBFirst() 6049 nibble; in XMakeImageLSBFirst() local 6060 nibble=0; in XMakeImageLSBFirst() 6064 switch (nibble) in XMakeImageLSBFirst() [all …]
|
/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/ImageMagick/coders/ |
D | icon.c | 1152 nibble, in WriteICONImage() local 1164 nibble=0; in WriteICONImage() 1170 nibble++; in WriteICONImage() 1171 if (nibble == 2) in WriteICONImage() 1174 nibble=0; in WriteICONImage() 1179 if (nibble != 0) in WriteICONImage()
|
D | bmp.c | 1775 nibble; in WriteBMPImage() local 1789 nibble=0; in WriteBMPImage() 1795 nibble++; in WriteBMPImage() 1796 if (nibble == 2) in WriteBMPImage() 1799 nibble=0; in WriteBMPImage() 1804 if (nibble != 0) in WriteBMPImage()
|
D | psd.c | 853 nibble; in ReadPSDChannelPixels() local 866 p=PushShortPixel(MSBEndian,p,&nibble); in ReadPSDChannelPixels() 867 pixel=ScaleShortToQuantum(nibble); in ReadPSDChannelPixels()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | AsmWriter.cpp | 768 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal() local 769 if (nibble < 10) in WriteConstantInternal() 770 Out << (unsigned char)(nibble + '0'); in WriteConstantInternal() 772 Out << (unsigned char)(nibble - 10 + 'A'); in WriteConstantInternal() 794 unsigned int nibble = (word>>shiftcount) & 15; in WriteConstantInternal() local 795 if (nibble < 10) in WriteConstantInternal() 796 Out << (unsigned char)(nibble + '0'); in WriteConstantInternal() 798 Out << (unsigned char)(nibble - 10 + 'A'); in WriteConstantInternal()
|
/external/valgrind/none/tests/ppc64/ |
D | ppc64_helpers.h | 1882 int nibble; in dissect_packed_decimal() local 1888 nibble=(dword1 >> (i)) & 0xf; in dissect_packed_decimal() 1889 printf(" %x", nibble); in dissect_packed_decimal() 1893 nibble=(dword0 >> (i)) & 0xf; in dissect_packed_decimal() 1894 printf(" %x", nibble); in dissect_packed_decimal()
|
/external/v8/src/ |
D | utils.h | 124 int nibble = 0; in MostSignificantBit() local 126 nibble += 16; in MostSignificantBit() 130 nibble += 8; in MostSignificantBit() 134 nibble += 4; in MostSignificantBit() 137 return nibble + msb4[x]; in MostSignificantBit()
|
/external/skqp/tools/bookmaker/ |
D | bookmaker.h | 692 int nibble = *reader++ - '0'; in EscapeParser() local 693 if (nibble > 9) { in EscapeParser() 694 nibble = (nibble & ~('a' - 'A')) - 'A' + '9' + 1; in EscapeParser() 696 unicode |= nibble; in EscapeParser()
|
/external/skia/tools/bookmaker/ |
D | bookmaker.h | 694 int nibble = *reader++ - '0'; in EscapeParser() local 695 if (nibble > 9) { in EscapeParser() 696 nibble = (nibble & ~('a' - 'A')) - 'A' + '9' + 1; in EscapeParser() 698 unicode |= nibble; in EscapeParser()
|
/external/libexif/m4m/ |
D | stdint.m4 | 479 /* (btw, those nibble-addressable systems are way off, or so we assume) */
|
/external/libmtp/m4/ |
D | stdint.m4 | 477 /* (btw, those nibble-addressable systems are way off, or so we assume) */
|
/external/nanopb-c/docs/ |
D | reference.rst | 201 The low-order nibble of the enumeration values defines the function that can be used for encoding a…
|
/external/skia/docs/ |
D | SkPixmap_Reference.bmh | 1344 The low nibble of the 16-bit word is Alpha.
|
/external/skqp/docs/ |
D | SkPixmap_Reference.bmh | 1381 The low nibble of the 16-bit word is Alpha.
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 4761 蝕>'[nibble away]';
|
/external/skia/site/user/api/ |
D | SkPixmap_Reference.md | 1489 The low nibble of the 16-bit word is <a href="undocumented#Alpha">Alpha</a>.</div></fiddle-embed></…
|
/external/skqp/site/user/api/ |
D | SkPixmap_Reference.md | 1522 The low nibble of the 16-bit word is <a href="#Alpha">Alpha</a>.</div></fiddle-embed></div>
|
/external/dnsmasq/ |
D | CHANGELOG.archive | 593 nibble and bitstring formats so it should work with any
|