Lines Matching refs:ta
288 let ta = TestAlign::<Blob, Kmalloc>::new()?; in test_alignment() localVariable
289 assert!(ta.is_aligned_to(128)); in test_alignment()
291 let ta = TestAlign::<LargeAlignBlob, Kmalloc>::new()?; in test_alignment() localVariable
292 assert!(ta.is_aligned_to(8192)); in test_alignment()
294 let ta = TestAlign::<Blob, Vmalloc>::new()?; in test_alignment() localVariable
295 assert!(ta.is_aligned_to(128)); in test_alignment()
297 let ta = TestAlign::<LargeAlignBlob, Vmalloc>::new()?; in test_alignment() localVariable
298 assert!(ta.is_aligned_to(8192)); in test_alignment()
300 let ta = TestAlign::<Blob, KVmalloc>::new()?; in test_alignment() localVariable
301 assert!(ta.is_aligned_to(128)); in test_alignment()
303 let ta = TestAlign::<LargeAlignBlob, KVmalloc>::new()?; in test_alignment() localVariable
304 assert!(ta.is_aligned_to(8192)); in test_alignment()