/frameworks/rs/scriptc/ |
D | rs_types.rsh | 22 * 8 bit: char, int8_t 23 * 16 bit: short, int16_t 24 * 32 bit: int, in32_t 25 * 64 bit: long, long long, int64_t 28 * 8 bit: uchar, uint8_t 29 * 16 bit: ushort, uint16_t 30 * 32 bit: uint, uint32_t 31 * 64 bit: ulong, uint64_t 34 * 32 bit: float 35 * 64 bit: double [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | IccServiceTable.java | 50 int bit = service % 8; in isAvailable() local 51 return (mServiceTable[offset] & (1 << bit)) != 0; in isAvailable() 64 for (int bit = 0; bit < 8; bit++) { in toString() 65 if ((currentByte & (1 << bit)) != 0) { in toString() 71 int ordinal = (i * 8) + bit; in toString()
|
D | IccUtils.java | 415 private static int bitToRGB(int bit){ in bitToRGB() argument 416 if(bit == 1){ in bitToRGB()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonRelocationFunctions.h | 25 for (size_t bit = 0; bit != sizeof (T1) * 8; ++bit) { in ApplyMask() local 27 const bool maskBit = (pMask >> bit) & 1; in ApplyMask() 29 result |= static_cast<T1>(valBit) << bit; in ApplyMask()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
D | h264bsd_cavlc.c | 758 u32 levelSuffix, zerosLeft, bit; in h264bsdDecodeResidualBlockCavlc() local 778 BUFFER_SHOW(bufferValue, bufferBits, bit, 16); in h264bsdDecodeResidualBlockCavlc() 780 tmp = DecodeCoeffToken(bit, (u32)nc); in h264bsdDecodeResidualBlockCavlc() 796 BUFFER_GET(bufferValue, bufferBits, bit, trailingOnes); in h264bsdDecodeResidualBlockCavlc() 800 level[i] = bit & tmp ? -1 : 1; in h264bsdDecodeResidualBlockCavlc() 813 BUFFER_SHOW(bufferValue, bufferBits, bit, 16); in h264bsdDecodeResidualBlockCavlc() 814 levelPrefix = DecodeLevelPrefix(bit); in h264bsdDecodeResidualBlockCavlc() 864 BUFFER_SHOW(bufferValue, bufferBits, bit,9); in h264bsdDecodeResidualBlockCavlc() 865 zerosLeft = DecodeTotalZeros(bit, totalCoeff, in h264bsdDecodeResidualBlockCavlc() 879 BUFFER_SHOW(bufferValue, bufferBits, bit,11); in h264bsdDecodeResidualBlockCavlc() [all …]
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
D | Grain.java | 44 int bit = 0; in findHighBit() local 46 bit++; in findHighBit() 49 return bit; in findHighBit()
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
D | Grain.java | 49 int bit = 0; in findHighBit() local 51 bit++; in findHighBit() 54 return bit; in findHighBit()
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
D | Grain.java | 49 int bit = 0; in findHighBit() local 51 bit++; in findHighBit() 54 return bit; in findHighBit()
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
D | typedefs.h | 91 #error cannot find 8-bit type 113 #error cannot find 16-bit type 135 #error cannot find 32-bit type
|
D | qpisf_2s.tab | 1017 /* 36 bit */ 1020 * 1st stage is kept the same as the 46 bit quantizer *
|
D | mime_io.tab | 362 /* pointer table for bit sorting tables */
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
D | bits.c | 193 Word16 i, bit; in Parm_serial() local 197 bit = (Word16) (value & 0x0001); /* get lsb */ in Parm_serial() 198 if (bit == 0) in Parm_serial()
|
/frameworks/wilhelm/src/ |
D | locks.c | 195 unsigned bit = ctz(attributes); in object_unlock_exclusive_attributes_() local 197 assert(ATTR_INDEX_MAX > bit); in object_unlock_exclusive_attributes_() 199 AttributeHandler handler = handlerTable[index][bit]; in object_unlock_exclusive_attributes_() 203 attributes &= ~(1 << bit); in object_unlock_exclusive_attributes_()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
D | omxVCM4P2_DecodePadMV_PVOP_s.s | 25 ; * the bit stream buffer 26 ; * [in] pBitOffset pointer to the bit position in the byte pointed 39 ; * bit stream syntax 45 ; * so that it points to the current byte in the bit 48 ; * current bit position in the byte pointed by
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/ |
D | omxVCM4P2_DecodePadMV_PVOP_s.s | 25 ; * the bit stream buffer 26 ; * [in] pBitOffset pointer to the bit position in the byte pointed 39 ; * bit stream syntax 45 ; * so that it points to the current byte in the bit 48 ; * current bit position in the byte pointed by
|
/frameworks/compile/slang/tests/F_struct_bitfield/ |
D | stderr.txt.expect | 1 struct_bitfield.rs:5:9: error: bit fields are not able to be exported: 's.x'
|
/frameworks/rs/ |
D | rsCppUtils.h | 217 uint32_t bit = 0; in rsFindHighBit() local 219 bit++; in rsFindHighBit() 222 return bit; in rsFindHighBit()
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | DiagAttribute.inc | 10 …_format, DiagnosticEngine::Warning, "conflicting 16-bit FP number format in %0", "conflicting 16-b…
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | IconLoader.java | 268 private static int bitToBnW(int bit){ in bitToBnW() argument 269 if(bit == 1){ in bitToBnW()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | IccUtils.java | 415 private static int bitToRGB(int bit){ in bitToRGB() argument 416 if(bit == 1){ in bitToRGB()
|
/frameworks/compile/slang/ |
D | RSCCOptions.td | 63 def m32 : Flag<["-"], "m32">, HelpText<"Emit 32-bit C++ code">; 64 def m64 : Flag<["-"], "m64">, HelpText<"Emit 64-bit C++ code">;
|
/frameworks/base/core/java/android/os/ |
D | StrictMode.java | 503 private Builder enable(int bit) { in enable() argument 504 mMask |= bit; in enable() 508 private Builder disable(int bit) { in disable() argument 509 mMask &= ~bit; in disable() 714 private Builder enable(int bit) { in enable() argument 715 mMask |= bit; in enable()
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_recordable.txt | 96 1. Should this functionality be exposed as a new attribute or as a bit in 100 bit in the limit-size bitfield for a platform-specific extension.
|
/frameworks/base/docs/html/training/graphics/opengl/ |
D | draw.jd | 37 with the OpenGL ES 2.0 takes a bit more code than you might imagine, because the API provides a 187 friends. Secondly, the triangle is a bit squashed and changes shape when you change the screen 193 <p>Lastly, the triangle is stationary, which is a bit boring. In the <a href="motion.html">Adding
|
/frameworks/base/docs/html/sdk/ |
D | index.jd | 224 <input id="32" onclick="onAgreeChecked()" type="radio" name="bit" value="32"> 225 <label for="32">32-bit</label> 226 <input id="64" onclick="onAgreeChecked()" type="radio" name="bit" value="64"> 227 <label for="64">64-bit</label> 354 <li>Windows XP (32-bit), Vista (32- or 64-bit), or Windows 7 (32- or 64-bit)</li> 358 <li>64-bit distribution capable of running 32-bit applications</li>
|