Home
last modified time | relevance | path

Searched refs:cbits (Results 1 – 5 of 5) sorted by relevance

/external/libopus/doc/
Dtrivial_example.c56 unsigned char cbits[MAX_PACKET_SIZE]; in main() local
126 nbBytes = opus_encode(encoder, in, FRAME_SIZE, cbits, MAX_PACKET_SIZE); in main()
138 frame_size = opus_decode(decoder, cbits, nbBytes, out, MAX_FRAME_SIZE, 0); in main()
/external/libvorbis/doc/
D07-floor1.tex194 8) [cbits] = vector [floor1_class_subclasses] element [class]
195 9) [csub] = (2 exponent [cbits])-1
197 11) if ( [cbits] is greater than zero ) \{
206 15) [cval] = [cval] right shifted [cbits] bits
/external/pcre/dist/
Dpcre_study.c727 for (c = 0; c < table_limit; c++) start_bits[c] |= cd->cbits[c+cbit_type]; in set_type_bits()
732 if ((cd->cbits[c/8] & (1 << (c&7))) != 0) in set_type_bits()
769 for (c = 0; c < table_limit; c++) start_bits[c] |= ~cd->cbits[c+cbit_type]; in set_nottype_bits()
1531 compile_block.cbits = tables + cbits_offset; in pcre_study()
Dpcre_compile.c3313 set2 = (pcre_uint8 *)(cd->cbits + cbit_digit); in compare_opcodes()
3320 set2 = (pcre_uint8 *)(cd->cbits + cbit_space); in compare_opcodes()
3327 set2 = (pcre_uint8 *)(cd->cbits + cbit_word); in compare_opcodes()
4977 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local
5083 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch()
5094 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset]; in compile_branch()
5096 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset]; in compile_branch()
5156 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local
5177 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; in compile_branch()
5182 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; in compile_branch()
[all …]
Dpcre_internal.h2428 const pcre_uint8 *cbits; /* Points to character type table */ member