Searched defs:cbits (Results 1 - 3 of 3) sorted by relevance

/external/flac/libFLAC/
H A Dbitreader.c819 register unsigned cbits; local
831 cbits = br->consumed_bits;
839 brword b = br->buffer[cwords] << cbits;
854 cbits += i;
855 if(cbits == FLAC__BITS_PER_WORD) {
858 cbits = 0;
863 uval += FLAC__BITS_PER_WORD - cbits;
866 cbits = 0;
879 brword b = (br->buffer[cwords] & (FLAC__WORD_ALL_ONES << (FLAC__BITS_PER_WORD-end))) << cbits;
885 cbits
[all...]
/external/pcre/
H A Dpcre_compile.c3402 register const uschar *cbits = cd->cbits; local
3457 memcpy(pbits, cbits + posix_class_maps[posix_class],
3468 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset];
3470 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset];
3520 register const uschar *cbits = cd->cbits; local
3538 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit];
3543 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit];
3547 for (c = 0; c < 32; c++) classbits[c] |= cbits[
[all...]
H A Dpcre_internal.h1640 const uschar *cbits; /* Points to character type table */ member in struct:compile_data
1781 #define cbit_length 320 /* Length of the cbits table */

Completed in 163 milliseconds