Searched defs:numBits (Results 1 - 22 of 22) sorted by relevance

/external/aac/libAACdec/src/
H A Daac_rom.h135 UCHAR numBits; member in struct:__anon6
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3bitset.h101 ANTLR3_UINT32 (*numBits) (struct ANTLR3_BITSET_struct * bitset); member in struct:ANTLR3_BITSET_struct
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSecureRandom2Test.java160 int numBits = 29;
161 int random = mySecureRandom.getNext(numBits);
162 assertEquals(numBits, Integer.bitCount(random));
164 numBits = 0;
165 random = mySecureRandom.getNext(numBits);
166 assertEquals(numBits, Integer.bitCount(random));
168 numBits = 40;
169 random = mySecureRandom.getNext(numBits);
172 numBits = -1;
173 random = mySecureRandom.getNext(numBits);
184 getNext(int numBits) argument
[all...]
/external/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp43 unsigned numBits = BI->getNumBits(); local
45 SmallVector<Init *, 16> NewBits(numBits);
47 for (unsigned bit = 0, end = numBits / 2; bit != end; ++bit) {
48 unsigned bitSwapIdx = numBits - bit - 1;
54 if (numBits % 2) {
55 unsigned middle = (numBits + 1) / 2;
H A DFixedLenDecoderEmitter.cpp164 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
403 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, argument
405 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
1492 "(" << WidthStr <<" insn, unsigned startBit, unsigned numBits)\n";
1497 o.indent(Indentation) << "assert(startBit + numBits <= " << BitWidth
1502 o.indent(Indentation) << "if (numBits == " << BitWidth << ")\n";
1511 o.indent(Indentation) << "fieldMask = ((1 << numBits) - 1) << startBit;\n";
/external/aac/libFDK/include/
H A DFDK_bitstream.h313 * \param numBits The number of bits to be retrieved.
316 FDK_INLINE UINT FDKgetBits (HANDLE_FDK_BITSTREAM hBitStream, UINT numBits) argument
318 return FDK_get (&hBitStream->hBitBuf, numBits) ;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3bitset.c76 antlr3BitsetNew(ANTLR3_UINT32 numBits) argument
93 if (numBits < (8 * ANTLR3_BITSET_BITS))
95 numBits = 8 * ANTLR3_BITSET_BITS;
101 numelements = ((numBits -1) >> ANTLR3_BITSET_LOG_BITS) + 1;
132 bitset->numBits = antlr3BitsetNumBits;
649 ANTLR3_UINT32 numBits; // How many bits are in the set local
656 numBits = bitset->numBits(bitset);
669 for (i = 0, index = 1; i<numBits; i++)
H A Dantlr3collections.c2481 ANTLR3_UINT32 numBits; // How many bits are in the set local
2485 numBits = edges->numBits(edges);
2492 for (i=0; i<= numBits && range > 0; i++)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBitSet.java258 public int numBits() { method in class:BitSet
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBitSet.java414 public int numBits() { method in class:BitSet
/external/llvm/include/llvm/ADT/
H A DAPInt.h167 void fromString(unsigned numBits, StringRef str, uint8_t radix);
179 void initSlowCase(unsigned numBits, uint64_t val, bool isSigned);
224 /// @param numBits the bit width of the constructed APInt
227 /// @brief Create a new APInt of numBits width, initialized as val.
228 APInt(unsigned numBits, uint64_t val, bool isSigned = false) argument
229 : BitWidth(numBits), VAL(0) {
234 initSlowCase(numBits, val, isSigned);
240 /// @param numBits the bit width of the constructed APInt
242 /// @brief Construct an APInt of numBits width, initialized as bigVal[].
243 APInt(unsigned numBits, ArrayRe
395 getMaxValue(unsigned numBits) argument
400 getSignedMaxValue(unsigned numBits) argument
407 getMinValue(unsigned numBits) argument
412 getSignedMinValue(unsigned numBits) argument
427 getAllOnesValue(unsigned numBits) argument
433 getNullValue(unsigned numBits) argument
448 getOneBitSet(unsigned numBits, unsigned BitNo) argument
464 getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) argument
[all...]
H A DAPSInt.h241 static APSInt getMaxValue(uint32_t numBits, bool Unsigned) { argument
242 return APSInt(Unsigned ? APInt::getMaxValue(numBits)
243 : APInt::getSignedMaxValue(numBits), Unsigned);
248 static APSInt getMinValue(uint32_t numBits, bool Unsigned) { argument
249 return APSInt(Unsigned ? APInt::getMinValue(numBits)
250 : APInt::getSignedMinValue(numBits), Unsigned);
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp767 uint32_t numBits = ((Len * 64) / 19) + 2; local
768 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
771 if (minBits > 0 && minBits < numBits)
776 if (activeBits > 0 && activeBits < numBits)
/external/webkit/Source/WebCore/platform/image-decoders/bmp/
H A DBMPImageReader.cpp385 const int numBits = (m_infoHeader.biBitCount == 16) ? 5 : 8; local
387 m_bitMasks[i] = ((static_cast<uint32_t>(1) << (numBits * (3 - i))) - 1) ^ ((static_cast<uint32_t>(1) << (numBits * (2 - i))) - 1);
/external/llvm/lib/Support/
H A DAPInt.cpp76 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) { argument
106 APInt::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal) argument
107 : BitWidth(numBits), VAL(0) {
111 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) argument
112 : BitWidth(numBits), VAL(0) {
670 /// HiBits - This function returns the high "numBits" bits of this APInt.
671 APInt APInt::getHiBits(unsigned numBits) const {
672 return APIntOps::lshr(*this, BitWidth - numBits);
675 /// LoBits - This function returns the low "numBits" bits of this APInt.
676 APInt APInt::getLoBits(unsigned numBits) cons
[all...]
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_ota.c96 static EAS_RESULT OTA_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue);
989 static EAS_RESULT OTA_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue) argument
998 bitsLeft = pData->current.bitCount - numBits;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_ota.c96 static EAS_RESULT OTA_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue);
989 static EAS_RESULT OTA_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue) argument
998 bitsLeft = pData->current.bitCount - numBits;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_ota.c96 static EAS_RESULT OTA_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue);
989 static EAS_RESULT OTA_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue) argument
998 bitsLeft = pData->current.bitCount - numBits;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBitSet.js526 numBits: function() {
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 252 milliseconds