Lines Matching defs:to
32 // z9 -- Host needs to be a z9 (and nothing else)
33 // z9: -- Host needs to be a z9 or any later model
34 // :z9 -- Host needs to be a model up to and including z9
35 // z900:z9 -- Host needs to be at least a z900 and at most a z9.
77 /* Array needs to be sorted chronologically. Oldest to newest */
129 claimed to be a regular file. */
198 Principles of Ops "facility indications" section to a bit mask */
205 model_info *host, *from, *to, *p;
248 /* Determine interval of models in which to search for HOST. */
249 from = to = NULL;
254 from = to = locate_model(cpu);
256 // :NAME match machines up to and including CPU
258 to = locate_model(cpu + 1);
263 to = models + sizeof models / sizeof models[0] - 1;
269 to = locate_model(colon + 1);
273 if (from == NULL || to == NULL || from > to) {
279 printf("from %s (%s) to %s (%s)\n", from->cpuinfo_name, from->real_name,
280 to->cpuinfo_name, to->real_name);
284 for (p = from; p <= to; ++p) {