Searched defs:popcnt (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Damd200707.asm23 popcnt ax, bx label
24 popcnt cx, word [0] label
25 popcnt dx, [0] label
26 popcnt eax, ebx label
27 popcnt ecx, dword [0] label
28 popcnt edx, [0] label
29 popcnt rax, rbx label
30 popcnt rcx, qword [0] label
31 popcnt rdx, [0] label
H A Dsse4.asm205 popcnt ax, bx label
206 popcnt ax, [0] label
207 popcnt ebx, ecx label
208 popcnt ebx, [0] label
209 popcnt rcx, rdx label
210 popcnt rcx, [0] label
/external/chromium_org/ui/events/gesture_detection/
H A Dbitset_32.h33 inline uint32_t count() const { return popcnt(value); }
94 return popcnt(value & ~(0xffffffffUL >> n));
106 static inline uint32_t popcnt(uint32_t v) { return __builtin_popcount(v); } function in struct:ui::BitSet32
111 static inline uint32_t popcnt(uint32_t v) { function in struct:ui::BitSet32
123 return 32 - popcnt(v);
126 return popcnt((v & static_cast<uint32_t>(-static_cast<int>(v))) - 1);

Completed in 128 milliseconds