Searched refs:MASK (Results 1 – 8 of 8) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lctype.h | 46 #define MASK(B) (1 << (B)) macro 57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) 58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) 59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) 60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) 61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) 62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT))
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/ |
D | Common.i | 28 #define MASK(bp,value) (value << bp) macro
|
D | AsmFuncs.s | 1300 movl SCRATCH_REG1 = ~( MASK(PSR_DT,1) | MASK(PSR_RT,1));;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | _abcoll.py | 263 MASK = 2 * MAX + 1 266 h &= MASK 270 h &= MASK 272 h &= MASK 274 h -= MASK + 1
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | _abcoll.py | 242 MASK = 2 * MAX + 1 245 h &= MASK 249 h &= MASK 251 h &= MASK 253 h -= MASK + 1
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | longintrepr.h | 69 #define MASK PyLong_MASK macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | longintrepr.h | 69 #define MASK PyLong_MASK macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_long.py | 20 MASK = BASE - 1 variable 117 answer = (answer << SHIFT) | random.randint(0, MASK)
|