Searched refs:T (Results 1 – 3 of 3) sorted by relevance
2 pub trait FFIBind2Rust<T> {4 fn convert_ref(src: *const T) -> Option<&'static Self>; in convert_ref()6 fn convert_mut(src: *mut T) -> Option<&'static mut Self>; in convert_mut()
363 int M = N / i, T = M / 3, b = 2 * T; in ktest_idr_case4() local370 for (int j = b; j >= T; j--) in ktest_idr_case4()386 for (int j = T - 1; j >= 0; j--) in ktest_idr_case4()
621 # required to be non null. Nullability is inferred from the Rust type: `&T`,622 # `&mut T` and `NonNull<T>` all require a valid pointer value.