/third_party/openssl/ohos_lite/include/crypto/ |
H A D | evp.h | 183 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ 188 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_iv_noconst(ctx), &num); \ 196 cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, EVP_CIPHER_CTX_iv_noconst(ctx), &num); \ 217 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ 218 static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \ 221 if (cbits == 1) chunk >>= 3;\ 226 cprefix##_cfb##cbits##_encrypt(in, out, (long) \ 227 ((cbits == 1) \ 241 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ 243 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruc [all...] |
/third_party/node/deps/openssl/openssl/include/crypto/ |
H A D | evp.h | 370 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ 375 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \ 383 cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \ 404 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ 405 static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \ 408 if (cbits == 1) chunk >>= 3;\ 413 cprefix##_cfb##cbits##_encrypt(in, out, (long) \ 414 ((cbits == 1) \ 428 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ 430 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruc [all...] |
/third_party/openssl/include/crypto/ |
H A D | evp.h | 370 #define BLOCK_CIPHER_func_ofb(cname, cprefix, cbits, kstruct, ksched) \ 375 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \ 383 cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &EVP_C_DATA(kstruct,ctx)->ksched, ctx->iv, &num); \ 404 #define BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruct, ksched) \ 405 static int cname##_cfb##cbits##_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, size_t inl) \ 408 if (cbits == 1) chunk >>= 3;\ 413 cprefix##_cfb##cbits##_encrypt(in, out, (long) \ 414 ((cbits == 1) \ 428 #define BLOCK_CIPHER_all_funcs(cname, cprefix, cbits, kstruct, ksched) \ 430 BLOCK_CIPHER_func_cfb(cname, cprefix, cbits, kstruc [all...] |
/third_party/pulseaudio/speex/doc/ |
H A D | sampledec.c | 14 char cbits[200]; in main() local 44 fread(cbits, 1, nbBytes, stdin); in main() 46 speex_bits_read_from(&bits, cbits, nbBytes); in main()
|
H A D | sampleenc.c | 12 char cbits[200]; in main() local 48 nbBytes = speex_bits_write(&bits, cbits, 200); in main() 54 fwrite(cbits, 1, nbBytes, stdout); in main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | wmalosslessdec.c | 439 int cbits = av_log2(s->mclms_scaling + 1); in decode_mclms() local 440 if (1 << cbits < s->mclms_scaling + 1) in decode_mclms() 441 cbits++; in decode_mclms() 443 send_coef_bits = get_bitsz(&s->gb, cbits) + 2; in decode_mclms() 486 int cbits, shift_l, shift_r, j; in decode_cdlms() local 487 cbits = av_log2(s->cdlms[c][i].order); in decode_cdlms() 488 if ((1 << cbits) < s->cdlms[c][i].order) in decode_cdlms() 489 cbits++; in decode_cdlms() 490 s->cdlms[c][i].coefsend = get_bits(&s->gb, cbits) + 1; in decode_cdlms() 492 cbits in decode_cdlms() 572 int ch, i, cbits; decode_lpc() local [all...] |
H A D | vorbisdec.c | 1226 unsigned partition_class, cdim, cbits, csub, cval, offset, i, j; in vorbis_floor1_decode() local 1244 cbits = vf->class_subclasses[partition_class]; in vorbis_floor1_decode() 1245 csub = (1 << cbits) - 1; in vorbis_floor1_decode() 1248 ff_dlog(NULL, "Cbits %u\n", cbits); in vorbis_floor1_decode() 1250 if (cbits) // this reads all subclasses for this partition's class in vorbis_floor1_decode() 1258 book, cbits, cval, get_bits_count(gb)); in vorbis_floor1_decode() 1260 cval = cval >> cbits; in vorbis_floor1_decode()
|
H A D | wavpackenc.c | 1975 int cbits = count_bits(w->zeros_acc); in encode_flush() local 1978 if (cbits > 31) { in encode_flush() 1980 cbits -= 31; in encode_flush() 1982 put_bits(pb, cbits, (1U << cbits) - 1); in encode_flush() 1983 cbits = 0; in encode_flush() 1985 } while (cbits); in encode_flush() 1999 int cbits; in encode_flush() local 2004 cbits = count_bits(w->holding_one); in encode_flush() 2007 if (cbits > 3 in encode_flush() [all...] |
H A D | scpr.h | 59 uint32_t cbits; member
|
H A D | scpr.c | 265 *rval = c & s->cbits; in decode_unit() 646 s->cbits = avctx->bits_per_coded_sample == 16 ? 0x1F : 0xFF; in decode_init()
|
H A D | flacenc.c | 1240 int cbits = s->options.lpc_coeff_precision; in write_subframes() local 1241 put_bits( &s->pb, 4, cbits-1); in write_subframes() 1244 put_sbits(&s->pb, cbits, sub->coefs[i]); in write_subframes()
|
/third_party/lame/libmp3lame/ |
H A D | bitstream.c | 573 int16_t cbits = 0; in Huffmancode() local 586 cbits--; in Huffmancode() 614 cbits--; in Huffmancode() 620 xbits -= cbits; in Huffmancode() 621 cbits += h->hlen[x1]; in Huffmancode() 623 assert(cbits <= MAX_LENGTH); in Huffmancode() 626 putbits2(gfc, h->table[x1], cbits); in Huffmancode() 628 bits += cbits + xbits; in Huffmancode()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_auto_possess.c | 782 set2 = (uint8_t *)(cb->cbits + cbit_digit); in compare_opcodes() 789 set2 = (uint8_t *)(cb->cbits + cbit_space); in compare_opcodes() 796 set2 = (uint8_t *)(cb->cbits + cbit_word); in compare_opcodes()
|
H A D | pcre2_compile.c | 5422 const uint8_t *cbits = cb->cbits; in compile_branch() local 5848 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch() 5859 for (int i = 0; i < 32; i++) pbits[i] |= cbits[(int)i + taboffset]; in compile_branch() 5861 for (int i = 0; i < 32; i++) pbits[i] &= ~cbits[(int)i + taboffset]; in compile_branch() 5916 for (int i = 0; i < 32; i++) classbits[i] |= cbits[i+cbit_digit]; in compile_branch() 5922 classbits[i] |= (uint8_t)(~cbits[i+cbit_digit]); in compile_branch() 5926 for (int i = 0; i < 32; i++) classbits[i] |= cbits[i+cbit_word]; in compile_branch() 5932 classbits[i] |= (uint8_t)(~cbits[i+cbit_word]); in compile_branch() 5943 for (int i = 0; i < 32; i++) classbits[i] |= cbits[ in compile_branch() [all...] |
H A D | pcre2_intmodedep.h | 723 const uint8_t *cbits; /* Points to character type table */ member
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | e_aria.c | 153 # define IMPLEMENT_ARIA_CFBR(ksize,cbits) \ 154 IMPLEMENT_CFBR(aria,aria,EVP_ARIA_KEY,ks,ksize,cbits,16,0)
|
/third_party/openssl/crypto/evp/ |
H A D | e_aria.c | 153 # define IMPLEMENT_ARIA_CFBR(ksize,cbits) \ 154 IMPLEMENT_CFBR(aria,aria,EVP_ARIA_KEY,ks,ksize,cbits,16,0)
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | disasm-a3xx.c | 242 OPC(2, OPC_CBITS_B, cbits.b),
|