HomeSort by relevance Sort by last modified time
    Searched full:bits_per_char (Results 1 - 15 of 15) sorted by null

  /external/speex/libspeex/
bits.c 149 int nchars = ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR);
161 if (((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR)+nchars > bits->buf_size)
203 if (max_nchars > ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR))
204 max_nchars = ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR);
225 bits->nbBits &= (BITS_PER_CHAR-1);
258 bits->chars[bits->charPtr] |= bit<<(BITS_PER_CHAR-1-bits->bitPtr);
261 if (bits->bitPtr==BITS_PER_CHAR)
293 d |= (bits->chars[bits->charPtr]>>(BITS_PER_CHAR-1 - bits->bitPtr))&1;
295 if (bits->bitPtr==BITS_PER_CHAR)
322 d |= (chars[charPtr]>>(BITS_PER_CHAR-1 - bitPtr))&1
    [all...]
arch.h 222 #define BITS_PER_CHAR 16
228 #define BITS_PER_CHAR 8
  /external/e2fsprogs/lib/et/
et_name.c 37 ch = (int)((num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1));
error_table.h 24 #define BITS_PER_CHAR 6 /* # bits to shift per character in name */
  /toolchain/binutils/binutils-2.25/gas/
bignum.h 38 #ifndef BITS_PER_CHAR
39 #define BITS_PER_CHAR (8)
read.c 66 #if BITS_PER_CHAR != 8
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-pdp11.c 297 return (con[1] << BITS_PER_CHAR) | con[0];
300 (((con[1] << BITS_PER_CHAR) | con[0]) << (2 * BITS_PER_CHAR))
301 |((con[3] << BITS_PER_CHAR) | con[2]);
atof-vax.c 347 #if (sizeof(carry)) < ((sizeof(bits[0]) * BITS_PER_CHAR) + 2)
tc-cr16.c 143 unsigned int bits_available = BITS_PER_CHAR * nbytes;
179 (unsigned int)(BITS_PER_CHAR * nbytes))
181 as_warn (_("field width %lu too big to fit in %d bytes: truncated to %d bits"), width, nbytes, (BITS_PER_CHAR * nbytes));
182 width = BITS_PER_CHAR * nbytes;
210 << ((BITS_PER_CHAR * nbytes) - bits_available));
    [all...]
atof-ieee.c 628 /* #if (sizeof(carry)) < ((sizeof(bits[0]) * BITS_PER_CHAR) + 2)
tc-vax.c 312 retval <<= BITS_PER_CHAR;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 1657 int bits_per_char; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 1671 int bits_per_char; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
longobject.c 1657 int bits_per_char; local
    [all...]
  /external/python/cpython2/Objects/
longobject.c 1659 int bits_per_char; local
    [all...]

Completed in 1682 milliseconds