HomeSort by relevance Sort by last modified time
    Searched full:bitcount (Results 76 - 100 of 275) sorted by null

1 2 34 5 6 7 8 91011

  /external/sonivox/arm-wt-22k/lib_src/
eas_otadata.h 53 EAS_U8 bitCount; /* bit count in char */
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVOpCodeEnum.h 192 _SPIRV_OP(BitCount, 205)
  /frameworks/support/compat/java/android/support/v4/util/
CircularArray.java 67 if (Integer.bitCount(minCapacity) != 1) {
CircularIntArray.java 68 if (Integer.bitCount(minCapacity) != 1) {
  /prebuilts/go/darwin-x86/src/image/jpeg/
writer.go 31 // bitCount counts the number of bits needed to hold an integer.
32 var bitCount = [256]byte{
285 nBits = uint32(bitCount[a])
287 nBits = 8 + uint32(bitCount[a>>8])
  /prebuilts/go/linux-x86/src/image/jpeg/
writer.go 31 // bitCount counts the number of bits needed to hold an integer.
32 var bitCount = [256]byte{
285 nBits = uint32(bitCount[a])
287 nBits = 8 + uint32(bitCount[a>>8])
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
bitstream_io.cpp 574 /* Int byteCount, Int bitCount) */
581 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount)
591 if (bitCount)
593 bitstream->bitLeft = (WORD_SIZE << 3) - bitCount; /* bitCount should be 0-31 */
727 //bitstream1->bitCount += bitstream2->bitCount;
  /frameworks/base/media/java/android/media/
AudioFormat.java 394 return Integer.bitCount(mask);
403 return Integer.bitCount(mask);
681 final int channelIndexCount = Integer.bitCount(getChannelIndexMask());
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Initialize.cpp     [all...]
  /hardware/intel/img/psb_video/src/
tng_hostheader.c 340 ui8Offset=aui32ElementPointers[pMTX_Header->ui32Elements]->ui8Size+8+31; // NumberofRawbits (excluding size of bit count field)+ size of the bitcount field
505 ///**** ELEMENT BITCOUNT: 18
538 ///**** ELEMENT BITCOUNT: 5
    [all...]
  /art/compiler/
intrinsics_list.h 44 V(IntegerBitCount, kStatic, kNeedsEnvironmentOrCache, kNoSideEffects, kNoThrow, "Ljava/lang/Integer;", "bitCount", "(I)I") \
55 V(LongBitCount, kStatic, kNeedsEnvironmentOrCache, kNoSideEffects, kNoThrow, "Ljava/lang/Long;", "bitCount", "(J)I") \
  /art/runtime/interpreter/
interpreter_intrinsics.cc 67 // java.lang.Integer.bitCount(I)I
100 // java.lang.Long.bitCount(J)I
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
IntMath.java 55 * <p>This differs from {@code Integer.bitCount(x) == 1}, because
56 * {@code Integer.bitCount(Integer.MIN_VALUE) == 1}, but {@link Integer#MIN_VALUE} is not a power
LongMath.java 53 * <p>This differs from {@code Long.bitCount(x) == 1}, because
54 * {@code Long.bitCount(Long.MIN_VALUE) == 1}, but {@link Long#MIN_VALUE} is not a power of two.
  /external/proguard/src/proguard/gui/
boilerplate.pro 196 public static int bitCount(int);
222 public static int bitCount(long);
default.pro 133 public static int bitCount(int);
158 public static int bitCount(long);
  /frameworks/base/core/java/android/net/
NetworkUtils.java 176 return Integer.bitCount(netmask);
189 int prefixLength = Integer.bitCount(i);
  /external/freetype/src/cff/
cf2hints.h 78 size_t bitCount;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Settings.java 132 return Integer.bitCount(set);
  /external/pdfium/third_party/freetype/src/cff/
cf2hints.h 78 size_t bitCount;
  /external/skia/src/ports/
SkScalerContext_win_dw.cpp 667 int bitCount = width & 7;
685 if (bitCount > 0) {
688 for (int i = 0; i < bitCount; i++) {
694 src += bitCount;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
Mips.td 59 def FeatureBitCount : SubtargetFeature<"bitcount", "HasBitCount", "true",
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 500 assertTrue("a.bitCount==b.bitCount", a.bitCount() == b.bitCount());
  /external/aac/libSBRdec/src/
psbitdec.cpp 108 UCHAR bitCount = 0;
112 bitCount++;
116 *length = bitCount;
  /external/llvm/include/llvm/ADT/
SparseBitVector.h 814 unsigned BitCount = 0;
818 BitCount += Iter->count();
820 return BitCount;

Completed in 464 milliseconds

1 2 34 5 6 7 8 91011