Lines Matching defs:bits
380 * How many longwords for "nr" bits?
629 void *bits;
654 bits = stack_fds;
662 bits = kvmalloc(alloc_size, GFP_KERNEL);
663 if (!bits)
666 fds.in = bits;
667 fds.out = bits + size;
668 fds.ex = bits + 2*size;
669 fds.res_in = bits + 3*size;
670 fds.res_out = bits + 4*size;
671 fds.res_ex = bits + 5*size;
698 if (bits != stack_fds)
699 kvfree(bits);
1199 void *bits;
1221 bits = stack_fds;
1223 bits = kmalloc_array(6, size, GFP_KERNEL);
1225 if (!bits)
1228 fds.in = (unsigned long *) bits;
1229 fds.out = (unsigned long *) (bits + size);
1230 fds.ex = (unsigned long *) (bits + 2*size);
1231 fds.res_in = (unsigned long *) (bits + 3*size);
1232 fds.res_out = (unsigned long *) (bits + 4*size);
1233 fds.res_ex = (unsigned long *) (bits + 5*size);
1259 if (bits != stack_fds)
1260 kfree(bits);