Lines Matching refs:long
5 dnl with or without modifications, as long as this notice is preserved.
9 # Define HAVE_LONG_LONG_INT if 'long long int' works.
13 # Note: If the type 'long long int' exists but is only 32 bits large
15 # defined. In this case you can treat 'long long int' like 'long int'.
20 AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int],
33 (1LL << (sizeof (long long int) * CHAR_BIT - 2))
36 [[long long int n = 1;
40 long long int m = n << i;
54 [Define to 1 if the system has the type 'long long int'.])
58 # Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works.
62 # Note: If the type 'unsigned long long int' exists but is only 32 bits
64 # will not be defined. In this case you can treat 'unsigned long long int'
65 # like 'unsigned long int'.
69 AC_CACHE_CHECK([for unsigned long long int],
80 [Define to 1 if the system has the type 'unsigned long long int'.])
85 # of 'long long' and 'unsigned long long'. We don't want to say that
86 # 'long long' is available if 'unsigned long long' is not, or vice versa,
97 long long int ll = 9223372036854775807ll;
98 long long int nll = -9223372036854775807LL;
99 unsigned long long int ull = 18446744073709551615ULL;
103 typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1
107 long long int llmax = 9223372036854775807ll;
108 unsigned long long int ullmax = 18446744073709551615ull;