Home
last modified time | relevance | path

Searched refs:popcount (Results 1 – 14 of 14) sorted by relevance

/external/openfst/src/extensions/ngram/
Dbitmap-index.cc134 uint32 popcount = 0; in BuildIndex() local
148 popcount += block_popcount; in BuildIndex()
149 primary_index_.push_back(popcount); in BuildIndex()
/external/marisa-trie/v0_1_5/tests/
Dunit-test.cc74 marisa_alpha::PopCount popcount(value); in TestPopCount() local
75 ASSERT(popcount.lo8() == NaivePopCount(value & 0xFFU)); in TestPopCount()
76 ASSERT(popcount.lo16() == NaivePopCount(value & 0xFFFFU)); in TestPopCount()
77 ASSERT(popcount.lo24() == NaivePopCount(value & 0xFFFFFFU)); in TestPopCount()
78 ASSERT(popcount.lo32() == NaivePopCount(value)); in TestPopCount()
/external/marisa-trie/tests/
Dunit-test.cc72 marisa::PopCount popcount(value); in TestPopCount() local
73 ASSERT(popcount.lo8() == NaivePopCount(value & 0xFFU)); in TestPopCount()
74 ASSERT(popcount.lo16() == NaivePopCount(value & 0xFFFFU)); in TestPopCount()
75 ASSERT(popcount.lo24() == NaivePopCount(value & 0xFFFFFFU)); in TestPopCount()
76 ASSERT(popcount.lo32() == NaivePopCount(value)); in TestPopCount()
/external/llvm/test/Transforms/LoopIdiom/X86/
Dpopcnt.ll4 ;int popcount(unsigned long long a) {
16 define i32 @popcount(i64 %a) nounwind uwtable readnone ssp {
36 ;int popcount(unsigned long long a, int mydata1, int mydata2) {
/external/llvm/test/Transforms/LoopIdiom/R600/
Dpopcnt.ll6 ;int popcount(unsigned long long a) {
63 ;int popcount(unsigned long long a, int mydata1, int mydata2) {
/external/marisa-trie/lib/
DMakefile.am25 marisa/popcount.h \
DMakefile.in208 marisa/popcount.h \
/external/marisa-trie/v0_1_5/lib/
DMakefile.am26 marisa_alpha/popcount.h \
DMakefile.in243 marisa_alpha/popcount.h \
/external/clang/test/CodeGen/
Dbuiltins.c82 P(popcount, (N)); in main()
/external/llvm/test/MC/Disassembler/Hexagon/
Dxtype_bit.txt28 # CHECK: r17 = popcount(r21:20)
/external/llvm/test/CodeGen/Hexagon/intrinsics/
Dxtype_bit.ll74 ; CHECK: r0 = popcount(r1:0)
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfoV5.td128 "$Rd = popcount($Rss)",
/external/llvm/lib/Target/
DREADME.txt219 These idioms should be recognized as popcount (see PR1488):
228 unsigned int popcount(unsigned int input) {