Lines Matching defs:bitmap
808 * hex2bitmap() - parse hex mask string and set bitmap.
810 * Rest of the bitmap to the right is padded with 0. No spaces allowed
815 static int hex2bitmap(const char *str, unsigned long *bitmap, int bits)
832 set_bit_inv(i + n, bitmap);
853 * Returns the new bitmap after all changes have been applied. Every
860 static int modify_bitmap(const char *str, unsigned long *bitmap, int bits)
885 set_bit_inv(i, bitmap);
887 clear_bit_inv(i, bitmap);
896 unsigned long *bitmap, int bits,
916 memcpy(newmap, bitmap, size);
923 memcpy(bitmap, newmap, size);