Searched defs:bit (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dbits.c20 Description: Performs bit stream manipulation
36 Word16 coding_mode, /* i: coding bit-stream ratio mode */
37 Word16 mode, /* i: coding bit-stream ratio mode*/
193 Word16 i, bit; local
197 bit = (Word16) (value & 0x0001); /* get lsb */
198 if (bit == 0)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccUtils.java149 * - the SMS default 7 bit coded alphabet as defined in
150 * TS 23.038 [12] with bit 8 set to 0. The alpha identifier
156 * remaining octets are 16 bit UCS2 characters ...
160 * 8 bit number which defines bits 15 to 8 of a 16 bit
161 * base pointer, where bit 16 is set to zero and bits 7 to 1
166 * If bit 8 of the octet is set to zero, the remaining 7 bits
168 * whereas if bit 8 of the octet is set to one, then the
170 * 16 bit base pointer defined earlier...
174 * contain a 16 bit numbe
417 bitToRGB(int bit) argument
[all...]
/frameworks/rs/
H A DrsUtils.h65 uint32_t bit = 0; local
67 bit++;
70 return bit;
/frameworks/support/renderscript/v8/rs_support/
H A DrsUtils.h65 uint32_t bit = 0; local
67 bit++;
70 return bit;
/frameworks/wilhelm/src/
H A Dlocks.c144 /** \brief Exclusively unlock an object and report updates to the specified bit-mask of
181 unsigned bit = ctz(attributes); local
182 // ATTR_INDEX_MAX == next bit position after the last attribute
183 assert(ATTR_INDEX_MAX > bit);
184 // compute the entry in the handler table using object ID and bit number
185 AttributeHandler handler = handlerTable[index][bit];
189 attributes &= ~(1 << bit);
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp345 uint32_t bit; local
348 bit = mCodecQuirks.size();
350 if (bit == 32) {
355 mCodecQuirks.add(name, bit);
357 bit = mCodecQuirks.valueAt(index);
361 info->mQuirks |= 1ul << bit;
394 uint32_t bit; local
397 bit = mTypes.size();
399 if (bit == 32) {
404 mTypes.add(name, bit);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DIconLoader.java263 * Decode one bit to a black and white color:
266 * @param bit to decode
269 private static int bitToBnW(int bit){ argument
270 if(bit == 1){
326 * Calculate bit mask for a given number of bits. The mask should enable to
329 * @return bit mask
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_cavlc.c173 /* fixed 6 bit length VLC, nC <= 8 */
741 coeffMap on bits [16,31] if successful, this is bit map
742 where each bit indicates if the corresponding
758 u32 levelSuffix, zerosLeft, bit; local
778 BUFFER_SHOW(bufferValue, bufferBits, bit, 16);
780 tmp = DecodeCoeffToken(bit, (u32)nc);
796 BUFFER_GET(bufferValue, bufferBits, bit, trailingOnes);
800 level[i] = bit & tmp ? -1 : 1;
813 BUFFER_SHOW(bufferValue, bufferBits, bit, 16);
814 levelPrefix = DecodeLevelPrefix(bit);
[all...]
/frameworks/base/core/java/android/os/
H A DStrictMode.java179 * Note, a "VM_" bit, not thread.
185 * Note, a "VM_" bit, not thread.
191 * Note, a "VM_" bit, not thread.
494 private Builder enable(int bit) { argument
495 mMask |= bit;
499 private Builder disable(int bit) { argument
500 mMask &= ~bit;
694 private Builder enable(int bit) { argument
695 mMask |= bit;
1160 // bit i
[all...]

Completed in 256 milliseconds