• Home
  • Raw
  • Download

Lines Matching refs:casted

30   int *casted = dynCastToInt(p);  in testDynCast()  local
31 *casted = 1; in testDynCast()
38 int *casted = dynCastOrNull(p); in testDynCastOrNull() local
39 *casted = 1; in testDynCastOrNull()
47 int *casted; in testBranch() local
52 casted = dynCastToInt(p); in testBranch()
56 casted = (int *)p; in testBranch()
59 *casted = 1; // expected-warning {{Dereference of null pointer}} in testBranch()
63 int *casted; in testBranchReversed() local
70 casted = (int *)p; in testBranchReversed()
72 casted = dynCastToInt(p); in testBranchReversed()
75 *casted = 1; // expected-warning {{Dereference of null pointer}} in testBranchReversed()
79 int *casted = 0; in testMultipleStore() local
80 casted = dynCastToInt(p); in testMultipleStore()
81 *casted = 1; in testMultipleStore()
180 int *casted = dynCastOrNull(0); in testDynCastOrNullOfNull() local
181 *casted = 1; in testDynCastOrNullOfNull()
189 int *casted = dynCastToInt(0); in testDynCastOfNull() local
190 *casted = 1; in testDynCastOfNull()
205 int *casted = lookUpInt(0); in testZeroIsNotNull() local
206 *casted = 1; in testZeroIsNotNull()
214 int *casted = dynCastOrNull(getNull()); in testTrackNull() local
215 *casted = 1; in testTrackNull()
225 int *casted = dynCastOrNull(ptr); in testTrackNullVariable() local
226 *casted = 1; in testTrackNullVariable()
260 int *casted = getNull(); in testNoArguments() local
261 *casted = 1; in testNoArguments()
280 int *casted = getNullIfNonNull(input); in testKnownPath() local
281 *casted = 1; in testKnownPath()
296 int *casted = alwaysReturnNull(input); in testAlwaysReturnNull() local
297 *casted = 1; in testAlwaysReturnNull()