OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BUILD_BUG_ON_ZERO
(Results
51 - 53
of
53
) sorted by null
1
2
3
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
kernel.h
34
#define
BUILD_BUG_ON_ZERO
(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
/external/linux-tools-perf/util/
parse-options.h
9
/*
BUILD_BUG_ON_ZERO
is missing in new glibc headers */
10
#ifndef
BUILD_BUG_ON_ZERO
11
#define
BUILD_BUG_ON_ZERO
(e) (sizeof(struct { int:-!!(e); }))
109
#define check_vtype(v, type) (
BUILD_BUG_ON_ZERO
(!__builtin_types_compatible_p(typeof(v), type)) + v )
/external/kernel-headers/original/linux/
kernel.h
346
#define
BUILD_BUG_ON_ZERO
(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
Completed in 28 milliseconds
1
2
3