Lines Matching defs:num
73 int num;
1841 int num = 0;
1932 if (cur_num > num)
1933 num = cur_num;
1937 * Store off a copy of 'num' incase we need it later. If incrementing
1938 * 'num' causes it to roll over, this means 'num' is the largest
1943 cur_num = num;
1945 /* Increment 'num' to get new auto BE name number */
1946 if (++num <= 0) {
1950 * Since incrementing 'num' caused it to rollover, start
1953 for (num = 0; num < cur_num; num++) {
1956 "%s%c%d", base_be_name, BE_AUTO_NAME_DELIM, num);
1964 * to use 'num'.
1980 * If 'num' equals 'cur_num', we've exhausted all possible
1983 if (num == cur_num) {
1998 base_be_name, BE_AUTO_NAME_DELIM, num);