Home
last modified time | relevance | path

Searched refs:ull (Results 1 – 4 of 4) sorted by relevance

/kvm-unit-tests/lib/
H A Dstring.c184 unsigned long long ull = 0; in __strtoll() local
226 long sl = (long)ull; in __strtoll()
230 unsigned long ul = (unsigned long)ull; in __strtoll()
236 long long sll = (long long)ull; in __strtoll()
240 assert(!check_mul_overflow(ull, base)); in __strtoll()
241 assert(!check_add_overflow(ull * base, c)); in __strtoll()
245 ull = ull * base + c; in __strtoll()
250 ull = -ull; in __strtoll()
255 return ull; in __strtoll()
/kvm-unit-tests/scripts/
H A Dcheckpatch.pl7306 my $ull = "";
7307 $ull = "_ULL" if (defined($1) && $1 =~ /ll/i);
7309 "Prefer using the BIT$ull macro\n" . $herecurr) &&
7311 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/;
/kvm-unit-tests/x86/
H A Dsvm_tests.c830 #define TSC_OFFSET_VALUE (~0ull << 48)
H A Dvmx_tests.c7568 u64 mask = ~0ull; in test_vmcs_field()