Lines Matching refs:ret
102 int ret = 0; in main() local
105 ret += check(0, ffs(0), slow_ffs(0), "ffs"); in main()
106 ret += check(0, ffsl(0), slow_ffsl(0), "ffsl"); in main()
107 ret += check(0, ffsll(0), slow_ffsll(0), "ffsll"); in main()
115 ret += check(x, ffs(x), slow_ffs(x), "ffs"); in main()
116 ret += check(xl, ffsl(xl), slow_ffsl(xl), "ffsl"); in main()
117 ret += check(xll, ffsll(xll), slow_ffsll(xll), "ffsll"); in main()
127 ret += check(x, ffs(x), slow_ffs(x), "ffs"); in main()
128 ret += check(xl, ffsl(xl), slow_ffsl(xl), "ffsl"); in main()
129 ret += check(xll, ffsll(xll), slow_ffsll(xll), "ffsll"); in main()
131 return ret; in main()