Home | History | Annotate | Download | only in sys

Lines Matching refs:WCHAR_MIN

33 /* WCHAR_MIN / WCHAR_MAX can be defined by <stdint.h> or <wchar.h>.
36 * - In NDK r8e and older, all definitions of WCHAR_MIN and WCHAR_MAX
46 * compiling C (not C++). Also, the definitions of WCHAR_MIN and
52 * <stdint.h> would only define WCHAR_MIN and WCHAR_MAX when:
59 * - When compiling C sources, WCHAR_MIN / WCHAR_MAX were always
73 #if !defined(WCHAR_MIN)
77 # define WCHAR_MIN 0
80 # define WCHAR_MIN (-2147483647 - 1)
84 # define WCHAR_MIN (-2147483647 - 1)
93 # define WCHAR_MIN L'\0'
95 # define WCHAR_MIN (-(WCHAR_MAX) - 1)
99 #endif /* !WCHAR_MIN */