/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_cavlc.c | 330 /* macro to read numBits bits from the buffer, bits will be written to 332 #define BUFFER_SHOW(value, bits, outVal, numBits) \ 334 if (bits < (numBits)) \ 341 (outVal) = value >> (32 - (numBits)); \ 344 /* macro to flush numBits bits from the buffer */ 345 #define BUFFER_FLUSH(value, bits, numBits) \ 347 value <<= (numBits); \ 348 bits -= (numBits); \ 351 /* macro to read and flush numBits bits from the buffer, bits will be written 353 #define BUFFER_GET(value, bits, outVal, numBits) \ [all...] |
h264bsd_slice_header.c | 414 u32 tmp,numBits,mask; 428 numBits = 0; 431 /* set numBits to position of right-most non-zero bit */ 432 while (tmp & (mask<<++numBits)) 434 numBits--; 436 /* add one more bit if value greater than 2^numBits */ 437 if (tmp & ((1<<numBits)-1)) 438 numBits++; 440 return(numBits); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/des/ |
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,
|
/external/chromium_org/third_party/openssl/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,
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
cryptomath.py | 186 if (numBits(n) & 0x7)==0: 205 bits = numBits(n) 224 howManyBits = numBits(high)
|
/external/openssl/crypto/des/ |
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,
|
/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,
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3bitset.h | 101 ANTLR3_UINT32 (*numBits) (struct ANTLR3_BITSET_struct * bitset);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRBitSet.h | 75 - (NSInteger) numBits;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRBitSet.h | 75 - (NSInteger) numBits;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRBitSet.h | 75 - (NSInteger) numBits;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBitSet.h | 76 - (NSInteger) numBits;
|
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 453 uint64_t NumBits = atoull(StartChar, CurPtr); 454 if (NumBits < IntegerType::MIN_INT_BITS || 455 NumBits > IntegerType::MAX_INT_BITS) { 459 TyVal = IntegerType::get(Context, NumBits); 822 uint32_t numBits = ((Len * 64) / 19) + 2; 823 APInt Tmp(numBits, StringRef(TokStart, Len), 10); 826 if (minBits > 0 && minBits < numBits) 831 if (activeBits > 0 && activeBits < numBits)
|
/external/llvm/lib/Target/ARM/ |
ARMBaseRegisterInfo.cpp | 632 unsigned NumBits = 0; 642 NumBits = 8; 645 NumBits = 12; 650 NumBits = 8; 655 NumBits = 12; 658 NumBits = 8; 661 NumBits = 5; 678 unsigned Mask = (1 << NumBits) - 1;
|
/external/llvm/utils/TableGen/ |
AsmWriterEmitter.cpp | 383 unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size()); 386 if (NumBits > BitsLeft) { 387 DEBUG(errs() << "Not enough bits to densely encode " << NumBits 397 BitsLeft -= NumBits; 470 unsigned NumBits = Log2_32_Ceil(Commands.size()); 471 assert(NumBits <= BitsLeft && "consistency error"); 474 O << "\n // Fragment " << i << " encoded into " << NumBits 481 << ((1 << NumBits)-1) << ") {\n" 492 << ((1 << NumBits)-1) << ") {\n" 503 BitsLeft -= NumBits; [all...] |
FixedLenDecoderEmitter.cpp | 224 unsigned NumBits; // number of bits to filter 257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed); 404 unsigned NumBits) const; 495 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed), 502 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, 504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { 505 assert(StartBit + NumBits - 1 < Owner->BitWidth); 518 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits); [all...] |
/libcore/luni/src/main/java/java/math/ |
BigInteger.java | 121 * {@code [0, pow(2, numBits)-1]}. 123 * @param numBits maximum length of the new {@code BigInteger} in bits. 125 * @throws IllegalArgumentException if {@code numBits} < 0. 127 public BigInteger(int numBits, Random random) { 128 if (numBits < 0) { 129 throw new IllegalArgumentException("numBits < 0: " + numBits); 131 if (numBits == 0) { 135 int numberLength = (numBits + 31) >> 5; 141 digits[numberLength - 1] >>>= (-numBits) & 31 [all...] |
/external/clang/lib/Lex/ |
PPExpressions.cpp | 293 unsigned NumBits; 295 NumBits = TI.getIntWidth(); 297 NumBits = TI.getWCharWidth(); 299 NumBits = TI.getChar16Width(); 301 NumBits = TI.getChar32Width(); 303 NumBits = TI.getCharWidth(); 306 llvm::APSInt Val(NumBits);
|
/external/llvm/include/llvm/IR/ |
DerivedTypes.h | 41 explicit IntegerType(LLVMContext &C, unsigned NumBits) : Type(C, IntegerTyID){ 42 setSubclassData(NumBits); 54 /// If an IntegerType with the same NumBits value was previously instantiated, 56 /// one instance with a given NumBits value is ever created. 58 static IntegerType *get(LLVMContext &C, unsigned NumBits);
|
/external/llvm/lib/Support/ |
APInt.cpp | 76 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) { 106 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) 107 : BitWidth(numBits), VAL(0) { 111 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) 112 : BitWidth(numBits), VAL(0) { 116 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) 117 : BitWidth(numbits), VAL(0) { 119 fromString(numbits, Str, radix); 670 /// HiBits - This function returns the high "numBits" bits of this APInt. 671 APInt APInt::getHiBits(unsigned numBits) const [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
dsaparam.c | 119 int numbits= -1,num,genkey=0; local 201 numbits=num; 289 if (numbits > 0)
|
/external/openssl/apps/ |
dsaparam.c | 119 int numbits= -1,num,genkey=0; local 201 numbits=num; 289 if (numbits > 0)
|
/frameworks/av/media/libstagefright/ |
avc_utils.cpp | 526 unsigned numBits = 0; 528 ++numBits; 532 br.skipBits(numBits); // fixed_vop_time_increment
|
/external/llvm/lib/IR/ |
Type.cpp | 305 IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) { 306 assert(NumBits >= MIN_INT_BITS && "bitwidth too small"); 307 assert(NumBits <= MAX_INT_BITS && "bitwidth too large"); 310 switch (NumBits) { 320 IntegerType *&Entry = C.pImpl->IntegerTypes[NumBits]; 323 Entry = new (C.pImpl->TypeAllocator) IntegerType(C, NumBits);
|
/external/lzma/CPP/7zip/UI/Common/ |
ArchiveCommandLine.cpp | 593 int numBits;
600 numBits = 10;
603 numBits = 20;
606 numBits = 30;
611 if (number >= ((UInt64)1 << (64 - numBits)))
613 result = number << numBits;
|