Lines Matching refs:ONE
35 #define ONE 0x00000001L macro
388 q = ONE << j; in test_walkbits0_comparison()
390 q = ONE << (UL_LEN * 2 - j - 1); in test_walkbits0_comparison()
436 q = UL_ONEBITS ^ (ONE << j); in test_walkbits1_comparison()
438 q = UL_ONEBITS ^ (ONE << (UL_LEN * 2 - j - 1)); in test_walkbits1_comparison()
482 data[0] = (ONE << j) | (ONE << (j + 2)); in test_bitspread_comparison()
483 data[1] = UL_ONEBITS ^ ((ONE << j) | (ONE << (j + 2))); in test_bitspread_comparison()
485 data[0] = (ONE << (UL_LEN * 2 - 1 - j)) | in test_bitspread_comparison()
486 (ONE << (UL_LEN * 2 + 1 - j)); in test_bitspread_comparison()
487 data[1] = UL_ONEBITS ^ (ONE << (UL_LEN * 2 - 1 - j) in test_bitspread_comparison()
488 | (ONE << (UL_LEN * 2 + 1 - j))); in test_bitspread_comparison()
528 q = ONE << k; in test_bitflip_comparison()