Searched refs:mask (Results 1 - 25 of 141) sorted by relevance

123456

/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A DBra86.c13 UInt32 mask = *state & 7; local
32 *state = (d > 2 ? 0 : mask >> (unsigned)d);
36 mask = 0;
39 mask >>= (unsigned)d;
40 if (mask != 0 && (mask > 4 || mask == 3 || Test86MSByte(p[(mask >> 1) + 1])))
42 mask = (mask >>
[all...]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DBra86.c13 UInt32 mask = *state & 7; local
32 *state = (d > 2 ? 0 : mask >> (unsigned)d);
36 mask = 0;
39 mask >>= (unsigned)d;
40 if (mask != 0 && (mask > 4 || mask == 3 || Test86MSByte(p[(mask >> 1) + 1])))
42 mask = (mask >>
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DBra86.c13 UInt32 mask = *state & 7; local
32 *state = (d > 2 ? 0 : mask >> (unsigned)d);
36 mask = 0;
39 mask >>= (unsigned)d;
40 if (mask != 0 && (mask > 4 || mask == 3 || Test86MSByte(p[(mask >> 1) + 1])))
42 mask = (mask >>
[all...]
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
H A Dfpsetmask.c51 fpsetmask(fp_except mask)
54 return set_float_exception_mask(mask);
57 float_exception_mask = mask;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
H A Dfastsearch.h31 #define STRINGLIB_BLOOM_ADD(mask, ch) \
32 ((mask |= (1UL << ((ch) & (STRINGLIB_BLOOM_WIDTH -1)))))
33 #define STRINGLIB_BLOOM(mask, ch) \
34 ((mask & (1UL << ((ch) & (STRINGLIB_BLOOM_WIDTH -1)))))
41 unsigned long mask; local
77 mask = 0;
85 STRINGLIB_BLOOM_ADD(mask, p[i]);
90 STRINGLIB_BLOOM_ADD(mask, p[mlast]);
110 if (!STRINGLIB_BLOOM(mask, s[i+m]))
116 if (!STRINGLIB_BLOOM(mask,
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
H A Dfastsearch.h31 #define STRINGLIB_BLOOM_ADD(mask, ch) \
32 ((mask |= (1UL << ((ch) & (STRINGLIB_BLOOM_WIDTH -1)))))
33 #define STRINGLIB_BLOOM(mask, ch) \
34 ((mask & (1UL << ((ch) & (STRINGLIB_BLOOM_WIDTH -1)))))
41 unsigned long mask; local
77 mask = 0;
85 STRINGLIB_BLOOM_ADD(mask, p[i]);
90 STRINGLIB_BLOOM_ADD(mask, p[mlast]);
110 if (!STRINGLIB_BLOOM(mask, s[i+m]))
116 if (!STRINGLIB_BLOOM(mask,
[all...]
/device/linaro/bootloader/arm-trusted-firmware/plat/socionext/uniphier/
H A Duniphier_soc_info.c13 static unsigned int uniphier_get_revision_field(unsigned int mask, argument
18 return (revision >> shift) & mask;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dbitset.c32 BYTE mask = BIT2MASK(ibit); local
34 if (ss[ibyte] & mask)
36 ss[ibyte] |= mask;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dbitset.c32 BYTE mask = BIT2MASK(ibit); local
34 if (ss[ibyte] & mask)
36 ss[ibyte] |= mask;
/device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/
H A Dpm_common.h24 * @mask mask for enabling/disabling and triggering the IPI
29 const unsigned int mask; member in struct:pm_ipi
37 * @pwrdn_mask cpu-specific mask to be used for power control register
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/AArch64/
H A DCompareMem.S52 #define mask x13 define
84 mov mask, #~0
85 lsl mask, mask, limit
86 bic data1, data1, mask
87 bic data2, data2, mask
89 orr diff, diff, mask
112 // alignment boundary. Round down the addresses and then mask off
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/
H A DCompareMem.S43 #define mask r14 define
80 mov mask, #~0
81 lsl mask, mask, limit
82 bic data1, data1, mask
83 bic data2, data2, mask
85 orr diff, diff, mask
108 // alignment boundary. Round down the addresses and then mask off
H A DCompareMem.asm43 #define mask r14 define
80 mov mask, #~0
81 lsl mask, mask, limit
82 bic data1, data1, mask
83 bic data2, data2, mask
85 orr diff, diff, mask
108 ; alignment boundary. Round down the addresses and then mask off
/device/google/contexthub/firmware/os/cpu/cortexm4/
H A DatomicBitset.c46 uint32_t idx = num / 32, mask = 1UL << (num & 31), status, tmp; local
57 :"=r"(tmp), "=r"(status), "=r"(wordPtr), "=r"(mask)
58 :"2"(wordPtr), "3"(mask)
66 uint32_t idx = num / 32, mask = 1UL << (num & 31), status, tmp; local
77 :"=r"(tmp), "=r"(status), "=r"(wordPtr), "=r"(mask)
78 :"2"(wordPtr), "3"(mask)
/device/linaro/bootloader/edk2/StdLib/Include/sys/
H A D_ctype.h25 extern int __isCClass( int _c, unsigned int mask); ///< Internal character classification function.
51 #define __isCClass( _c, mask) (((_c) < 0 || (_c) > 127) ? 0 : (_cClass[(_c)] & (mask)))
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dldblib.c277 int mask = 0; local
278 if (strchr(smask, 'c')) mask |= LUA_MASKCALL;
279 if (strchr(smask, 'r')) mask |= LUA_MASKRET;
280 if (strchr(smask, 'l')) mask |= LUA_MASKLINE;
281 if (count > 0) mask |= LUA_MASKCOUNT;
282 return mask;
286 static char *unmakemask (int mask, char *smask) { argument
288 if (mask & LUA_MASKCALL) smask[i++] = 'c';
289 if (mask & LUA_MASKRET) smask[i++] = 'r';
290 if (mask
297 int arg, mask, count; local
328 int mask = lua_gethookmask(L1); local
[all...]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
H A Dmemory_options.h61 void dpf( uint32_t mask, char_t *bla, ...);
H A Dlprint.c31 // Print mask see DPF and D_Xxxx
46 void dpf( uint32_t mask, char_t* bla, ...) argument
67 void dpf( uint32_t mask, char_t* bla, ...) argument
71 if( 0 == (mask & DPF_MASK)) return;
321 // class of messages is printed (mask has to match DpfPrintMask)
325 uint32_t mask,
336 if (0 == (mask & DPF_MASK))
324 dpf( uint32_t mask, char_t* bla, ...) argument
H A Dplatform.c163 uint32_t mask)
165 Wr32(unit, addr, ((Rd32(unit, addr) & ~mask) | (data & mask)));
159 WrMask32( uint32_t unit, uint32_t addr, uint32_t data, uint32_t mask) argument
/device/google/contexthub/firmware/os/cpu/x86/
H A DatomicBitset.c47 uint32_t idx = num / 32, mask = 1UL << (num & 31); local
57 new = old &~ mask;
/device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
H A DCClass.c23 @param[in] mask A bitmapped specification of the character classes to
27 @retval 0 The character, _c, is NOT a member of the character classes specified by mask.
33 unsigned int mask
36 return ((_c < 0 || _c > 127) ? 0 : (_cClass[_c] & mask));
/device/linaro/bootloader/edk2/StdLib/Include/net/
H A Dradix.h52 char rn_bmask; /* node: mask for bit test*/
93 caddr_t rmu_mask; /* the mask */
118 __P((void *v, void *mask,
121 __P((void *v, void *mask,
124 __P((void *v, void *mask, struct radix_node_head *head));
126 __P((void *v, void *mask, struct radix_node_head *head));
130 __P((void *v, void *mask, struct radix_node_head *head));
/device/google/wahoo/usb/
H A DUsbGadget.cpp70 ALOGE("mask = ");
71 if (i->mask & IN_ACCESS) ALOGE("IN_ACCESS ");
72 if (i->mask & IN_ATTRIB) ALOGE("IN_ATTRIB ");
73 if (i->mask & IN_CLOSE_NOWRITE) ALOGE("IN_CLOSE_NOWRITE ");
74 if (i->mask & IN_CLOSE_WRITE) ALOGE("IN_CLOSE_WRITE ");
75 if (i->mask & IN_CREATE) ALOGE("IN_CREATE ");
76 if (i->mask & IN_DELETE) ALOGE("IN_DELETE ");
77 if (i->mask & IN_DELETE_SELF) ALOGE("IN_DELETE_SELF ");
78 if (i->mask & IN_IGNORED) ALOGE("IN_IGNORED ");
79 if (i->mask
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Dinftrees.c52 unsigned mask; /* mask for low root bits */ local
208 mask = used - 1; /* mask for comparing low */
260 if (len > root && (huff & mask) != low) {
285 low = huff & mask;
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
H A Dinftrees.c52 unsigned mask; /* mask for low root bits */ local
206 mask = used - 1; /* mask for comparing low */
258 if (len > root && (huff & mask) != low) {
283 low = huff & mask;

Completed in 235 milliseconds

123456