Home | History | Annotate | Download | only in gallivm

Lines Matching defs:res_type

183    struct lp_type res_type;
186 res_type = type;
187 res_type.length = 1;
189 return res_type;
199 struct lp_type res_type;
202 memset(&res_type, 0, sizeof res_type);
203 res_type.width = type.width;
204 res_type.length = type.length;
206 return res_type;
216 struct lp_type res_type;
219 memset(&res_type, 0, sizeof res_type);
220 res_type.width = type.width;
221 res_type.length = type.length;
222 res_type.sign = 1;
224 return res_type;
234 struct lp_type res_type;
236 memcpy(&res_type, &type, sizeof res_type);
237 res_type.width *= 2;
238 res_type.length /= 2;
240 assert(res_type.length);
242 return res_type;