~ubuntu-branches/ubuntu/trusty/bmagic/trusty

« back to all changes in this revision

Viewing changes to src/bmsse2.h

  • Committer: Bazaar Package Importer
  • Author(s): Roberto C. Sanchez
  • Date: 2011-03-03 12:22:16 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20110303122216-qll5migewxnxe3s5
Tags: 3.7.0-1
* New upstream release (Closes: #615929)
* Update to Standards-Version 3.9.1 (no changes)
* Specify Debian source format as '3.0 (quilt)'

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
       
286
286
 
287
287
       // compare with zero
288
 
       // SSE4: _mm_test_all_zero()
289
288
       {
290
289
           // b = (b & 0x55555555) + (b >> 1 & 0x55555555);
291
290
           //tmp1 = _mm_srli_epi32(b, 1);                    // tmp1 = (b >> 1 & 0x55555555)
320
319
       // ---------------------------------------------------------------------
321
320
       {
322
321
           //__m128i b = _mm_load_si128(block);
323
 
           // TODO: SSE4...
324
 
           //w = _mm_extract_epi32(b, i);               
325
322
 
326
323
           const bm::word_t* BMRESTRICT blk = (const bm::word_t*) block;
327
324