HomeSort by relevance Sort by last modified time
    Searched defs:popcount (Results 1 - 9 of 9) sorted by null

  /system/core/include/cutils/
bitops.h 103 static inline int popcount(unsigned int x) function
  /external/openfst/src/extensions/ngram/
bitmap-index.cc 134 uint32 popcount = 0; local
148 popcount += block_popcount;
149 primary_index_.push_back(popcount);
  /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/chromium_org/third_party/smhasher/src/
Bitvec.cpp 103 uint32_t popcount ( uint32_t v ) function
  /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...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.cc 42 template<class T> int popcount(T x);
43 template<> int popcount<unsigned int>(unsigned int x) { function in namespace:__anon12269
46 template<> int popcount<unsigned long>(unsigned long x) { function in namespace:__anon12269
49 template<> int popcount<unsigned long long>(unsigned long long x) { function in namespace:__anon12269
820 int lsb_bit_count = popcount(lsb_bits);
    [all...]

Completed in 145 milliseconds