OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:start_bit
(Results
1 - 5
of
5
) sorted by null
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
bitmap.h
220
/* Initialize a single bitmap iterator.
START_BIT
is the first bit to
225
unsigned
start_bit
, unsigned *bit_no)
230
/* Advance elt1 until it is not before the block containing
start_bit
. */
239
if (bi->elt1->indx >=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
245
if (bi->elt1->indx !=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
246
start_bit
= bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
248
/* Initialize for what is now
start_bit
. */
249
bi->word_no =
start_bit
/ BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
251
bi->bits >>=
start_bit
% BITMAP_WORD_BITS;
257
start_bit
+= !bi->bits
[
all
...]
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
bitmap.h
220
/* Initialize a single bitmap iterator.
START_BIT
is the first bit to
225
unsigned
start_bit
, unsigned *bit_no)
230
/* Advance elt1 until it is not before the block containing
start_bit
. */
239
if (bi->elt1->indx >=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
245
if (bi->elt1->indx !=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
246
start_bit
= bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
248
/* Initialize for what is now
start_bit
. */
249
bi->word_no =
start_bit
/ BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
251
bi->bits >>=
start_bit
% BITMAP_WORD_BITS;
257
start_bit
+= !bi->bits
[
all
...]
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
bitmap.h
220
/* Initialize a single bitmap iterator.
START_BIT
is the first bit to
225
unsigned
start_bit
, unsigned *bit_no)
230
/* Advance elt1 until it is not before the block containing
start_bit
. */
239
if (bi->elt1->indx >=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
245
if (bi->elt1->indx !=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
246
start_bit
= bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
248
/* Initialize for what is now
start_bit
. */
249
bi->word_no =
start_bit
/ BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
251
bi->bits >>=
start_bit
% BITMAP_WORD_BITS;
257
start_bit
+= !bi->bits
[
all
...]
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
bitmap.h
220
/* Initialize a single bitmap iterator.
START_BIT
is the first bit to
225
unsigned
start_bit
, unsigned *bit_no)
230
/* Advance elt1 until it is not before the block containing
start_bit
. */
239
if (bi->elt1->indx >=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
245
if (bi->elt1->indx !=
start_bit
/ BITMAP_ELEMENT_ALL_BITS)
246
start_bit
= bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
248
/* Initialize for what is now
start_bit
. */
249
bi->word_no =
start_bit
/ BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
251
bi->bits >>=
start_bit
% BITMAP_WORD_BITS;
257
start_bit
+= !bi->bits
[
all
...]
/external/e2fsprogs/lib/ext2fs/
gen_bitmap.c
360
unsigned int
start_bit
, len_bit = len % 8;
local
370
start_bit
= start % 8;
372
if (
start_bit
!= 0) {
377
mark_count = 8 -
start_bit
;
378
if (len < 8 -
start_bit
) {
380
mark_bit = len +
start_bit
- 1;
393
else if (len <= 8 -
start_bit
)
Completed in 925 milliseconds