HomeSort by relevance Sort by last modified time
    Searched refs:n_bits (Results 1 - 19 of 19) sorted by null

  /external/bison/lib/
bitset.c 39 bitset_bytes (enum bitset_type type, bitset_bindex n_bits)
52 bytes = abitset_bytes (n_bits);
56 bytes = lbitset_bytes (n_bits);
60 bytes = ebitset_bytes (n_bits);
64 bytes = vbitset_bytes (n_bits);
72 /* Initialise bitset BSET of TYPE for N_BITS. */
74 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
77 return bitset_stats_init (bset, n_bits, type);
85 return abitset_init (bset, n_bits);
88 return lbitset_init (bset, n_bits);
    [all...]
bitsetv.c 26 /* Create a vector of N_VECS bitsets, each of N_BITS, and of
29 bitsetv_alloc (bitset_bindex n_vecs, bitset_bindex n_bits,
38 bytes = bitset_bytes (type, n_bits);
53 bitset_init (bsetv[i], n_bits, type);
62 /* Create a vector of N_VECS bitsets, each of N_BITS, and with
65 bitsetv_create (bitset_bindex n_vecs, bitset_bindex n_bits, unsigned int attr)
69 type = bitset_type_choose (n_bits, attr);
70 return bitsetv_alloc (n_vecs, n_bits, type);
ebitset.c 123 ebitset_resize (bitset src, bitset_bindex n_bits)
128 if (n_bits == BITSET_NBITS_ (src))
129 return n_bits;
132 newsize = EBITSET_N_ELTS (n_bits);
174 BITSET_NBITS_ (src) = n_bits;
175 return n_bits;
569 bitset_bindex n_bits; local
585 n_bits = size * EBITSET_ELT_BITS;
588 if (rbitno >= n_bits)
593 bitno = n_bits - (rbitno + 1)
839 bitset_bindex n_bits; local
    [all...]
vbitset.c 56 vbitset_resize (bitset src, bitset_bindex n_bits)
61 if (n_bits == BITSET_NBITS_ (src))
62 return n_bits;
65 newsize = VBITSET_N_WORDS (n_bits);
110 BITSET_NBITS_ (src) = n_bits;
111 return n_bits;
175 bitset_bindex n_bits = BITSET_SIZE_ (src); local
182 if (rbitno >= n_bits)
187 bitno = n_bits - (rbitno + 1);
205 *next = n_bits - (bitoff + bitcnt)
    [all...]
abitset.c 152 bitset_bindex n_bits = BITSET_SIZE_ (src); local
159 if (rbitno >= n_bits)
164 bitno = n_bits - (rbitno + 1);
182 *next = n_bits - (bitoff + bitcnt);
193 *next = n_bits - (bitoff + 1);
785 abitset_bytes (bitset_bindex n_bits)
793 size = ABITSET_N_WORDS (n_bits);
809 abitset_init (bitset bset, bitset_bindex n_bits)
813 size = ABITSET_N_WORDS (n_bits);
814 BITSET_NBITS_ (bset) = n_bits;
    [all...]
bitset_stats.c 679 bitset_stats_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
691 BITSET_NBITS_ (bset) = n_bits;
701 bytes = abitset_bytes (n_bits);
703 abitset_init (sbset, n_bits);
707 bytes = lbitset_bytes (n_bits);
709 lbitset_init (sbset, n_bits);
713 bytes = ebitset_bytes (n_bits);
715 ebitset_init (sbset, n_bits);
719 bytes = vbitset_bytes (n_bits);
721 vbitset_init (sbset, n_bits);
    [all...]
lbitset.c 579 bitset_bindex n_bits; local
585 n_bits = (elt->index + LBITSET_ELT_WORDS) * BITSET_WORD_BITS;
588 if (rbitno >= n_bits)
591 bitno = n_bits - (rbitno + 1);
638 *next = n_bits - (boffset + bcount);
654 *next = n_bits - (boffset + 1);
886 bitset_bindex n_bits; local
888 n_bits = BITSET_SIZE_ (dst);
889 last_bit = n_bits % LBITSET_ELT_BITS;
899 windex = n_bits / BITSET_WORD_BITS
    [all...]
bbitset.h 91 bitset_bindex n_bits; /* Number of bits. */ member in struct:bbitset_struct
108 #define BITSET_NBITS_(SRC) (SRC)->b.n_bits
  /external/bluetooth/glib/tests/
bit-test.c 84 register guint n_bits = 0; local
88 n_bits++;
92 return n_bits;
  /external/jpeg/
wrgif.c 53 int n_bits; /* current number of bits/code */ member in struct:__anon7625
54 int maxcode; /* maximum code, given n_bits */
72 #define MAXCODE(n_bits) ((1 << (n_bits)) - 1)
106 /* Emit a code of n_bits bits */
110 dinfo->cur_bits += dinfo->n_bits;
147 dinfo->n_bits = i_bits;
148 dinfo->maxcode = MAXCODE(dinfo->n_bits);
164 * The given value must be less than n_bits wide.
  /external/qemu/distrib/jpeg-6b/
wrgif.c 53 int n_bits; /* current number of bits/code */ member in struct:__anon10677
54 int maxcode; /* maximum code, given n_bits */
72 #define MAXCODE(n_bits) ((1 << (n_bits)) - 1)
106 /* Emit a code of n_bits bits */
110 dinfo->cur_bits += dinfo->n_bits;
147 dinfo->n_bits = i_bits;
148 dinfo->maxcode = MAXCODE(dinfo->n_bits);
164 * The given value must be less than n_bits wide.
  /external/dbus/dbus/
dbus-sha.c 560 int n_bits; local
596 n_bits = 0;
614 total_bits = n_bits + val;
615 while (n_bits < total_bits)
617 int byte_containing_next_bit = n_bits / 8;
618 int bit_containing_next_bit = 7 - (n_bits % 8);
638 ++n_bits;
646 length_bytes = (n_bits / 8 + ((n_bits % 8) ? 1 : 0));
651 length_bytes, n_bits, _dbus_string_get_length (decoded))
    [all...]
  /external/bluetooth/glib/glib/
gutils.h 357 register guint n_bits = 0;
361 n_bits++;
365 return n_bits;
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
sbitmap.h 42 unsigned int n_bits; /* Number of bits. */ member in struct:simple_bitmap_def
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
sbitmap.h 42 unsigned int n_bits; /* Number of bits. */ member in struct:simple_bitmap_def
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
sbitmap.h 42 unsigned int n_bits; /* Number of bits. */ member in struct:simple_bitmap_def
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
sbitmap.h 42 unsigned int n_bits; /* Number of bits. */ member in struct:simple_bitmap_def
  /external/valgrind/main/coregrind/m_gdbserver/
m_gdbserver.c 1295 Int n_bits = VG_(strlen) (ws) - 2; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 1946 Int n_bits; local
    [all...]

Completed in 606 milliseconds