Lines Matching refs:arg

93 constexpr unsigned countBitsUsed(uint64_t arg) {  in countBitsUsed()  argument
95 return (arg & 1ull << 63 ? 63 : in countBitsUsed()
96 arg & 1ull << 62 ? 62 : in countBitsUsed()
97 arg & 1ull << 61 ? 61 : in countBitsUsed()
98 arg & 1ull << 60 ? 60 : in countBitsUsed()
99 arg & 1ull << 59 ? 59 : in countBitsUsed()
100 arg & 1ull << 58 ? 58 : in countBitsUsed()
101 arg & 1ull << 57 ? 57 : in countBitsUsed()
102 arg & 1ull << 56 ? 56 : in countBitsUsed()
103 arg & 1ull << 55 ? 55 : in countBitsUsed()
104 arg & 1ull << 54 ? 54 : in countBitsUsed()
105 arg & 1ull << 53 ? 53 : in countBitsUsed()
106 arg & 1ull << 52 ? 52 : in countBitsUsed()
107 arg & 1ull << 51 ? 51 : in countBitsUsed()
108 arg & 1ull << 50 ? 50 : in countBitsUsed()
109 arg & 1ull << 49 ? 49 : in countBitsUsed()
110 arg & 1ull << 48 ? 48 : in countBitsUsed()
111 arg & 1ull << 47 ? 47 : in countBitsUsed()
112 arg & 1ull << 46 ? 46 : in countBitsUsed()
113 arg & 1ull << 45 ? 45 : in countBitsUsed()
114 arg & 1ull << 44 ? 44 : in countBitsUsed()
115 arg & 1ull << 43 ? 43 : in countBitsUsed()
116 arg & 1ull << 42 ? 42 : in countBitsUsed()
117 arg & 1ull << 41 ? 41 : in countBitsUsed()
118 arg & 1ull << 40 ? 40 : in countBitsUsed()
119 arg & 1ull << 39 ? 39 : in countBitsUsed()
120 arg & 1ull << 38 ? 38 : in countBitsUsed()
121 arg & 1ull << 37 ? 37 : in countBitsUsed()
122 arg & 1ull << 36 ? 36 : in countBitsUsed()
123 arg & 1ull << 35 ? 35 : in countBitsUsed()
124 arg & 1ull << 34 ? 34 : in countBitsUsed()
125 arg & 1ull << 33 ? 33 : in countBitsUsed()
126 arg & 1ull << 32 ? 32 : in countBitsUsed()
127 arg & 1ull << 31 ? 31 : in countBitsUsed()
128 arg & 1ull << 30 ? 30 : in countBitsUsed()
129 arg & 1ull << 29 ? 29 : in countBitsUsed()
130 arg & 1ull << 28 ? 28 : in countBitsUsed()
131 arg & 1ull << 27 ? 27 : in countBitsUsed()
132 arg & 1ull << 26 ? 26 : in countBitsUsed()
133 arg & 1ull << 25 ? 25 : in countBitsUsed()
134 arg & 1ull << 24 ? 24 : in countBitsUsed()
135 arg & 1ull << 23 ? 23 : in countBitsUsed()
136 arg & 1ull << 22 ? 22 : in countBitsUsed()
137 arg & 1ull << 21 ? 21 : in countBitsUsed()
138 arg & 1ull << 20 ? 20 : in countBitsUsed()
139 arg & 1ull << 19 ? 19 : in countBitsUsed()
140 arg & 1ull << 18 ? 18 : in countBitsUsed()
141 arg & 1ull << 17 ? 17 : in countBitsUsed()
142 arg & 1ull << 16 ? 16 : in countBitsUsed()
143 arg & 1ull << 15 ? 15 : in countBitsUsed()
144 arg & 1ull << 14 ? 14 : in countBitsUsed()
145 arg & 1ull << 13 ? 13 : in countBitsUsed()
146 arg & 1ull << 12 ? 12 : in countBitsUsed()
147 arg & 1ull << 11 ? 11 : in countBitsUsed()
148 arg & 1ull << 10 ? 10 : in countBitsUsed()
149 arg & 1ull << 9 ? 9 : in countBitsUsed()
150 arg & 1ull << 8 ? 8 : in countBitsUsed()
151 arg & 1ull << 7 ? 7 : in countBitsUsed()
152 arg & 1ull << 6 ? 6 : in countBitsUsed()
153 arg & 1ull << 5 ? 5 : in countBitsUsed()
154 arg & 1ull << 4 ? 4 : in countBitsUsed()
155 arg & 1ull << 3 ? 3 : in countBitsUsed()
156 arg & 1ull << 2 ? 2 : in countBitsUsed()
157 arg & 1ull << 1 ? 1 : 0 in countBitsUsed()