/external/openssl/crypto/des/ |
cfb_enc.c | 64 * What this means is that if you hame numbits=12 and length=2 71 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, 77 register int num=numbits/8,n=(numbits+7)/8,i,rem=numbits%8; 92 if (numbits<=0 || numbits > 64) return; 112 if (numbits == 32) 114 else if (numbits == 64) 155 if (numbits == 32 [all...] |
ofb_enc.c | 62 * What this means is that if you hame numbits=12 and length=2 67 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, 71 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; 74 register int num=numbits;
|
DES.xs | 137 des_cfb_encrypt(input,numbits,ks,ivec,encrypt) 139 int numbits 156 (int)numbits,(long)len,*ks,ivec,encrypt); 179 des_ofb_encrypt(input,numbits,ks,ivec) 181 int numbits 197 numbits,len,*ks,ivec);
|
des_old.c | 116 void _ossl_old_des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits, 119 DES_cfb_encrypt(in, out, numbits, length, 203 int numbits,long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec) 205 DES_ofb_encrypt(in, out, numbits, length, (DES_key_schedule *)schedule,
|
cfb64ede.c | 150 int numbits,long length,DES_key_schedule *ks1, 155 register unsigned long l=length,n=((unsigned int)numbits+7)/8; 156 register int num=numbits,i;
|
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,
|
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/ |
ihevcd_cabac.c | 273 WORD32 numbits; local 274 numbits = CLZ(u4_range); 275 numbits -= (32 - RANGE_NUMBITS); 277 numbits -= RANGE_SHIFT; 280 ps_bitstrm->u4_cur_word, ps_bitstrm->u4_nxt_word, numbits); 282 u4_ofst <<= numbits; local 284 u4_range <<= numbits; local 392 WORD32 numbits; local 395 numbits = (32 - clz); 396 numbits -= 9 410 WORD32 numbits; local 422 u4_ofst <<= numbits; local 424 u4_range <<= numbits; local [all...] |
ihevcd_bitstream.c | 138 * Increment bit offset by numbits. If bit offset increases beyond 32, then 216 * @param[in] numbits 227 void ihevcd_bits_seek(bitstrm_t *ps_bitstrm, WORD32 numbits) 230 ASSERT(numbits >= -32); 231 ASSERT(numbits <= 32); 233 if(numbits < 0) 235 UWORD32 abs_numbits = -numbits; 268 numbits); 278 * Snoops for next numbits number of bits from the bitstream this does not 350 * Reads next numbits number of bits from the bitstream this updates th [all...] |
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; \
|
ihevcd_bitstream.h | 224 void ihevcd_bits_seek(bitstrm_t *ps_bitstrm, WORD32 numbits);
|
ihevcd_parse_slice_header.c | 420 WORD32 numbits; local 422 numbits = 32 - CLZ(ps_sps->i1_num_short_term_ref_pic_sets - 1); 423 BITS_PARSE("short_term_ref_pic_set_idx", value, ps_bitstrm, numbits); [all...] |
/external/openssl/include/openssl/ |
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,
|
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/ |
dsaparam.c | 119 int numbits= -1,num,genkey=0; local 201 numbits=num; 289 if (numbits > 0)
|
/external/llvm/lib/Support/ |
APInt.cpp | 77 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) { 107 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) 108 : BitWidth(numBits), VAL(0) { 112 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) 113 : BitWidth(numBits), VAL(0) { 117 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) 118 : BitWidth(numbits), VAL(0) { 120 fromString(numbits, Str, radix); 671 /// HiBits - This function returns the high "numBits" bits of this APInt. 672 APInt APInt::getHiBits(unsigned numBits) const [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3baserecognizer.c | 1231 ANTLR3_UINT32 numbits; local [all...] |
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/ |
httpclient-4.1.1.jar | |