Lines Matching refs:bitset
810 inline static u32 STDi_GetBitset(const u32 *bitset, u32 i) in STDi_GetBitset() argument
814 return ((bitset[pos] >> bit) & 1UL); in STDi_GetBitset()
827 inline static void STDi_SetBitset(u32 *bitset, u32 i) in STDi_SetBitset() argument
831 bitset[pos] |= (1UL << bit); in STDi_SetBitset()
845 static void STDi_FillBitset(u32 *bitset, u32 a, u32 b) in STDi_FillBitset() argument
857 bitset[pos] |= mask; in STDi_FillBitset()
1224 u32 bitset[256 / (8 * sizeof(u32))]; in STD_TVSScanf() local
1228 MI_CpuFill32(bitset, 0x00000000UL, sizeof(bitset)); in STD_TVSScanf()
1237 STDi_SetBitset(bitset, (u8)*fmt); in STD_TVSScanf()
1249 STDi_SetBitset(bitset, from); in STD_TVSScanf()
1250 STDi_SetBitset(bitset, (u32)'-'); in STD_TVSScanf()
1268 STDi_SetBitset(bitset, (u8)*fmt); in STD_TVSScanf()
1279 STDi_SetBitset(bitset, from); in STD_TVSScanf()
1280 STDi_SetBitset(bitset, (u32)'-'); in STD_TVSScanf()
1281 STDi_SetBitset(bitset, to); in STD_TVSScanf()
1286 STDi_FillBitset(bitset, from, to + 1UL); in STD_TVSScanf()
1306 if (STDi_GetBitset(bitset, (u8)c) != matchcond) in STD_TVSScanf()