(dw: u64, low_bit: i32, bits: i32, new_value: u64)
| 83 | } |
| 84 | |
| 85 | fn set_bits(dw: u64, low_bit: i32, bits: i32, new_value: u64) -> u64 { |
| 86 | let mask = (1 << bits) - 1; |
| 87 | (dw & !(mask << low_bit)) | (new_value << low_bit) |
| 88 | } |
| 89 | |
| 90 | fn clear_breakpoint(ctx: &mut CONTEXT, index: i32) { |
| 91 | match index { |
no outgoing calls
no test coverage detected