Home
last modified time | relevance | path

Searched refs:sz (Results 1 – 4 of 4) sorted by relevance

/lib/math/
Dprime_numbers.c13 unsigned long last, sz; member
20 .sz = 64,
45 .sz = 32,
113 unsigned long sz, y; in expand_to_next_prime() local
123 sz = 2 * x; in expand_to_next_prime()
124 if (sz < x) in expand_to_next_prime()
127 sz = round_up(sz, BITS_PER_LONG); in expand_to_next_prime()
128 new = kmalloc(sizeof(*new) + bitmap_size(sz), in expand_to_next_prime()
144 bitmap_fill(new->primes, sz); in expand_to_next_prime()
145 bitmap_copy(new->primes, p->primes, p->sz); in expand_to_next_prime()
[all …]
/lib/zlib_inflate/
Dinfutil.c9 int zlib_inflate_blob(void *gunzip_buf, unsigned int sz, in zlib_inflate_blob() argument
30 strm->avail_out = sz; in zlib_inflate_blob()
37 rc = sz - strm->avail_out; in zlib_inflate_blob()
/lib/
Dtest_overflow.c490 #define alloc010(alloc, arg, sz) alloc(sz, alloc_GFP) argument
491 #define alloc011(alloc, arg, sz) alloc(sz, alloc_GFP, NUMA_NO_NODE) argument
492 #define alloc000(alloc, arg, sz) alloc(sz) argument
493 #define alloc001(alloc, arg, sz) alloc(sz, NUMA_NO_NODE) argument
494 #define alloc110(alloc, arg, sz) alloc(arg, sz, alloc_GFP) argument
Dbitmap.c995 unsigned int sz, unsigned int nbits) in bitmap_fold() argument
1004 set_bit(oldbit % sz, dst); in bitmap_fold()