Searched defs:StructWithBitField (Results 1 – 2 of 2) sorted by relevance
280 struct StructWithBitField { in voidForLoopWithBitfieldOnUpperBound() struct281 unsigned bitfield : 5; in voidForLoopWithBitfieldOnUpperBound()290 struct StructWithBitField { in voidForLoopWithBitfieldOnLoopVar() struct291 unsigned bitfield : 9; in voidForLoopWithBitfieldOnLoopVar()302 struct StructWithBitField { in voidForLoopWithBitfieldOnLoopVarAndUpperBound() struct303 unsigned var : 5, limit : 4; in voidForLoopWithBitfieldOnLoopVarAndUpperBound()312 struct StructWithBitField { in voidForLoopWithBitfieldOnLoopVarAndUpperBoundOnInt() struct313 unsigned var : 5; in voidForLoopWithBitfieldOnLoopVarAndUpperBoundOnInt()314 int limit : 6; in voidForLoopWithBitfieldOnLoopVarAndUpperBoundOnInt()322 struct StructWithBitField { in badForLoopWithBitfieldOnUpperBound() struct[all …]
249 struct StructWithBitField { struct 257 StructWithBitField *x = new StructWithBitField; in TEST() argument