Lines Matching refs:ms

97 	wchar_t			*ms;  in read_make_machines()  local
204 for (ms = make_machines_list; in read_make_machines()
205 (ms) && (*ms ); in read_make_machines()
211 pskip_till_next_word(&ms); in read_make_machines()
217 if (*ms) { in read_make_machines()
222 mp = ms; in read_make_machines()
223 SKIPWORD(ms); in read_make_machines()
224 c = *ms; in read_make_machines()
225 *ms++ = '\0'; /* Append null to machine name. */ in read_make_machines()
231 if ((c == '#') && (*ms != '\n') && (*ms)) { in read_make_machines()
232 *ms = '#'; in read_make_machines()
244 SKIPTOEND(ms); in read_make_machines()
246 if (*ms) { in read_make_machines()
247 ms++; in read_make_machines()
268 SKIPTOEND(ms); in read_make_machines()
269 if (*ms) { in read_make_machines()
270 ms++; in read_make_machines()
279 SKIPSPACE(ms); in read_make_machines()
280 while ((*ms != '\n') && (*ms)) { in read_make_machines()
281 if (*ms == '#') { in read_make_machines()
282 pskip_comment(&ms); in read_make_machines()
283 } else if (IS_WEQUALN(ms, wcs_buffer, 3)) { in read_make_machines()
285 ms += 3; in read_make_machines()
286 pmake_max_jobs = get_max(&ms, mp); in read_make_machines()
287 SKIPSPACE(ms); in read_make_machines()
290 SKIPTOEND(ms); in read_make_machines()
389 wchar_t *ms = *ms_address; in get_max() local
394 SKIPSPACE(ms); in get_max()
395 if ((!*ms) || (*ms == '\n') || (*ms != '=')) { in get_max()
396 SKIPTOEND(ms); in get_max()
399 *ms_address = ms; in get_max()
402 ms++; in get_max()
403 SKIPSPACE(ms); in get_max()
404 if ((*ms != '\n') && (*ms != '\0')) { in get_max()
406 limit = (int) wcstol(ms, &ms, 10); in get_max()
415 *ms_address = ms; in get_max()