OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAXVAL
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/util/
macros.h
256
* Check that STRUCT::FIELD can hold
MAXVAL
. We use a lot of bitfields
263
#define ASSERT_BITFIELD_SIZE(STRUCT, FIELD,
MAXVAL
) \
266
s.FIELD = (
MAXVAL
); \
267
assert((int) s.FIELD == (
MAXVAL
) && "Insufficient bitfield size!"); \
/bionic/libc/tzcode/
private.h
504
#define
MAXVAL
(t, b) \
508
((t) (TYPE_SIGNED(t) ? - TWOS_COMPLEMENT(t) -
MAXVAL
(t, b) : 0))
512
static time_t const time_t_max =
MAXVAL
(time_t, TYPE_BIT(time_t));
Completed in 387 milliseconds