Home
last modified time | relevance | path

Searched defs:StructWithBitField (Results 1 – 2 of 2) sorted by relevance

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dtoo-small-loop-variable.cpp280 struct StructWithBitField { in voidForLoopWithBitfieldOnUpperBound() struct
281 unsigned bitfield : 5; in voidForLoopWithBitfieldOnUpperBound()
290 struct StructWithBitField { in voidForLoopWithBitfieldOnLoopVar() struct
291 unsigned bitfield : 9; in voidForLoopWithBitfieldOnLoopVar()
302 struct StructWithBitField { in voidForLoopWithBitfieldOnLoopVarAndUpperBound() struct
303 unsigned var : 5, limit : 4; in voidForLoopWithBitfieldOnLoopVarAndUpperBound()
312 struct StructWithBitField { in voidForLoopWithBitfieldOnLoopVarAndUpperBoundOnInt() struct
313 unsigned var : 5; in voidForLoopWithBitfieldOnLoopVarAndUpperBoundOnInt()
314 int limit : 6; in voidForLoopWithBitfieldOnLoopVarAndUpperBoundOnInt()
322 struct StructWithBitField { in badForLoopWithBitfieldOnUpperBound() struct
[all …]
/llvm-project/compiler-rt/lib/asan/tests/
H A Dasan_test.cpp249 struct StructWithBitField { struct
257 StructWithBitField *x = new StructWithBitField; in TEST() argument