Home | History | Annotate | Download | only in auxprogs

Lines Matching refs:ULong

4 typedef  unsigned long long int  ULong;
9 void do_sradi_##nnn ( ULong arg, /*OUT*/ULong* res, /*OUT*/ULong* xer ) \
11 ULong argW = arg; \
12 ULong resW = 0; \
13 ULong xerW = 0; \
161 void do_srawi_##nnn ( ULong arg, /*OUT*/ULong* res, /*OUT*/ULong* xer ) \
163 ULong argW = arg; \
164 ULong resW = 0; \
165 ULong xerW = 0; \
248 void do_srad ( ULong arg1, ULong arg2,
249 /*OUT*/ULong* res, /*OUT*/ULong* xer )
251 ULong arg1W = arg1;
252 ULong arg2W = arg2;
253 ULong resW = 0;
254 ULong xerW = 0;
269 void do_sraw ( ULong arg1, ULong arg2,
270 /*OUT*/ULong* res, /*OUT*/ULong* xer )
272 ULong arg1W = arg1;
273 ULong arg2W = arg2;
274 ULong resW = 0;
275 ULong xerW = 0;
289 void do_srd ( ULong arg1, ULong arg2,
290 /*OUT*/ULong* res, /*OUT*/ULong* xer )
292 ULong arg1W = arg1;
293 ULong arg2W = arg2;
294 ULong resW = 0;
295 ULong xerW = 0;
310 void do_srw ( ULong arg1, ULong arg2,
311 /*OUT*/ULong* res, /*OUT*/ULong* xer )
313 ULong arg1W = arg1;
314 ULong arg2W = arg2;
315 ULong resW = 0;
316 ULong xerW = 0;
331 void do_sld ( ULong arg1, ULong arg2,
332 /*OUT*/ULong* res, /*OUT*/ULong* xer )
334 ULong arg1W = arg1;
335 ULong arg2W = arg2;
336 ULong resW = 0;
337 ULong xerW = 0;
352 void do_slw ( ULong arg1, ULong arg2,
353 /*OUT*/ULong* res, /*OUT*/ULong* xer )
355 ULong arg1W = arg1;
356 ULong arg2W = arg2;
357 ULong resW = 0;
358 ULong xerW = 0;
377 ULong args64[N_ARGS64] = {
432 ULong arg, res, xer;
433 void(*fn)(ULong,ULong*,ULong*);
449 ULong arg1, arg2, res, xer;
450 void(*fn)(ULong,ULong,ULong*,ULong*);