OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WORD_BIT
(Results
1 - 5
of
5
) sorted by null
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
xopen_lim.h
96
# define
WORD_BIT
16
99
# define
WORD_BIT
32
102
# define
WORD_BIT
64
107
# define
WORD_BIT
16
110
# define
WORD_BIT
32
113
# define
WORD_BIT
64
117
# define
WORD_BIT
32
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
xopen_lim.h
96
# define
WORD_BIT
16
99
# define
WORD_BIT
32
102
# define
WORD_BIT
64
107
# define
WORD_BIT
16
110
# define
WORD_BIT
32
113
# define
WORD_BIT
64
117
# define
WORD_BIT
32
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
xopen_lim.h
96
# define
WORD_BIT
16
99
# define
WORD_BIT
32
102
# define
WORD_BIT
64
107
# define
WORD_BIT
16
110
# define
WORD_BIT
32
113
# define
WORD_BIT
64
117
# define
WORD_BIT
32
/external/clang/test/Sema/
shift.c
5
#define
WORD_BIT
(sizeof(int) * CHAR_BIT)
39
i = 1 << (
WORD_BIT
- 2);
40
i = 2 << (
WORD_BIT
- 1); // expected-warning {{bits to represent, but 'int' only has}}
41
i = 1 << (
WORD_BIT
- 1); // expected-warning {{sets the sign bit of the shift expression}}
42
i = -1 << (
WORD_BIT
- 1);
43
i = 0 << (
WORD_BIT
- 1);
44
i = (char)1 << (
WORD_BIT
- 2);
47
u = 1U << (
WORD_BIT
- 1);
48
u = 5U << (
WORD_BIT
- 1);
/external/clang/test/SemaCXX/
shift.cpp
5
#define
WORD_BIT
(sizeof(int) * CHAR_BIT)
Completed in 291 milliseconds