Lines Matching defs:width
75 const int width = end - start + 1;
76 if (width < 64) {
77 const uint64_t max = (1ull << width) - 1;
88 const int width = end - start + 1;
89 const uint64_t mask = ~0ull >> (64 - width);
97 const int width = end - start + 1;
102 if (width < 64) {
103 const int64_t max = (1ll << (width - 1)) - 1;
104 const int64_t min = -(1ll << (width - 1));
109 const uint64_t mask = ~0ull >> (64 - width);
117 const int width = end - start + 1;
118 const uint64_t mask = ~0ull >> (64 - width);