Lines Matching refs:non_allocatable
42 non_allocatable: u64, field
52 pub fn int(allocatable: u64, non_allocatable: u64, max: usize) -> Self { in int()
54 debug_assert!(allocatable & non_allocatable == 0); in int()
58 non_allocatable, in int()
64 pub fn float(allocatable: u64, non_allocatable: u64, max: usize) -> Self { in float()
66 debug_assert!(allocatable & non_allocatable == 0); in float()
70 non_allocatable, in float()
140 let non_allocatable = bitset.non_allocatable; in is_non_allocatable() localVariable
141 non_allocatable != 0 && !non_allocatable & (1 << index) == 0 in is_non_allocatable()
168 let non_allocatable: u64 = 1 << 5; in test_gpr() localVariable
169 let all = UNIVERSE & !non_allocatable; in test_gpr()
172 let bitset = RegBitSet::int(all, non_allocatable, MAX); in test_gpr()