Lines Matching defs:bits
379 * How many longwords for "nr" bits?
628 void *bits;
653 bits = stack_fds;
661 bits = kvmalloc(alloc_size, GFP_KERNEL);
662 if (!bits)
665 fds.in = bits;
666 fds.out = bits + size;
667 fds.ex = bits + 2*size;
668 fds.res_in = bits + 3*size;
669 fds.res_out = bits + 4*size;
670 fds.res_ex = bits + 5*size;
697 if (bits != stack_fds)
698 kvfree(bits);
1198 void *bits;
1220 bits = stack_fds;
1222 bits = kmalloc_array(6, size, GFP_KERNEL);
1224 if (!bits)
1227 fds.in = (unsigned long *) bits;
1228 fds.out = (unsigned long *) (bits + size);
1229 fds.ex = (unsigned long *) (bits + 2*size);
1230 fds.res_in = (unsigned long *) (bits + 3*size);
1231 fds.res_out = (unsigned long *) (bits + 4*size);
1232 fds.res_ex = (unsigned long *) (bits + 5*size);
1258 if (bits != stack_fds)
1259 kfree(bits);