Lines Matching refs:um
788 uintmax_t um; in malloc_conf_multi_sizes_next() local
793 um = malloc_strtoumax(cur, &end, 0); in malloc_conf_multi_sizes_next()
797 *slab_start = (size_t)um; in malloc_conf_multi_sizes_next()
801 um = malloc_strtoumax(cur, &end, 0); in malloc_conf_multi_sizes_next()
805 *slab_end = (size_t)um; in malloc_conf_multi_sizes_next()
809 um = malloc_strtoumax(cur, &end, 0); in malloc_conf_multi_sizes_next()
813 *new_size = (size_t)um; in malloc_conf_multi_sizes_next()
1097 #define CONF_DONT_CHECK_MIN(um, min) false in malloc_conf_init_helper() argument
1098 #define CONF_CHECK_MIN(um, min) ((um) < (min)) in malloc_conf_init_helper() argument
1099 #define CONF_DONT_CHECK_MAX(um, max) false in malloc_conf_init_helper() argument
1100 #define CONF_CHECK_MAX(um, max) ((um) > (max)) in malloc_conf_init_helper() argument
1103 uintmax_t um; \ in malloc_conf_init_helper()
1107 um = malloc_strtoumax(v, &end, 0); \ in malloc_conf_init_helper()
1113 if (check_min(um, (t)(min))) { \ in malloc_conf_init_helper()
1116 check_max(um, (t)(max))) { \ in malloc_conf_init_helper()
1119 o = (t)um; \ in malloc_conf_init_helper()
1122 if (check_min(um, (t)(min)) || \ in malloc_conf_init_helper()
1123 check_max(um, (t)(max))) { \ in malloc_conf_init_helper()
1129 o = (t)um; \ in malloc_conf_init_helper()