Home | History | Annotate | Download | only in FrameworkHiiOnUefiHiiThunk

Lines Matching defs:mHandle

21 UINT8 mHandle[1024 * 8] = {0};

35 // Set Bit 0 in mHandle[0] to 1.
37 mHandle[0] |= 1 << 0;
56 for (Index = 0; Index < sizeof (mHandle) * 8; Index++) {
57 if ((mHandle[Index / 8] & (1 << (Index % 8))) == 0) {
58 mHandle[Index / 8] = (UINT8) (mHandle[Index / 8] | (1 << (Index % 8)));
83 ASSERT ((mHandle [Num / 8] & (1 << (Num % 8))) != 0);
84 mHandle [Num / 8] = (UINT8) (mHandle [Num / 8] & (~(1 << (Num % 8))));