OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UPPER_MASK
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/mt19937ar/
mt19937ar.cc
50
#define
UPPER_MASK
0x80000000UL /* most significant w-r bits */
118
y = (mt[kk]&
UPPER_MASK
)|(mt[kk+1]&LOWER_MASK);
122
y = (mt[kk]&
UPPER_MASK
)|(mt[kk+1]&LOWER_MASK);
125
y = (mt[N-1]&
UPPER_MASK
)|(mt[0]&LOWER_MASK);
/external/libcap-ng/libcap-ng-0.7/src/
cap-ng.c
59
#define
UPPER_MASK
~(unsigned)((~0U)<<(CAP_LAST_CAP-31))
61
// For v1 systems
UPPER_MASK
will never be used
62
#define
UPPER_MASK
(unsigned)(~0U)
709
if ((m.data.v3[1].effective &
UPPER_MASK
) == 0)
711
else if ((m.data.v3[1].effective &
UPPER_MASK
) ==
712
UPPER_MASK
)
726
if ((m.bounds[1] &
UPPER_MASK
) == 0)
728
else if ((m.bounds[1] &
UPPER_MASK
) ==
UPPER_MASK
)
834
m.data.v3[1].effective &
UPPER_MASK
,
[
all
...]
Completed in 46 milliseconds