Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* jconfigint.h. Generated from jconfigint.h.in by configure. */ | 1 /* jconfigint.h. Generated from jconfigint.h.in by configure. */ |
| 2 /* libjpeg-turbo build number */ | 2 /* libjpeg-turbo build number */ |
| 3 #define BUILD "" | 3 #define BUILD "" |
| 4 | 4 |
| 5 /* How to obtain function inlining. */ | 5 /* How to obtain function inlining. */ |
| 6 #ifndef INLINE | 6 #ifndef INLINE |
| 7 #ifndef TURBO_FOR_WINDOWS | 7 #if defined(__GNUC__) |
|
scroggo_chromium
2016/05/04 20:56:48
I tried to double check that this is the same as b
| |
| 8 #define INLINE inline __attribute__((always_inline)) | 8 #define INLINE inline __attribute__((always_inline)) |
| 9 #else | 9 #elif defined(_MSC_VER) |
| 10 #if defined(__GNUC__) | 10 #define INLINE __forceinline |
| 11 #define INLINE inline __attribute__((always_inline)) | 11 #else |
| 12 #elif defined(_MSC_VER) | 12 #define INLINE |
| 13 #define INLINE __forceinline | 13 #endif |
| 14 #else | |
| 15 #define INLINE | |
| 16 #endif | |
| 17 #endif | |
| 18 #endif | 14 #endif |
| 19 | 15 |
| 20 /* Define to the full name of this package. */ | 16 /* Define to the full name of this package. */ |
| 21 #define PACKAGE_NAME "libjpeg-turbo" | 17 #define PACKAGE_NAME "libjpeg-turbo" |
| 22 | 18 |
| 23 /* Version number of package */ | 19 /* Version number of package */ |
| 24 #define VERSION "1.4.90" | 20 #define VERSION "1.4.90" |
| 25 | 21 |
| 26 /* The size of `size_t', as computed by sizeof. */ | 22 /* The size of `size_t', as computed by sizeof. */ |
| 27 #if __WORDSIZE==64 || defined(_WIN64) | 23 #if __WORDSIZE==64 || defined(_WIN64) |
| 28 #define SIZEOF_SIZE_T 8 | 24 #define SIZEOF_SIZE_T 8 |
| 29 #else | 25 #else |
| 30 #define SIZEOF_SIZE_T 4 | 26 #define SIZEOF_SIZE_T 4 |
| 31 #endif | 27 #endif |
| OLD | NEW |