Home
last modified time | relevance | path

Searched refs:lim (Results 1 – 2 of 2) sorted by relevance

/lib/
Dbitmap.c51 unsigned int k, lim = bits/BITS_PER_LONG; in __bitmap_equal() local
52 for (k = 0; k < lim; ++k) in __bitmap_equal()
69 unsigned int k, lim = bits / BITS_PER_LONG; in __bitmap_or_equal() local
72 for (k = 0; k < lim; ++k) { in __bitmap_or_equal()
86 unsigned int k, lim = BITS_TO_LONGS(bits); in __bitmap_complement() local
87 for (k = 0; k < lim; ++k) in __bitmap_complement()
106 unsigned k, lim = BITS_TO_LONGS(nbits); in __bitmap_shift_right() local
109 for (k = 0; off + k < lim; ++k) { in __bitmap_shift_right()
116 if (!rem || off + k + 1 >= lim) in __bitmap_shift_right()
120 if (off + k + 1 == lim - 1) in __bitmap_shift_right()
[all …]
Dvsprintf.c639 int lim = spec.precision; in string_nocheck() local
641 while (lim--) { in string_nocheck()