Home | History | Annotate | Download | only in openbsd-compat

Lines Matching refs:LLONG

130 # define LLONG long long
132 # define LLONG long
185 LLONG value, int base, int min, int max, int flags);
193 LLONG value;
316 value = va_arg (args, LLONG);
330 value = (long)va_arg (args, unsigned LLONG);
344 value = (LLONG)va_arg (args, unsigned LLONG);
360 value = (LLONG)va_arg (args, unsigned LLONG);
429 LLONG *num;
430 num = va_arg (args, LLONG *);
431 *num = (LLONG)currlen;
514 LLONG value, int base, int min, int max, int flags)
517 unsigned LLONG uvalue;
622 static LLONG ROUND(LDOUBLE value)
624 LLONG intpart;
626 intpart = (LLONG)value;