Lines Matching defs:width
74 const int width = end - start + 1;
75 if (width < 64) {
76 const uint64_t max = (1ull << width) - 1;
87 const int width = end - start + 1;
92 if (width < 64) {
93 const int64_t max = (1ll << (width - 1)) - 1;
94 const int64_t min = -(1ll << (width - 1));
99 const uint64_t mask = ~0ull >> (64 - width);
165 const int width = end - start + 1;
166 const uint32_t mask = (width == 32 ? ~0 : (1 << width) - 1 );