HomeSort by: relevance | last modified time | path
    Searched defs:bit (Results 1 - 25 of 499) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/binutils/dist/libiberty/
ffs.c 1 /* ffs -- Find the first bit set in the parameter
5 Find the first (least significant) bit set in @var{valu}. Bits are
6 numbered from right to left, starting with bit 1 (corresponding to the
16 register int bit; local
21 for (bit = 1; !(valu & 1); bit++)
24 return bit;
  /src/external/gpl3/binutils.old/dist/libiberty/
ffs.c 1 /* ffs -- Find the first bit set in the parameter
5 Find the first (least significant) bit set in @var{valu}. Bits are
6 numbered from right to left, starting with bit 1 (corresponding to the
16 register int bit; local
21 for (bit = 1; !(valu & 1); bit++)
24 return bit;
  /src/external/gpl3/gcc/dist/libiberty/
ffs.c 1 /* ffs -- Find the first bit set in the parameter
5 Find the first (least significant) bit set in @var{valu}. Bits are
6 numbered from right to left, starting with bit 1 (corresponding to the
16 register int bit; local
21 for (bit = 1; !(valu & 1); bit++)
24 return bit;
  /src/external/gpl3/gcc.old/dist/libiberty/
ffs.c 1 /* ffs -- Find the first bit set in the parameter
5 Find the first (least significant) bit set in @var{valu}. Bits are
6 numbered from right to left, starting with bit 1 (corresponding to the
16 register int bit; local
21 for (bit = 1; !(valu & 1); bit++)
24 return bit;
  /src/external/gpl3/gdb/dist/libiberty/
ffs.c 1 /* ffs -- Find the first bit set in the parameter
5 Find the first (least significant) bit set in @var{valu}. Bits are
6 numbered from right to left, starting with bit 1 (corresponding to the
16 register int bit; local
21 for (bit = 1; !(valu & 1); bit++)
24 return bit;
  /src/external/gpl3/gdb.old/dist/libiberty/
ffs.c 1 /* ffs -- Find the first bit set in the parameter
5 Find the first (least significant) bit set in @var{valu}. Bits are
6 numbered from right to left, starting with bit 1 (corresponding to the
16 register int bit; local
21 for (bit = 1; !(valu & 1); bit++)
24 return bit;
  /src/external/gpl3/gcc/dist/libgcc/config/lm32/
_udivmodsi4.c 32 USItype bit = 1; local
35 while (den < num && bit && !(den & (1L << 31)))
38 bit <<= 1;
40 while (bit)
45 res |= bit;
47 bit >>= 1;
  /src/external/gpl3/gcc/dist/libgcc/config/msp430/
mpy.c 7 char bit; local
17 for (bit = 0; y && bit < sizeof (y) * 8; bit ++)
msp430-divmod.h 35 UINT_TYPE bit = 1; local
38 while (den < num && bit && !(den & (1L << BITS_MINUS_1)))
41 bit <<= 1;
43 while (bit)
48 res |= bit;
50 bit >>= 1;
msp430-mul.h 32 char bit; local
34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
  /src/external/gpl3/gcc/dist/libgcc/config/pru/
pru-divmod.h 35 UINT_TYPE bit = 1; local
38 while (den < num && bit && !(den & (1L << BITS_MINUS_1)))
41 bit <<= 1;
43 while (bit)
48 res |= bit;
50 bit >>= 1;
  /src/external/gpl3/gcc/dist/libgcc/config/rl78/
rl78-divmod.h 35 UINT_TYPE bit = 1; local
38 while (den < num && bit && !(den & (1L << BITS_MINUS_1)))
41 bit <<= 1;
43 while (bit)
48 res |= bit;
50 bit >>= 1;
rl78-mul.h 32 char bit; local
34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
  /src/external/gpl3/gcc/dist/libgcc/
udivmodhi4.c 27 unsigned short bit = 1; local
30 while (den < num && bit && !(den & (1U<<15)))
33 bit <<=1;
35 while (bit)
40 res |= bit;
42 bit >>=1;
udivmodsi4.c 27 unsigned long bit = 1; local
30 while (den < num && bit && !(den & (1L<<31)))
33 bit <<=1;
35 while (bit)
40 res |= bit;
42 bit >>=1;
  /src/external/gpl3/gcc.old/dist/libgcc/config/lm32/
_udivmodsi4.c 32 USItype bit = 1; local
35 while (den < num && bit && !(den & (1L << 31)))
38 bit <<= 1;
40 while (bit)
45 res |= bit;
47 bit >>= 1;
  /src/external/gpl3/gcc.old/dist/libgcc/config/msp430/
mpy.c 7 char bit; local
17 for (bit = 0; y && bit < sizeof (y) * 8; bit ++)
msp430-divmod.h 35 UINT_TYPE bit = 1; local
38 while (den < num && bit && !(den & (1L << BITS_MINUS_1)))
41 bit <<= 1;
43 while (bit)
48 res |= bit;
50 bit >>= 1;
msp430-mul.h 32 char bit; local
34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
  /src/external/gpl3/gcc.old/dist/libgcc/config/pru/
pru-divmod.h 35 UINT_TYPE bit = 1; local
38 while (den < num && bit && !(den & (1L << BITS_MINUS_1)))
41 bit <<= 1;
43 while (bit)
48 res |= bit;
50 bit >>= 1;
  /src/external/gpl3/gcc.old/dist/libgcc/config/rl78/
rl78-divmod.h 35 UINT_TYPE bit = 1; local
38 while (den < num && bit && !(den & (1L << BITS_MINUS_1)))
41 bit <<= 1;
43 while (bit)
48 res |= bit;
50 bit >>= 1;
rl78-mul.h 32 char bit; local
34 for (bit=0; b && bit<sizeof(UINT_TYPE)*8; bit++)
  /src/external/gpl3/gcc.old/dist/libgcc/
udivmodhi4.c 27 unsigned short bit = 1; local
30 while (den < num && bit && !(den & (1U<<15)))
33 bit <<=1;
35 while (bit)
40 res |= bit;
42 bit >>=1;
udivmodsi4.c 27 unsigned long bit = 1; local
30 while (den < num && bit && !(den & (1L<<31)))
33 bit <<=1;
35 while (bit)
40 res |= bit;
42 bit >>=1;
  /src/external/mit/libcbor/dist/src/cbor/internal/
memory_utils.c 14 /** Highest on bit position */
16 size_t bit = 0; local
18 bit++;
22 return bit;

Completed in 64 milliseconds

1 2 3 4 5 6 7 8 91011>>