HomeSort by relevance Sort by last modified time
    Searched refs:popcount (Results 1 - 25 of 57) sorted by null

1 2 3

  /system/core/libcutils/include/cutils/
bitops.h 27 static inline int popcount(unsigned int x) { function
  /frameworks/wilhelm/src/android/
channels.cpp 99 return popcount(mask);
102 return popcount(mask);
198 if (popcount(bitsIn) != popcount(bitsOut)) {
210 (popcount(bitsIn) < popcount(bitsOut)) ? "gains" : "loses");
  /frameworks/av/services/audiopolicy/common/include/
Volume.h 77 } else if (popcount(device) > 1) {
103 ALOGW_IF(popcount(device) != 1,
policy.h 81 if ((popcount(device) == 1) && ((device & ~APM_AUDIO_IN_DEVICE_VIRTUAL_ALL) == 0))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
sbitmap.h 87 unsigned char *popcount; /* Population count. */ member in struct:simple_bitmap_def
113 gcc_checking_assert (! map->popcount);
123 gcc_checking_assert (! map->popcount);
216 free (map->popcount);
double-int.h 101 int popcount () const;
444 double_int::popcount () const
  /system/media/audio_utils/tests/
primitives_tests.cpp 378 65536 / popcount(dst_mask));
393 EXPECT_EQ(0, memcmp(u16ary, u16ref, 555 * sizeof(u16ref[0]) * popcount(dst_mask)));
401 65536 / popcount(dst_mask));
411 65536 / popcount(src_mask));
422 uint32_t src_channels = popcount(src_mask);
456 65536 / popcount(dst_mask));
473 EXPECT_EQ(0, memcmp(u24ary, u24ref, 555 * sizeof(u24ref[0]) * popcount(dst_mask)));
481 65536 / popcount(dst_mask));
492 65536 / popcount(src_mask));
506 uint32_t src_channels = popcount(src_mask)
    [all...]
  /frameworks/av/media/libaudiohal/2.0/
StreamPowerLog.h 46 const uint32_t channelCount = popcount(audio_channel_mask_get_bits(channelMask));
  /frameworks/av/media/libaudiohal/4.0/
StreamPowerLog.h 47 const uint32_t channelCount = popcount(audio_channel_mask_get_bits(channelMask));
  /system/media/audio/include/system/
audio.h 367 mode or popcount(channel_mask) */
557 (popcount(device) == 1) && ((device & ~AUDIO_DEVICE_OUT_ALL) == 0))
567 if ((popcount(device) == 1) && ((device & ~AUDIO_DEVICE_IN_ALL) == 0))
582 if ((popcount(device) == 1) && (device & AUDIO_DEVICE_IN_BLUETOOTH_A2DP))
590 if ((popcount(device) == 1) && (device & AUDIO_DEVICE_OUT_ALL_A2DP))
605 if ((popcount(device) == 1) && ((device & ~AUDIO_DEVICE_OUT_ALL_SCO) == 0))
609 if ((popcount(device) == 1) && ((device & ~AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) == 0))
623 return ((popcount(device) == 1) && (device & AUDIO_DEVICE_OUT_ALL_USB));
630 if (popcount(device) == 1 && (device & AUDIO_DEVICE_IN_ALL_USB) != 0)
712 return popcount(bits)
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioSystemLegacy.h 318 static uint32_t popCount(uint32_t u) {
319 return popcount(u);
324 if ((popcount(device) == 1) && ((device & ~DEVICE_OUT_ALL) == 0))
330 if ((popcount(device) == 1) && ((device & ~DEVICE_IN_ALL) == 0))
  /external/brotli/research/
deorummolae.cc 23 static int popcount(uint64_t u) { function
163 if (popcount(tmp - 1u) != 64) {
228 for (size_t x = 0; x < cov.size(); ++x) count += popcount(cov[x]);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
IOProfile.cpp 51 if (popcount(device & ~AUDIO_DEVICE_BIT_IN) > 1) {
  /system/media/audio_utils/
primitives.c 17 #include <cutils/bitops.h> /* for popcount() */
396 uint32_t src_channels = popcount(src_mask);
403 memcpy(dst, src, sample_size * popcount(dst_mask) * count);
511 return n + popcount(ormask & dst_mask);
516 size_t dst_count = popcount(dst_mask);
  /frameworks/av/media/extractors/wav/
WAVExtractor.cpp 243 && (popcount(mChannelMask) != mNumChannels)) {
245 popcount(mChannelMask), mChannelMask);
  /device/generic/car/emulator/audio/driver/
audio_hw.c 497 int channel_count = popcount(*channel_mask);
538 int channel_count = popcount(*channel_mask);
571 int channel_count = popcount(channel_mask);
856 if (popcount(in->req_config.channel_mask) == 1 &&
    [all...]
  /external/clang/test/CodeGen/
builtins.c 82 P(popcount, (N));
  /frameworks/av/media/libmedia/
Visualizer.cpp 129 popcount(size) != 1) {
  /hardware/libhardware/include/hardware/
audio.h 574 return popcount(s->get_channels(s)) * chan_samp_sz;
    [all...]
  /prebuilts/go/darwin-x86/src/math/bits/
bits.go 88 // If popcount is fast, replace code below with return popcount(^x & (x - 1)).
  /prebuilts/go/linux-x86/src/math/bits/
bits.go 88 // If popcount is fast, replace code below with return popcount(^x & (x - 1)).
  /device/generic/goldfish/audio/
audio_hw.c 674 int channel_count = popcount(*channel_mask);
715 int channel_count = popcount(*channel_mask);
754 int channel_count = popcount(channel_mask);
    [all...]
  /frameworks/av/services/audioflinger/
FastMixer.cpp 323 dumpState->mNumTracks = popcount(currentTrackMask);
  /hardware/qcom/audio/hal/msm8960/
platform.c 672 if (popcount(devices) == 2) {
691 if (popcount(devices) != 1) {
    [all...]
  /hardware/qcom/audio/hal/msm8916/
platform.c     [all...]

Completed in 790 milliseconds

1 2 3