Lines Matching defs:bitmap
84 static unsigned int bitmap[CONFIG_NFILE_DESCRIPTORS / 32 + 1] = {0};
88 unsigned int tem = (unsigned int)i >> 5; /* Get the bitmap subscript */
97 unsigned int tem = (unsigned int)i >> 5; /* Get the bitmap subscript */
109 p = ((unsigned int *)bitmap) + (i >> 5); /* Gets the location in the bitmap */
110 mask = 1 << (i & 0x1f); /* Gets the mask for the current bit int bitmap */
443 p = ((unsigned int *)bitmap) + (i >> 5); /* Gets the location in the bitmap */
444 mask = 1 << (i & 0x1f); /* Gets the mask for the current bit int bitmap */
447 set_bit(i, bitmap);
512 clear_bit(fd, bitmap);
559 clear_bit(fd, bitmap);
573 p = ((unsigned int *)bitmap) + ((unsigned int)fd >> 5); /* Gets the location in the bitmap */
574 mask = 1 << ((unsigned int)fd & 0x1f); /* Gets the mask for the current bit int bitmap */
605 p = ((unsigned int *)bitmap) + (i >> 5); /* Gets the location in the bitmap */
606 mask = 1 << (i & 0x1f); /* Gets the mask for the current bit int bitmap */
609 set_bit(i, bitmap);
621 clear_bit(fd, bitmap);