Lines Matching defs:out
79 [0x71] = "Bus out Check",
114 struct tape3592_kekl *out)
118 memset(out, 0, sizeof(*out));
120 out->flags |= 0x40;
122 out->flags |= 0x80;
123 len = min(sizeof(out->label), strlen(in->label));
124 memcpy(out->label, in->label, len);
125 memset(out->label + len, ' ', sizeof(out->label) - len);
126 ASCEBC(out->label, sizeof(out->label));
130 struct tape390_kekl *out)
132 memset(out, 0, sizeof(*out));
134 out->type = TAPE390_KEKL_TYPE_HASH;
136 out->type = TAPE390_KEKL_TYPE_LABEL;
138 out->type_on_tape = TAPE390_KEKL_TYPE_HASH;
140 out->type_on_tape = TAPE390_KEKL_TYPE_LABEL;
141 memcpy(out->label, in->label, sizeof(in->label));
142 EBCASC(out->label, sizeof(in->label));
143 strim(out->label);
147 struct tape390_kekl_pair *out)
150 out->kekl[0].type = TAPE390_KEKL_TYPE_NONE;
151 out->kekl[0].type_on_tape = TAPE390_KEKL_TYPE_NONE;
152 out->kekl[1].type = TAPE390_KEKL_TYPE_NONE;
153 out->kekl[1].type_on_tape = TAPE390_KEKL_TYPE_NONE;
155 int_to_ext_kekl(&in->kekl[0], &out->kekl[0]);
156 out->kekl[1].type = TAPE390_KEKL_TYPE_NONE;
157 out->kekl[1].type_on_tape = TAPE390_KEKL_TYPE_NONE;
159 int_to_ext_kekl(&in->kekl[0], &out->kekl[0]);
160 int_to_ext_kekl(&in->kekl[1], &out->kekl[1]);
1342 * - "goto out:": just print error message if available
1550 /* Try to find out if medium is loaded */