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

/frameworks/base/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/base/libs/rs/
H A DrsUtils.h65 uint32_t bit = 0; local
67 bit++;
70 return bit;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccUtils.java121 * - the SMS default 7 bit coded alphabet as defined in
122 * TS 23.038 [12] with bit 8 set to 0. The alpha identifier
128 * remaining octets are 16 bit UCS2 characters ...
132 * 8 bit number which defines bits 15 to 8 of a 16 bit
133 * base pointer, where bit 16 is set to zero and bits 7 to 1
138 * If bit 8 of the octet is set to zero, the remaining 7 bits
140 * whereas if bit 8 of the octet is set to one, then the
142 * 16 bit base pointer defined earlier...
146 * contain a 16 bit numbe
376 bitToRGB(int bit) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
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/base/core/java/android/os/
H A DStrictMode.java134 * Note, a "VM_" bit, not thread.
341 private Builder enable(int bit) { argument
342 mMask |= bit;
346 private Builder disable(int bit) { argument
347 mMask &= ~bit;
465 private Builder enable(int bit) { argument
466 mMask |= bit;
886 // only the bit violated and penalty bits to be executed
1002 // only the bit violated and penalty bits to be executed

Completed in 152 milliseconds