Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 6 of 6) sorted by relevance

/system/core/libpixelflinger/
Dfixed.cpp112 GGLfixed bit = 0x800000; in gglSqrtx() local
115 GGLfixed temp = bit + (r<<1); in gglSqrtx()
119 r += bit; in gglSqrtx()
123 } while (bit>>=1); in gglSqrtx()
/system/extras/ext4_utils/
Dext2simg.c109 static int bitmap_get_bit(u8 *bitmap, u32 bit) in bitmap_get_bit() argument
111 if (bitmap[bit / 8] & 1 << (bit % 8)) in bitmap_get_bit()
Dallocate.c180 static int bitmap_set_bit(u8 *bitmap, u32 bit) in bitmap_set_bit() argument
182 if (bitmap[bit / 8] & 1 << (bit % 8)) in bitmap_set_bit()
185 bitmap[bit / 8] |= 1 << (bit % 8); in bitmap_set_bit()
189 static int bitmap_set_8_bits(u8 *bitmap, u32 bit) in bitmap_set_8_bits() argument
191 int ret = bitmap[bit / 8]; in bitmap_set_8_bits()
192 bitmap[bit / 8] = 0xFF; in bitmap_set_8_bits()
Dext4fixup.c324 static int bitmap_get_bit(u8 *bitmap, u32 bit) in bitmap_get_bit() argument
326 if (bitmap[bit / 8] & (1 << (bit % 8))) in bitmap_get_bit()
332 static void bitmap_clear_bit(u8 *bitmap, u32 bit) in bitmap_clear_bit() argument
334 bitmap[bit / 8] &= ~(1 << (bit % 8)); in bitmap_clear_bit()
/system/core/libcutils/
Dprivate.h149 Please use a compiler that supports a 64-bit integer type (or wider);
/system/core/adb/
Dprotocol.txt29 32 bit words which are sent across the wire in little endian format.