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

1 2

  /system/core/include/cutils/
bitops.h 24 static inline int popcount(unsigned int x) function
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
sbitmap.h 36 #error Need to increase size of datatype used for popcount
41 unsigned char *popcount; /* Population count. */ member in struct:simple_bitmap_def
65 if (map->popcount)
70 map->popcount[bitno / SBITMAP_ELT_BITS]++;
84 if (map->popcount)
89 map->popcount[bitno / SBITMAP_ELT_BITS]--;
205 #define sbitmap_free(MAP) (free((MAP)->popcount), free((MAP)))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
sbitmap.h 36 #error Need to increase size of datatype used for popcount
41 unsigned char *popcount; /* Population count. */ member in struct:simple_bitmap_def
65 if (map->popcount)
70 map->popcount[bitno / SBITMAP_ELT_BITS]++;
84 if (map->popcount)
89 map->popcount[bitno / SBITMAP_ELT_BITS]--;
205 #define sbitmap_free(MAP) (free((MAP)->popcount), free((MAP)))
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
sbitmap.h 36 #error Need to increase size of datatype used for popcount
41 unsigned char *popcount; /* Population count. */ member in struct:simple_bitmap_def
65 if (map->popcount)
70 map->popcount[bitno / SBITMAP_ELT_BITS]++;
84 if (map->popcount)
89 map->popcount[bitno / SBITMAP_ELT_BITS]--;
205 #define sbitmap_free(MAP) (free((MAP)->popcount), free((MAP)))
  /external/grub/stage2/
tparm.c 329 int popcount; local
359 popcount = 0;
369 * 'popcount' shows the highest parameter number in the string. We would
403 if (lastpop > popcount)
404 popcount = lastpop;
446 if (popcount < 2)
447 popcount = 2;
457 for (i = 0; i < max(popcount, number); i++) {
478 if (popcount == 0) {
479 popcount = number
    [all...]
  /system/core/include/system/
audio.h 338 if ((popcount(device) == 1) && ((device & ~AUDIO_DEVICE_OUT_ALL) == 0))
346 if ((popcount(device) == 1) && ((device & ~AUDIO_DEVICE_IN_ALL) == 0))
354 if ((popcount(device) == 1) && (device & AUDIO_DEVICE_OUT_ALL_A2DP))
362 if ((popcount(device) == 1) && (device & (AUDIO_DEVICE_OUT_ALL_SCO |
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java     [all...]
EvaluationShrinker.java 679 int popCount = instruction.stackPopCount(clazz);
680 if (popCount > 0)
688 for (int stackIndex = 0; stackIndex < popCount; stackIndex++)
749 int popCount = instruction.stackPopCount(clazz);
750 if (popCount > 0)
758 for (int stackIndex = 0; stackIndex < popCount; stackIndex++)
    [all...]
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.cpp 131 usleep(bytes * 1000000 / sizeof(int16_t) / AudioSystem::popCount(channels()) / sampleRate());
177 usleep(bytes * 1000000 / sizeof(int16_t) / AudioSystem::popCount(channels()) / sampleRate());
AudioPolicyManagerBase.cpp 39 if (AudioSystem::popCount(device) != 1) return BAD_VALUE;
515 if (AudioSystem::popCount((AudioSystem::audio_devices)device) == 2) {
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioSystemLegacy.h 314 static uint32_t popCount(uint32_t u) {
315 return popcount(u);
AudioHardwareInterface.h 72 uint32_t frameSize() const { return popcount(channels())*((format()==AUDIO_FORMAT_PCM_16_BIT)?sizeof(int16_t):sizeof(int8_t)); }
141 uint32_t frameSize() const { return AudioSystem::popCount(channels())*((format()==AudioSystem::PCM_16_BIT)?sizeof(int16_t):sizeof(int8_t)); }
  /external/clang/test/CodeGen/
builtins.c 82 P(popcount, (N));
  /external/valgrind/main/coregrind/
m_sparsewa.c 453 /* do 'sum += popcount(x) + popcount(y)' for byte-sized x, y */
  /frameworks/base/media/libmedia/
Visualizer.cpp 132 popcount(size) != 1) {
AudioTrack.cpp 203 uint32_t channelCount = popcount(channelMask);
772 int channelCount = popcount(channelMask);
    [all...]
  /hardware/libhardware/include/hardware/
audio.h 232 return popcount(s->get_channels(s)) * chan_samp_sz;
  /hardware/msm7k/libaudio-qdsp5v2/
AudioHardware.cpp 241 config.channel_count = AudioSystem::popCount(channels());
  /external/qemu/target-i386/
ops_sse.h     [all...]
  /hardware/msm7k/libaudio-qsd8k/
AudioHardware.cpp     [all...]
  /hardware/msm7k/libaudio/
AudioHardware.cpp 731 config.channel_count = AudioSystem::popCount(channels());
929 config.channel_count = AudioSystem::popCount(*pChannels);
    [all...]
  /bionic/libc/kernel/tools/
cpp.py     [all...]
  /device/samsung/crespo/libaudio/
AudioHardware.cpp 1021 uint32_t wrChannelCount = popcount(mOutput->channels());
    [all...]
  /frameworks/base/media/libeffects/preprocessing/
PreProcessing.cpp 835 uint32_t inCnl = popcount(config->inputCfg.channels);
836 uint32_t outCnl = popcount(config->outputCfg.channels);
    [all...]
  /frameworks/base/core/jni/
android_media_AudioRecord.cpp 140 uint32_t nbChannels = popcount(channels);

Completed in 4333 milliseconds

1 2