Searched refs:bit (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
H A Dtypedefs.h31 * Word8 8-bit signed minWord8, maxWord8
32 * UWord8 8-bit unsigned minUWord8, maxUWord8
33 * Word16 16-bit signed minWord16, maxWord16
34 * UWord16 16-bit unsigned minUWord16, maxUWord16
35 * Word32 32-bit signed minWord32, maxWord32
36 * UWord32 32-bit unsigned minUWord32, maxUWord32
80 ********* define 8 bit signed/unsigned types & constants
91 #error cannot find 8-bit type
96 ********* define 16 bit signed/unsigned types & constants
113 #error cannot find 16-bit typ
[all...]
/frameworks/base/libs/rs/
H A DrsUtils.h65 uint32_t bit = 0; local
67 bit++;
70 return bit;
H A DAndroid.mk71 # libRS needs libacc, which isn't 64-bit clean, and so can't be built
/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/graphics/jni/
H A DAndroid.mk2 # libRS needs libacc, which isn't 64-bit clean, and so can't be built
/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
/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/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/libs/utils/
H A DAndroid.mk71 # MacOS doesn't have lseek64. However, off_t is 64-bit anyway.
/frameworks/base/libs/ui/
H A DEventHub.cpp50 /* this macro is used to tell if "bit" is set in "array"
52 * operation with a byte that only has the relevant bit set.
53 * eg. to check for the 12th bit, we do (array[1] & 1<<4)
55 #define test_bit(bit, array) (array[bit/8] & (1<<(bit%8)))
57 /* this macro computes the number of bytes needed to represent a bit array of the specified size */

Completed in 173 milliseconds