Searched defs:GetBit (Results 1 – 3 of 3) sorted by relevance
24 #define GetBit(dwData, i) (dwData & (0x00000001 << i)) macro
226 #define GetBit(x,y) ((x & (1<<y))>>y) macro
165 #define GetBit(val,bit) val = (unsigned char) ((val>>bit) & 0x1) macro