HomeSort by relevance Sort by last modified time
    Searched full:syz (Results 1 - 3 of 3) sorted by null

  /external/yaffs2/yaffs2/direct/
dtest.c 998 int syz = yaffs_lseek(a,0,SEEK_END); local
1000 syz -= 500;
1001 if(syz < 0) syz = 0;
1002 yaffs_truncate(a,syz);
1062 int syz = yaffs_lseek(a,0,SEEK_END); local
1064 while(syz > 4000)
1067 syz -= 2050;
1068 if(syz < 0) syz = 0
1135 int syz = yaffs_lseek(a,0,SEEK_END); local
    [all...]
yaffs_fileem2k.c 319 int syz = PAGE_SIZE; local
322 memset(pg,0xff,syz);
  /external/clang/test/Analysis/diagnostics/
deref-track-symbolic-region.c 12 void test(struct S syz, int *pp) {
14 syz.x = foo(); // expected-note{{Value assigned to 'syz.x'}}
16 struct S *ps = &syz;
23 m += *syz.x; // expected-warning{{Dereference of null pointer (loaded from field 'x')}}
27 void testTrackConstraintBRVisitorIsTrackingTurnedOn(struct S syz, int *pp) {
29 syz.x = foo(); // expected-note{{Value assigned to 'syz.x'}}
31 struct S *ps = &syz;
37 int *p = syz.x; //expected-note {{'p' initialized to a null pointer value}
    [all...]

Completed in 96 milliseconds