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

1 2

  /external/chromium_org/third_party/smhasher/src/
Types.cpp 89 if(popcount(b) < 16) { b = 0; popfail++; }
90 if(popcount(b) > 16) { b = 0; popfail++; }
101 if(popcount(c) < 3) { b = 0; bitfail++; break; }
102 if(popcount(c) > 5) { b = 0; bitfail++; break; }
Bitvec.h 14 uint32_t popcount ( uint32_t v );
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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
61 if (map->popcount)
66 map->popcount[bitno / SBITMAP_ELT_BITS]++;
80 if (map->popcount)
85 map->popcount[bitno / SBITMAP_ELT_BITS]--;
201 #define sbitmap_free(MAP) (free((MAP)->popcount), free((MAP)))
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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
61 if (map->popcount)
66 map->popcount[bitno / SBITMAP_ELT_BITS]++;
80 if (map->popcount)
85 map->popcount[bitno / SBITMAP_ELT_BITS]--;
201 #define sbitmap_free(MAP) (free((MAP)->popcount), free((MAP)))
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/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
61 if (map->popcount)
66 map->popcount[bitno / SBITMAP_ELT_BITS]++;
80 if (map->popcount)
85 map->popcount[bitno / SBITMAP_ELT_BITS]--;
201 #define sbitmap_free(MAP) (free((MAP)->popcount), free((MAP)))
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/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
61 if (map->popcount)
66 map->popcount[bitno / SBITMAP_ELT_BITS]++;
80 if (map->popcount)
85 map->popcount[bitno / SBITMAP_ELT_BITS]--;
201 #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...]
  /frameworks/av/media/libnbaio/
AudioStreamInSource.cpp 50 mFormat = Format_from_SR_C(sampleRate, popcount(channelMask));
AudioStreamOutSink.cpp 47 mFormat = Format_from_SR_C(sampleRate, popcount(channelMask));
  /system/core/include/cutils/
bitops.h 103 static inline int popcount(unsigned int x) function
  /system/core/include/system/
audio.h 442 (popcount(device) == 1) && ((device & ~AUDIO_DEVICE_OUT_ALL) == 0))
452 if ((popcount(device) == 1) && ((device & ~AUDIO_DEVICE_IN_ALL) == 0))
466 if ((popcount(device) == 1) && (device & AUDIO_DEVICE_OUT_ALL_A2DP))
475 if ((popcount(device) == 1) && (device & (AUDIO_DEVICE_OUT_ALL_SCO |
484 if ((popcount(device) == 1) && (device & AUDIO_DEVICE_OUT_ALL_USB))
  /external/openfst/src/extensions/ngram/
bitmap-index.cc 134 uint32 popcount = 0; local
148 popcount += block_popcount;
149 primary_index_.push_back(popcount);
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioSystemLegacy.h 319 static uint32_t popCount(uint32_t u) {
320 return popcount(u);
325 if ((popcount(device) == 1) && ((device & ~DEVICE_OUT_ALL) == 0))
331 if ((popcount(device) == 1) && ((device & ~DEVICE_IN_ALL) == 0))
AudioHardwareInterface.h 72 uint32_t frameSize() const { return popcount(channels())*((format()==AUDIO_FORMAT_PCM_16_BIT)?sizeof(int16_t):sizeof(int8_t)); }
148 uint32_t frameSize() const { return AudioSystem::popCount(channels())*((format()==AudioSystem::PCM_16_BIT)?sizeof(int16_t):sizeof(int8_t)); }
  /external/marisa-trie/tests/
unit-test.cc 5 #include <marisa/popcount.h>
60 ASSERT(marisa::PopCount(0).lo8() == 0);
61 ASSERT(marisa::PopCount(0).lo16() == 0);
62 ASSERT(marisa::PopCount(0).lo24() == 0);
63 ASSERT(marisa::PopCount(0).lo32() == 0);
65 ASSERT(marisa::PopCount(0xFFFFFFFFU).lo8() == 8);
66 ASSERT(marisa::PopCount(0xFFFFFFFFU).lo16() == 16);
67 ASSERT(marisa::PopCount(0xFFFFFFFFU).lo24() == 24);
68 ASSERT(marisa::PopCount(0xFFFFFFFFU).lo32() == 32);
72 marisa::PopCount popcount(value)
    [all...]
  /external/marisa-trie/v0_1_5/tests/
unit-test.cc 5 #include <marisa_alpha/popcount.h>
62 ASSERT(marisa_alpha::PopCount(0).lo8() == 0);
63 ASSERT(marisa_alpha::PopCount(0).lo16() == 0);
64 ASSERT(marisa_alpha::PopCount(0).lo24() == 0);
65 ASSERT(marisa_alpha::PopCount(0).lo32() == 0);
67 ASSERT(marisa_alpha::PopCount(0xFFFFFFFFU).lo8() == 8);
68 ASSERT(marisa_alpha::PopCount(0xFFFFFFFFU).lo16() == 16);
69 ASSERT(marisa_alpha::PopCount(0xFFFFFFFFU).lo24() == 24);
70 ASSERT(marisa_alpha::PopCount(0xFFFFFFFFU).lo32() == 32);
74 marisa_alpha::PopCount popcount(value)
    [all...]
  /frameworks/av/media/libstagefright/
WAVExtractor.cpp 255 && (popcount(mChannelMask) != mNumChannels)) {
257 popcount(mChannelMask), mChannelMask);
  /external/clang/test/CodeGen/
builtins.c 82 P(popcount, (N));
  /hardware/libhardware/include/hardware/
audio.h 420 return popcount(s->get_channels(s)) * chan_samp_sz;
  /device/samsung/manta/audio/
audio_hw.c 238 if (popcount(device) == 2) {
248 if (popcount(device) != 1)
845 (pcm_config_in.period_size - in->frames_in) * popcount(in->channel_mask);
    [all...]
  /hardware/qcom/audio/hal/msm8960/
platform.c 600 if (popcount(devices) == 2) {
619 if (popcount(devices) != 1) {
    [all...]
  /hardware/qcom/audio/hal/msm8974/
platform.c 551 if (popcount(devices) == 2) {
570 if (popcount(devices) != 1) {
  /frameworks/av/media/libmedia/
Visualizer.cpp 131 popcount(size) != 1) {
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.cc 39 int popcount(uint32_t x) { function in namespace:sandbox::__anon10271
845 int lsb_bit_count = popcount(lsb_bits);
    [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.c 132 const int numChan = popcount(mask);
644 pDownmixer->input_channel_count = popcount(pConfig->inputCfg.channels);
    [all...]

Completed in 394 milliseconds

1 2