Lines Matching defs:list

476  * bitmap_print_to_pagebuf - convert bitmap to list or hex format ASCII string
477 * @list: indicates whether the bitmap must be list
482 * Output format is a comma-separated list of decimal numbers and
483 * ranges if list is specified or hex digits grouped into comma-separated
491 int bitmap_print_to_pagebuf(bool list, char *buf, const unsigned long *maskp,
496 return list ? scnprintf(buf, len, "%*pbl\n", nmaskbits, maskp) :
502 * bitmap_print_to_buf - convert bitmap to list or hex format ASCII string
503 * @list: indicates whether the bitmap must be list
504 * true: print in decimal list format
512 static int bitmap_print_to_buf(bool list, char *buf, const unsigned long *maskp,
515 const char *fmt = list ? "%*pbl\n" : "%*pb\n";
539 * bitmask and decimal list to userspace by sysfs ABI.
555 * bitmap_print_to_pagebuf(bool list, char *buf, const unsigned long *maskp,
561 * bitmask or list more than one page. Especially for list, it could be
579 * make those drivers be able to support large bitmask and list after they
589 * and it can break the size limit of converted decimal list and hexadecimal
601 * - If printing part of bitmap as list, the resulting string is not a correct
602 * list representation of bitmap. Particularly, some bits within or out of
605 * - If printing the whole bitmap as list by parts, user must ensure the order
607 * - If printing the whole bitmap as list by parts, user must keep bitmap
621 * bitmap_print_list_to_buf - convert bitmap to decimal list format ASCII string
780 * bitmap_parselist - convert list format ASCII string to bitmap
786 * Input format is a comma-separated list of decimal numbers and
798 * as more cores in a CPU list, then any ranges using N will also change.
837 * bitmap_parselist_user() - convert user buffer's list format ASCII
1136 * various @orig's. I list the zero-based positions of each set bit.