Lines Matching +full:max +full:- +full:functions
5 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 --- a/Source/OpenEXR/IlmImf/ImfSystemSpecific.cpp
11 @@ -40,21 +40,19 @@
15 -
17 // Helper functions for gcc + SSE enabled
18 - void cpuid(int n, int &eax, int &ebx, int &ecx, int &edx)
22 - __asm__ __volatile__ (
23 - "cpuid"
24 - : /* Output */ "=a"(eax), "=b"(ebx), "=c"(ecx), "=d"(edx)
25 - : /* Input */ "a"(n)
26 - : /* Clobber */);
32 // Helper functions for generic compiler - all disabled
33 - void cpuid(int n, int &eax, int &ebx, int &ecx, int &edx)
39 @@ -64,7 +62,7 @@
43 - void xgetbv(int n, int &eax, int &edx)
48 @@ -75,7 +73,7 @@
52 - void xgetbv(int n, int &eax, int &edx)
57 @@ -94,8 +92,8 @@
61 - int max = 0;
62 - int eax, ebx, ecx, edx;
63 + unsigned int max = 0;
66 cpuid(0, max, ebx, ecx, edx);
67 if (max > 0)