/external/openssl/crypto/des/ |
D | cfb_enc.c | 71 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in DES_cfb_encrypt() argument 77 register int num=numbits/8,n=(numbits+7)/8,i,rem=numbits%8; in DES_cfb_encrypt() 92 if (numbits<=0 || numbits > 64) return; in DES_cfb_encrypt() 112 if (numbits == 32) in DES_cfb_encrypt() 114 else if (numbits == 64) in DES_cfb_encrypt() 155 if (numbits == 32) in DES_cfb_encrypt() 157 else if (numbits == 64) in DES_cfb_encrypt()
|
D | DES.xs | 137 des_cfb_encrypt(input,numbits,ks,ivec,encrypt) in des_cfb_encrypt() argument 139 int numbits in des_cfb_encrypt() 156 (int)numbits,(long)len,*ks,ivec,encrypt); in des_cfb_encrypt() 179 des_ofb_encrypt(input,numbits,ks,ivec) in des_ofb_encrypt() argument 181 int numbits in des_ofb_encrypt() 197 numbits,len,*ks,ivec); in des_ofb_encrypt()
|
D | ofb_enc.c | 67 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, in DES_ofb_encrypt() argument 71 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; in DES_ofb_encrypt() 74 register int num=numbits; in DES_ofb_encrypt()
|
D | des_old.c | 116 void _ossl_old_des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits, in _ossl_old_des_cfb_encrypt() argument 119 DES_cfb_encrypt(in, out, numbits, length, in _ossl_old_des_cfb_encrypt() 203 int numbits,long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec) in _ossl_old_des_ofb_encrypt() argument 205 DES_ofb_encrypt(in, out, numbits, length, (DES_key_schedule *)schedule, in _ossl_old_des_ofb_encrypt()
|
D | cfb64ede.c | 150 int numbits,long length,DES_key_schedule *ks1, in DES_ede3_cfb_encrypt() argument 155 register unsigned long l=length,n=((unsigned int)numbits+7)/8; in DES_ede3_cfb_encrypt() 156 register int num=numbits,i; in DES_ede3_cfb_encrypt()
|
D | des.h | 147 void DES_cfb_encrypt(const unsigned char *in,unsigned char *out,int numbits, 191 int numbits,long length,DES_key_schedule *ks1, 209 void DES_ofb_encrypt(const unsigned char *in,unsigned char *out,int numbits,
|
D | des_old.h | 348 void _ossl_old_des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits, 382 int numbits,long length,_ossl_old_des_key_schedule schedule,_ossl_old_des_cblock *ivec);
|
/external/libhevc/decoder/ |
D | ihevcd_cabac.c | 273 WORD32 numbits; in ihevcd_cabac_decode_bin() local 274 numbits = CLZ(u4_range); in ihevcd_cabac_decode_bin() 275 numbits -= (32 - RANGE_NUMBITS); in ihevcd_cabac_decode_bin() 277 numbits -= RANGE_SHIFT; in ihevcd_cabac_decode_bin() 280 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbits); in ihevcd_cabac_decode_bin() 282 u4_ofst <<= numbits; in ihevcd_cabac_decode_bin() 284 u4_range <<= numbits; in ihevcd_cabac_decode_bin() 392 WORD32 numbits; in ihevcd_cabac_decode_terminate() local 395 numbits = (32 - clz); in ihevcd_cabac_decode_terminate() 396 numbits -= 9; in ihevcd_cabac_decode_terminate() [all …]
|
D | ihevcd_bitstream.c | 227 void ihevcd_bits_seek(bitstrm_t *ps_bitstrm, WORD32 numbits) in ihevcd_bits_seek() argument 230 ASSERT(numbits >= -32); in ihevcd_bits_seek() 231 ASSERT(numbits <= 32); in ihevcd_bits_seek() 233 if(numbits < 0) in ihevcd_bits_seek() 235 UWORD32 abs_numbits = -numbits; in ihevcd_bits_seek() 268 numbits); in ihevcd_bits_seek()
|
D | ihevcd_cabac.h | 100 WORD32 numbits; \ 101 numbits = CLZ(u4_range); \ 102 numbits -= (32 - RANGE_NUMBITS); \ 104 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbits); \ 106 u4_ofst <<= numbits; \ 108 u4_range <<= numbits; \
|
D | ihevcd_bitstream.h | 224 void ihevcd_bits_seek(bitstrm_t *ps_bitstrm, WORD32 numbits);
|
D | ihevcd_parse_slice_header.c | 420 WORD32 numbits; in ihevcd_parse_slice_header() local 422 numbits = 32 - CLZ(ps_sps->i1_num_short_term_ref_pic_sets - 1); in ihevcd_parse_slice_header() 423 BITS_PARSE("short_term_ref_pic_set_idx", value, ps_bitstrm, numbits); in ihevcd_parse_slice_header()
|
/external/openssl/include/openssl/ |
D | des.h | 147 void DES_cfb_encrypt(const unsigned char *in,unsigned char *out,int numbits, 191 int numbits,long length,DES_key_schedule *ks1, 209 void DES_ofb_encrypt(const unsigned char *in,unsigned char *out,int numbits,
|
D | des_old.h | 348 void _ossl_old_des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits, 382 int numbits,long length,_ossl_old_des_key_schedule schedule,_ossl_old_des_cblock *ivec);
|
/external/openssl/apps/ |
D | dsaparam.c | 119 int numbits= -1,num,genkey=0; in MAIN() local 201 numbits=num; in MAIN() 289 if (numbits > 0) in MAIN()
|
/external/ppp/pppd/ |
D | ccp.c | 543 int numbits; local 560 numbits = 0; 562 numbits += auth_mschap_bits & 1; 565 if (numbits > 1) { 570 if (!numbits) {
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 117 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) in APInt() argument 118 : BitWidth(numbits), VAL(0) { in APInt() 120 fromString(numbits, Str, radix); in APInt() 2065 void APInt::fromString(unsigned numbits, StringRef str, uint8_t radix) { in fromString() argument 2080 assert((slen <= numbits || radix != 2) && "Insufficient bit width"); in fromString() 2081 assert(((slen-1)*3 <= numbits || radix != 8) && "Insufficient bit width"); in fromString() 2082 assert(((slen-1)*4 <= numbits || radix != 16) && "Insufficient bit width"); in fromString() 2083 assert((((slen-1)*64)/22 <= numbits || radix != 10) && in fromString()
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3baserecognizer.c | 1231 ANTLR3_UINT32 numbits; in displayRecognitionError() local 1245 numbits = errBits->numBits (errBits); in displayRecognitionError() 1255 for (bit = 1; bit < numbits && count < 8 && count < size; bit++) in displayRecognitionError()
|