/external/openssl/crypto/evp/ |
D | evp_locl.h | 80 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ argument 85 …cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched… 91 …cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv… 110 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ argument 111 static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char… 114 if (cbits==1) chunk>>=3;\ 118 …cprefix##_cfb##cbits##_encrypt(in, out, (long)((cbits==1) && !(ctx->flags & EVP_CIPH_FLAG_LENGTH_B… 127 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ argument 129 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ 131 BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) [all …]
|
D | e_camellia.c | 96 #define IMPLEMENT_CAMELLIA_CFBR(ksize,cbits) IMPLEMENT_CFBR(camellia,Camellia,EVP_CAMELLIA_KEY,ks,k… argument
|
/external/flac/libFLAC/ia32/ |
D | bitreader_asm.nasm | 84 mov ecx, [ebp + 20] ; ecx <- br->consumed_bits (aka 'cbits' in the C version) 86 ;; ecx cbits 98 ; ucbits = (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits; 104 sub eax, ecx ; eax <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits 114 ;; ecx cbits 124 shl eax, cl ; b = br->buffer[cwords] << cbits 125 …test eax, eax ; (still have to test since cbits may be 0, thus ZF not updated for shl eax… 130 add ecx, ebx ; cbits += i; 132 add ecx, byte 1 ; cbits++; /* skip over stop bit */ 134 …jz near .break1 ; if(cbits >= FLAC__BITS_PER_WORD) { /* faster way of testing if(cbits =… [all …]
|
/external/chromium_org/third_party/opus/src/doc/ |
D | trivial_example.c | 56 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/libopus/doc/ |
D | trivial_example.c | 56 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/pcre/dist/ |
D | pcre_study.c | 685 for (c = 0; c < table_limit; c++) start_bits[c] |= cd->cbits[c+cbit_type]; in set_type_bits() 690 if ((cd->cbits[c/8] & (1 << (c&7))) != 0) in set_type_bits() 727 for (c = 0; c < table_limit; c++) start_bits[c] |= ~cd->cbits[c+cbit_type]; in set_nottype_bits() 1488 compile_block.cbits = tables + cbits_offset; in pcre_study()
|
D | pcre_compile.c | 3256 set2 = (pcre_uint8 *)(cd->cbits + cbit_digit); in compare_opcodes() 3263 set2 = (pcre_uint8 *)(cd->cbits + cbit_space); in compare_opcodes() 3270 set2 = (pcre_uint8 *)(cd->cbits + cbit_word); in compare_opcodes() 4905 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local 4995 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch() 5006 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset]; in compile_branch() 5008 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset]; in compile_branch() 5068 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local 5089 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; in compile_branch() 5094 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; in compile_branch() [all …]
|
D | pcre_internal.h | 2420 const pcre_uint8 *cbits; /* Points to character type table */ member
|
/external/libvorbis/doc/ |
D | 07-floor1.tex | 194 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
|