(ctxt: *mut c_void)
| 2097 | } |
| 2098 | |
| 2099 | extern "C" fn cb_default_integer_size<A>(ctxt: *mut c_void) -> usize |
| 2100 | where |
| 2101 | A: 'static + Architecture<Handle = CustomArchitectureHandle<A>> + Send + Sync, |
| 2102 | { |
| 2103 | let custom_arch = unsafe { &*(ctxt as *mut A) }; |
| 2104 | custom_arch.default_integer_size() |
| 2105 | } |
| 2106 | |
| 2107 | extern "C" fn cb_instruction_alignment<A>(ctxt: *mut c_void) -> usize |
| 2108 | where |
nothing calls this directly
no test coverage detected