Lines Matching full:ctlz
7608 '``llvm.ctlz.*``' Intrinsic
7614 This is an overloaded intrinsic. You can use ``llvm.ctlz`` on any
7620 declare i8 @llvm.ctlz.i8 (i8 <src>, i1 <is_zero_undef>)
7621 declare i16 @llvm.ctlz.i16 (i16 <src>, i1 <is_zero_undef>)
7622 declare i32 @llvm.ctlz.i32 (i32 <src>, i1 <is_zero_undef>)
7623 declare i64 @llvm.ctlz.i64 (i64 <src>, i1 <is_zero_undef>)
7624 declare i256 @llvm.ctlz.i256(i256 <src>, i1 <is_zero_undef>)
7625 declase <2 x i32> @llvm.ctlz.v2i32(<2 x i32> <src>, i1 <is_zero_undef>)
7630 The '``llvm.ctlz``' family of intrinsic functions counts the number of
7649 The '``llvm.ctlz``' intrinsic counts the leading (most significant)
7653 ``llvm.ctlz(i32 2) = 30``.