/external/bison/lib/ |
D | bitset.c | 39 bitset_bytes (enum bitset_type type, bitset_bindex n_bits) in bitset_bytes() argument 52 bytes = abitset_bytes (n_bits); in bitset_bytes() 56 bytes = lbitset_bytes (n_bits); in bitset_bytes() 60 bytes = ebitset_bytes (n_bits); in bitset_bytes() 64 bytes = vbitset_bytes (n_bits); in bitset_bytes() 74 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type) in bitset_init() argument 77 return bitset_stats_init (bset, n_bits, type); in bitset_init() 85 return abitset_init (bset, n_bits); in bitset_init() 88 return lbitset_init (bset, n_bits); in bitset_init() 91 return ebitset_init (bset, n_bits); in bitset_init() [all …]
|
D | bitsetv.c | 29 bitsetv_alloc (bitset_bindex n_vecs, bitset_bindex n_bits, in bitsetv_alloc() argument 38 bytes = bitset_bytes (type, n_bits); in bitsetv_alloc() 53 bitset_init (bsetv[i], n_bits, type); in bitsetv_alloc() 65 bitsetv_create (bitset_bindex n_vecs, bitset_bindex n_bits, unsigned int attr) in bitsetv_create() argument 69 type = bitset_type_choose (n_bits, attr); in bitsetv_create() 70 return bitsetv_alloc (n_vecs, n_bits, type); in bitsetv_create()
|
D | ebitset.c | 123 ebitset_resize (bitset src, bitset_bindex n_bits) in ebitset_resize() argument 128 if (n_bits == BITSET_NBITS_ (src)) in ebitset_resize() 129 return n_bits; in ebitset_resize() 132 newsize = EBITSET_N_ELTS (n_bits); in ebitset_resize() 174 BITSET_NBITS_ (src) = n_bits; in ebitset_resize() 175 return n_bits; in ebitset_resize() 569 bitset_bindex n_bits; in ebitset_list_reverse() local 585 n_bits = size * EBITSET_ELT_BITS; in ebitset_list_reverse() 588 if (rbitno >= n_bits) in ebitset_list_reverse() 593 bitno = n_bits - (rbitno + 1); in ebitset_list_reverse() [all …]
|
D | vbitset.c | 56 vbitset_resize (bitset src, bitset_bindex n_bits) in vbitset_resize() argument 61 if (n_bits == BITSET_NBITS_ (src)) in vbitset_resize() 62 return n_bits; in vbitset_resize() 65 newsize = VBITSET_N_WORDS (n_bits); in vbitset_resize() 110 BITSET_NBITS_ (src) = n_bits; in vbitset_resize() 111 return n_bits; in vbitset_resize() 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 …]
|
D | bitset_stats.c | 677 bitset_stats_init (bitset bset, bitset_bindex n_bits, enum bitset_type type) in bitset_stats_init() argument 689 BITSET_NBITS_ (bset) = n_bits; in bitset_stats_init() 699 bytes = abitset_bytes (n_bits); in bitset_stats_init() 701 abitset_init (sbset, n_bits); in bitset_stats_init() 705 bytes = lbitset_bytes (n_bits); in bitset_stats_init() 707 lbitset_init (sbset, n_bits); in bitset_stats_init() 711 bytes = ebitset_bytes (n_bits); in bitset_stats_init() 713 ebitset_init (sbset, n_bits); in bitset_stats_init() 717 bytes = vbitset_bytes (n_bits); in bitset_stats_init() 719 vbitset_init (sbset, n_bits); in bitset_stats_init()
|
D | abitset.c | 152 bitset_bindex n_bits = BITSET_SIZE_ (src); in abitset_list_reverse() local 159 if (rbitno >= n_bits) in abitset_list_reverse() 164 bitno = n_bits - (rbitno + 1); in abitset_list_reverse() 182 *next = n_bits - (bitoff + bitcnt); in abitset_list_reverse() 193 *next = n_bits - (bitoff + 1); in abitset_list_reverse() 785 abitset_bytes (bitset_bindex n_bits) in abitset_bytes() argument 793 size = ABITSET_N_WORDS (n_bits); in abitset_bytes() 809 abitset_init (bitset bset, bitset_bindex n_bits) in abitset_init() argument 813 size = ABITSET_N_WORDS (n_bits); in abitset_init() 814 BITSET_NBITS_ (bset) = n_bits; in abitset_init()
|
D | lbitset.c | 580 bitset_bindex n_bits; in lbitset_list_reverse() local 586 n_bits = (elt->index + LBITSET_ELT_WORDS) * BITSET_WORD_BITS; in lbitset_list_reverse() 589 if (rbitno >= n_bits) in lbitset_list_reverse() 592 bitno = n_bits - (rbitno + 1); in lbitset_list_reverse() 639 *next = n_bits - (boffset + bcount); in lbitset_list_reverse() 655 *next = n_bits - (boffset + 1); in lbitset_list_reverse() 887 bitset_bindex n_bits; in lbitset_unused_clear() local 889 n_bits = BITSET_SIZE_ (dst); in lbitset_unused_clear() 890 last_bit = n_bits % LBITSET_ELT_BITS; in lbitset_unused_clear() 900 windex = n_bits / BITSET_WORD_BITS; in lbitset_unused_clear() [all …]
|
D | bbitset.h | 93 bitset_bindex n_bits; /* Number of bits. */ member 110 #define BITSET_NBITS_(SRC) (SRC)->b.n_bits
|
/external/webp/src/utils/ |
D | bit_writer.c | 237 void VP8LWriteBits(VP8LBitWriter* const bw, int n_bits, uint32_t bits) { in VP8LWriteBits() argument 238 if (n_bits < 1) return; in VP8LWriteBits() 247 bw->bit_pos_ += n_bits; in VP8LWriteBits() 253 const int bits_left_to_write = n_bits - 8 + bits_reserved_in_first_byte; in VP8LWriteBits() 265 assert(n_bits <= 25); in VP8LWriteBits() 267 bw->bit_pos_ += n_bits; in VP8LWriteBits()
|
D | bit_reader.c | 186 uint32_t VP8LReadBits(VP8LBitReader* const br, int n_bits) { in VP8LReadBits() argument 187 assert(n_bits >= 0); in VP8LReadBits() 189 if (!br->eos_ && n_bits < MAX_NUM_BIT_READ) { in VP8LReadBits() 191 (uint32_t)(br->val_ >> br->bit_pos_) & kBitMask[n_bits]; in VP8LReadBits() 192 const int new_bits = br->bit_pos_ + n_bits; in VP8LReadBits()
|
D | bit_writer.h | 115 void VP8LWriteBits(VP8LBitWriter* const bw, int n_bits, uint32_t bits);
|
D | bit_reader.h | 284 uint32_t VP8LReadBits(VP8LBitReader* const br, int n_bits);
|
/external/jpeg/ |
D | wrgif.c | 53 int n_bits; /* current number of bits/code */ member 72 #define MAXCODE(n_bits) ((1 << (n_bits)) - 1) argument 110 dinfo->cur_bits += dinfo->n_bits; in output() 147 dinfo->n_bits = i_bits; in compress_init() 148 dinfo->maxcode = MAXCODE(dinfo->n_bits); in compress_init()
|
/external/qemu/distrib/jpeg-6b/ |
D | wrgif.c | 53 int n_bits; /* current number of bits/code */ member 72 #define MAXCODE(n_bits) ((1 << (n_bits)) - 1) argument 110 dinfo->cur_bits += dinfo->n_bits; in output() 147 dinfo->n_bits = i_bits; in compress_init() 148 dinfo->maxcode = MAXCODE(dinfo->n_bits); in compress_init()
|
/external/harfbuzz_ng/src/ |
D | hb-private.hh | 233 register unsigned int n_bits = 0; in _hb_bit_storage() 235 n_bits++; in _hb_bit_storage() 238 return n_bits; in _hb_bit_storage() 249 register unsigned int n_bits = 0; in _hb_ctz() 252 n_bits++; in _hb_ctz() 255 return n_bits; in _hb_ctz()
|
/external/webp/src/enc/ |
D | vp8l.c | 449 int bits, n_bits; in StoreImageToBitMask() local 452 PrefixEncode(v->len, &code, &n_bits, &bits); in StoreImageToBitMask() 454 VP8LWriteBits(bw, n_bits, bits); in StoreImageToBitMask() 457 PrefixEncode(distance, &code, &n_bits, &bits); in StoreImageToBitMask() 459 VP8LWriteBits(bw, n_bits, bits); in StoreImageToBitMask()
|
/external/valgrind/main/coregrind/m_gdbserver/ |
D | m_gdbserver.c | 1363 Int n_bits = VG_(strlen) (ws) - 2; in VG_() local 1366 for (j = 0; j < n_bits; j++) { in VG_() 1368 else if ('1' == parsews[j+2]) *szB |= (1 << (n_bits-j-1)); in VG_()
|
/external/bison/ |
D | ChangeLog-2012 | 15866 * lib/abitset.c (struct abitset_struct.n_bits, abitset_small_list,
|