HomeSort by relevance Sort by last modified time
    Searched refs:numBits (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/antlr/antlr-3.4/runtime/C/include/
antlr3bitset.h 101 ANTLR3_UINT32 (*numBits) (struct ANTLR3_BITSET_struct * bitset);
  /external/deqp/modules/gles3/functional/
es3fASTCDecompressionCases.cpp 98 static inline deUint32 reverseBits (deUint32 src, int numBits)
100 DE_ASSERT(de::inRange(numBits, 0, 32));
102 for (int i = 0; i < numBits; i++)
103 result |= ((src >> i) & 1) << (numBits-1-i);
115 const int numBits = (high-low) + 1;
116 if (numBits == 0)
118 DE_ASSERT(de::inRange(numBits, 1, 32));
119 return (src >> low) & ((1u<<numBits)-1);
308 int numBits;
310 ISEParams (ISEMode mode_, int numBits_) : mode(mode_), numBits(numBits_) {
    [all...]
  /external/chromium_org/third_party/tlslite/scripts/
tlsdb.py 140 def numBits(n):
146 print(numBits(N), username)
  /external/deqp/framework/referencerenderer/
rrRasterizer.hpp 45 const int numBits = sizeof(deUint64)*8;
46 const int maxSamples = numBits/4;
  /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/chromium_org/third_party/skia/forth/
Forth.cpp 335 static bool parse_num(const char str[], size_t len, int32_t* numBits) {
351 *numBits = num;
364 *numBits = num;
384 *numBits = f2i_bits(x);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
cryptomath.py 127 if (numBits(n) & 0x7)==0:
142 def numBits(n):
157 bits = numBits(n)
167 howManyBits = numBits(high)
  /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 416 u32 tmp,numBits,mask;
430 numBits = 0;
433 /* set numBits to position of right-most non-zero bit */
434 while (tmp & (mask<<++numBits))
436 numBits--;
438 /* add one more bit if value greater than 2^numBits */
439 if (tmp & ((1<<numBits)-1))
440 numBits++;
442 return(numBits);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderAtomicOpTests.cpp 578 const int numBits = m_precision == PRECISION_HIGHP ? 32 :
580 const deUint32 valueMask = numBits == 32 ? ~0u : (1u<<numBits)-1u;
581 m_initialValue = ~((1u<<(numBits-1u)) | 1u) & valueMask; // All bits except lowest and highest set.
590 const int numBits = m_precision == PRECISION_HIGHP ? 32 :
592 const deUint32 valueMask = numBits == 32 ? ~0u : (1u<<numBits)-1u;
597 const deUint32 groupMask = 1<<rnd.getInt(0, numBits-2); // One bit is always set.
660 const int numBits = m_precision == PRECISION_HIGHP ? 32 :
668 *(deUint32*)((deUint8*)inputs + stride*(groupOffset+localNdx)) = 1u<<rnd.getInt(0, numBits-1)
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 355 unsigned numBits = BI->getNumBits();
357 SmallVector<Init *, 16> NewBits(numBits);
359 for (unsigned bit = 0, end = numBits / 2; bit != end; ++bit) {
360 unsigned bitSwapIdx = numBits - bit - 1;
366 if (numBits % 2) {
367 unsigned middle = (numBits + 1) / 2;
  /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/deqp/framework/common/
tcuCompressedTexture.cpp 348 const int numBits = (high-low) + 1;
349 DE_ASSERT(de::inRange(numBits, 1, 32));
350 return (src >> low) & ((1<<numBits)-1);
    [all...]
  /libcore/luni/src/main/native/
java_lang_StringToReal.cpp 255 int32_t numBits;
261 numBits = highestSetBitHighPrecision (f, length) + 1;
262 numBits -= lowestSetBitHighPrecision (f, length);
263 if (numBits < 54 && e >= 0 && e < DOUBLE_LOG5_OF_TWO_TO_THE_N)
267 else if (numBits < 54 && e < 0 && (-e) < DOUBLE_LOG5_OF_TWO_TO_THE_N)
689 int32_t numBits;
693 numBits = highestSetBitHighPrecision (f, length) + 1;
694 if (numBits < 25 && e >= 0 && e < FLOAT_LOG5_OF_TWO_TO_THE_N)
698 else if (numBits < 25 && e < 0 && (-e) < FLOAT_LOG5_OF_TWO_TO_THE_N)
  /libcore/luni/src/test/java/tests/java/security/
SecureRandomTest.java 291 public int nextElement(int numBits) {
292 return super.next(numBits);
  /external/aac/libFDK/include/
FDK_bitstream.h 313 * \param numBits The number of bits to be retrieved.
316 FDK_INLINE UINT FDKgetBits (HANDLE_FDK_BITSTREAM hBitStream, UINT numBits)
318 return FDK_get (&hBitStream->hBitBuf, 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;
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_D_T_.py 203 def _data2binary(data, numBits):
207 numBitsCut = min(8, numBits)
214 numBits -= numBitsCut
519 numBits = endBit - curBit
534 newByte = (firstHalf | secondHalf) & ((1<<numBits)-1)
  /external/sonivox/arm-fm-22k/lib_src/
eas_ota.c 96 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)
998 bitsLeft = pData->current.bitCount - numBits;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_ota.c 96 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)
998 bitsLeft = pData->current.bitCount - numBits;
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_ota.c 96 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)
998 bitsLeft = pData->current.bitCount - numBits;
    [all...]
  /frameworks/av/media/libstagefright/
avc_utils.cpp 556 unsigned numBits = 0;
558 ++numBits;
562 br.skipBits(numBits); // fixed_vop_time_increment

Completed in 4213 milliseconds

12 3 4 5