Home | History | Annotate | Download | only in src

Lines Matching defs:bits

2410 // Takes the left-most 1-bit and smears it out, setting all bits to its right.
2573 uint32_t bits = chars[0];
2575 uint32_t differing_bits = ((chars[j] & common_bits) ^ bits);
2577 bits &= common_bits;
2579 // If length is 2 and common bits has only one zero in it then
2588 pos->value = bits;
2633 // A mask and compare is only perfect if the differing bits form a
2640 uint32_t bits = (from & common_bits);
2656 bits &= new_common_bits;
2657 uint32_t differing_bits = (from & common_bits) ^ bits;
2659 bits &= common_bits;
2662 pos->value = bits;