OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CASSERT
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/os-win32/
stdbool.h
35
#ifndef
CASSERT
36
#define
CASSERT
(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
39
CASSERT
(sizeof(bool) == 1, bool_is_one_byte)
40
CASSERT
(true, true_is_true)
41
CASSERT
(!false, false_is_false)
stdint.h
54
#ifndef
CASSERT
55
#define
CASSERT
(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
58
CASSERT
(sizeof(int8_t) == 1, int8_t_is_one_byte)
59
CASSERT
(sizeof(uint8_t) == 1, uint8_t_is_one_byte)
60
CASSERT
(sizeof(int16_t) == 2, int16_t_is_two_bytes)
61
CASSERT
(sizeof(uint16_t) == 2, uint16_t_is_two_bytes)
62
CASSERT
(sizeof(int32_t) == 4, int32_t_is_four_bytes)
63
CASSERT
(sizeof(uint32_t) == 4, uint32_t_is_four_bytes)
64
CASSERT
(sizeof(int64_t) == 8, int64_t_is_eight_bytes)
65
CASSERT
(sizeof(uint64_t) == 8, uint64_t_is_eight_bytes
[
all
...]
Completed in 131 milliseconds