Lines Matching +full:01 +full:a
19 * If the bit selected by single-bit bitmask "a" is set within "x", move
22 #define move_set_bit(x, a, b) (((x) & (a)) >> ilog2(a) << ilog2(b)) argument
33 * prot-none, clean, young 111.000001.1 -> 01..1...1...00 in __pte_to_rste()
36 * read-only, clean, old 111.000100.1 -> 00..1...1...01 in __pte_to_rste()
37 * read-only, clean, young 101.000101.1 -> 01..1...0...01 in __pte_to_rste()
38 * read-only, dirty, old 111.000110.1 -> 10..1...1...01 in __pte_to_rste()
39 * read-only, dirty, young 101.000111.1 -> 11..1...0...01 in __pte_to_rste()
41 * read-write, clean, young 101.001101.1 -> 01..1...0...11 in __pte_to_rste()
88 * prot-none, clean, young 01..1...1...00 -> 111.000001.1 in __rste_to_pte()
91 * read-only, clean, old 00..1...1...01 -> 111.000100.1 in __rste_to_pte()
92 * read-only, clean, young 01..1...0...01 -> 101.000101.1 in __rste_to_pte()
93 * read-only, dirty, old 10..1...1...01 -> 111.000110.1 in __rste_to_pte()
94 * read-only, dirty, young 11..1...0...01 -> 101.000111.1 in __rste_to_pte()
96 * read-write, clean, young 01..1...0...11 -> 101.001101.1 in __rste_to_pte()
300 * A failed mmap() very likely causes application failure, in hugetlb_get_unmapped_area_topdown()