blob: 27395c6977c3479e3982629990c3b05e078d2e1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* Copyright (c) 2025 Robert Clausecker <fuz@FreeBSD.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <limits.h>
#include <stdbit.h>
unsigned int
stdc_first_trailing_zero_uc(unsigned char x)
{
if (x == UCHAR_MAX)
return (0);
return (__builtin_ctz(~x) + 1);
}
unsigned int
stdc_first_trailing_zero_us(unsigned short x)
{
if (x == USHRT_MAX)
return (0);
return (__builtin_ctz(~x) + 1);
}
unsigned int
stdc_first_trailing_zero_ui(unsigned int x)
{
if (x == ~0U)
return (0);
return (__builtin_ctz(~x) + 1);
}
unsigned int
stdc_first_trailing_zero_ul(unsigned long x)
{
if (x == ~0UL)
return (0);
return (__builtin_ctzl(~x) + 1);
}
unsigned int
stdc_first_trailing_zero_ull(unsigned long long x)
{
if (x == ~0ULL)
return (0);
return (__builtin_ctzll(~x) + 1);
}
|